OBJECT

FinOpsRightsizingQueries

link GraphQL Schema definition

  • type FinOpsRightsizingQueries {
  • # Get the list of recommendations
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # requestInput: The parameters for executing the recommendations
  • # request
  • # sortRules: Rules for sorting search results.
  • # When multiple sort rules are provided, the first rule takes precendence
  • # and subsequent rules are used when the first rule does not provide a strict
  • # ordering.
  • queryRightsizingRecommendations(
  • after: String,
  • first: Int,
  • requestInput: FinOpsRightsizingRecommendationRequestInput!,
  • sortRules: [QuerySort!]
  • ): FinOpsRightsizingRecommendationConnection!
  • # Get the summary of list of recommendations
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # request: The rightsizing request which specifies the parameters
  • # for executing the request
  • queryRightsizingRecommendationsSummary(
  • request: FinOpsRightsizingSummaryInput!
  • ): FinOpsRightsizingSummary!
  • }