OBJECT

GuardrailsWorkerGroup

link GraphQL Schema definition

  • type GuardrailsWorkerGroup implements Node {
  • # Unique identifier for guardrail worker group
  • id: ID!
  • # Cloud accounts associated with worker group. Applies only to type = REMEDIATION
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: [Not documented]
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • cloudAccounts(
  • after: String,
  • before: String,
  • filter: GuardrailsWorkerGroupCloudAccountFilter,
  • first: Int
  • ): GuardrailsWorkerGroupCloudAccountConnection
  • # CSP user who created guardrail worker group
  • createdBy: User
  • # Timestamp at which guardrail worker group is created. Expressed in UTC ISO-8601
  • # format
  • createdOn: DateTime!
  • # Deployment configuration of worker group
  • deploymentConfig: GuardrailsWorkerGroupDeploymentConfiguration!
  • # Guardrails worker group description
  • description: String
  • # Enable/Disable worker group
  • enabled: Boolean!
  • # Worker logs associated with worker group
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: Input filters to filter output of this API
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • logs(
  • after: String,
  • before: String,
  • filter: GuardrailsWorkerGroupLogsFilter,
  • first: Int
  • ): GuardrailsWorkerGroupLogConnection
  • # Guardrails worker group name
  • name: String!
  • # Guardrails worker group type
  • type: GuardrailsWorkerGroupType!
  • # CSP user who updated guardrail worker group
  • updatedBy: User
  • # Timestamp at which guardrail group is updated. Expressed in UTC ISO-8601 format
  • updatedOn: DateTime
  • # Workers associated with worker group
  • #
  • # Arguments
  • # after: Return records after the given cursor, as per GraphQL
  • # Relay spec
  • # before: Return records before the given cursor, as per GraphQL
  • # Relay spec
  • # filter: [Not documented]
  • # first: Return first N records in a paged response, as per
  • # GraphQL Relay spec
  • workers(
  • after: String,
  • before: String,
  • filter: GuardrailsWorkerGroupWorkerFilter,
  • first: Int
  • ): GuardrailsWorkerGroupWorkersConnection
  • }