INPUT_OBJECT

SecuritySuppressionRequestInput

link GraphQL Schema definition

  • input SecuritySuppressionRequestInput {
  • # The type of the request action
  • action: SecuritySuppressionRequestAction!
  • # The request comment, free text. Used when user is reviewing a request
  • comment: String
  • # Updated suppression context
  • context: SecurityContext
  • # Time the request was created
  • creationTime: DateTime!
  • # Updated criteria
  • criteria: [SecurityCriterionInput!]
  • # The updated expiration time. Valid only if the requested
  • # action is to extend the expiration, otherwise ignored.
  • # If set to "null" and approve the changes, suppression wouldn't expire.
  • expiration: Date
  • # Cloud accounts id(s) that are included
  • managementEndpointId: [String!]
  • # Project id(s) that are included
  • projectId: [EntityId!]
  • # The request reason, free text
  • reason: String
  • # The status of the request
  • status: SecuritySuppressionRequestStatus
  • }