INPUT_OBJECT

GuardrailsDesiredStateFilter

Input filter parameter to help filtering the output of guardrails desired state query. If multiple filter objects are specified they are treated as an and.

link GraphQL Schema definition

  • input GuardrailsDesiredStateFilter {
  • # guardrails account state on which the desired state will be run
  • accountSelector: [GuardrailsAccountSelector!]
  • # Filter desired states by project ids
  • # if project ids are passed, desired states associated with project ids will be
  • # returned
  • # if no project ids are passed, all user visible desired states will be returned
  • cspProjectEntityId: [EntityId!]
  • # Filter by enabled
  • enabled: Boolean
  • # Filter by guardrails desired state Id
  • id: [ID!]
  • # filter by desired state mode
  • mode: [GuardrailsDesiredStateMode!]
  • # Filter by guardrails desired state name
  • name: String
  • # Show deleted desired states only
  • showDeleted: Boolean
  • # Filter by guardrails template category
  • templateCategory: [GuardrailsTemplateCategory!]
  • # Filter by guardrails template ids
  • templateId: [ID!]
  • # Filter by guardrails template name
  • templateName: String
  • }