OBJECT

GuardrailsRemediationAction

Action is a definition of which remediation Job is run when certain criteria are met

link GraphQL Schema definition

  • type GuardrailsRemediationAction implements Node {
  • # Auto-remediate flag. If enabled the Job will be run automatically when a finding
  • # is generated.
  • autoRemediate: Boolean
  • # Action creation time.
  • createdOn: DateTime
  • # List of Criteria a finding should meet to trigger the Action.
  • criteria: [GuardrailsRemediationCriteria!]
  • # Free text description.
  • description: String
  • # Unique identifier of an Action.
  • id: ID!
  • # The remediation worker group Job.
  • job: GuardrailsWorkerGroupJobs!
  • # The Action name.
  • name: String!
  • # Cloud provider
  • provider: String!
  • # Publish flag.
  • published: Boolean
  • # Action runs
  • #
  • # **NOTE:** This API/functionality is in Beta, this functionality is a candidate
  • # for a stable API but we reserve the right to fix issues including modifying the
  • # schema if required.
  • runs: [GuardrailsRemediationRuns!]
  • # Action last modification time. Expressed in UTC ISO-8601 format
  • updatedOn: DateTime
  • # WorkerGroup identifier
  • workerGroup: GuardrailsWorkerGroup
  • }