OBJECT

SecuritySuppressionRequest

link GraphQL Schema definition

  • type SecuritySuppressionRequest {
  • # 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: [SecurityCriterion!]
  • # CSP Project Entities that are included
  • cspProjectEntities: [Entity!]
  • # 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 ids that are included
  • managementEndpointIds: [String!]
  • # Project ids that are included
  • projectIds: [String!]
  • # The request reason, free text
  • reason: String!
  • # The status of the request
  • status: SecuritySuppressionRequestStatus!
  • }