OBJECT

FinOpsCostByPeriod

Encapsulates the cost of an entity over a specified time period.

link GraphQL Schema definition

  • type FinOpsCostByPeriod {
  • # Time Period over which the cost is evaluated
  • period: FinOpsTimePeriodEnum!
  • # The unit of the time period: if LAST_7_DAYS, the Day; if LAST_12_MONTHS, then
  • # Month
  • periodUnit: String!
  • # If the entity is a group, indicates if all entities in the group have cost
  • # values represented.
  • representsCompleteGroup: Boolean
  • # The cost values across the time span.
  • values: [FinOpsCostWithTimeStamp!]!
  • }