OBJECT

ObservabilityAlertMutationProvider

mutations for Observability Alert provider

link GraphQL Schema definition

  • type ObservabilityAlertMutationProvider implements HubPolicyMutationProvider {
  • # create Observability Log Alert definition
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • createLogAlert(input: ObservabilityLogAlertCreateInput!): ObservabilityLogAlert!
  • # create Observability Metric Alert definition
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • createMetricAlert(
  • input: ObservabilityMetricAlertCreateInput!
  • ): ObservabilityMetricAlert!
  • # name of provider : Alert
  • name: String!
  • # Update Observability Log Alert definition
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateLogAlert(input: ObservabilityLogAlertUpdateInput!): ObservabilityLogAlert!
  • # Update Observability Metric Alert definition
  • #
  • # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
  • # and schema elements may change over future iterations.
  • #
  • # Arguments
  • # input: [Not documented]
  • updateMetricAlert(
  • input: ObservabilityMetricAlertUpdateInput!
  • ): ObservabilityMetricAlert!
  • }