INPUT_OBJECT

UpdateWebhookInput

Description

Webhook configuration to update.

link GraphQL Schema definition

  • input UpdateWebhookInput {
  • # The new name of the webhook to be updated.
  • name: String
  • # A description of the webhook to be created.
  • description: String
  • # The Webhook server certificate that Rubrik uses to establish a TLS connection
  • # with the endpoint.
  • serverCertificate: String
  • # The ID of the service account attached to the webhook.
  • serviceAccountId: String
  • # The ID of the webhook to be updated.
  • id: Int!
  • # A list of event and audit types to which the webhook is subscribed.
  • subscriptionType: SubscriptionTypeInput
  • # A list of event and audit severities to which the webhook is subscribed.
  • subscriptionSeverity: SubscriptionSeverityInput
  • # The application that will receive the webhook.
  • providerType: ProviderType
  • # The authentication type and token to authenticate the endpoint.
  • authInfo: AuthInfoInput
  • # Specifies whether the webhook is enabled or not.
  • status: WebhookStatus
  • # The URL endpoint to the receiving application.
  • url: URL
  • # Specifies whether a test event will be sent upon update.
  • shouldSendTestEvent: Boolean
  • }

link Require by