OBJECT

SecurityIntegration

Describes a security integration

link GraphQL Schema definition

  • type SecurityIntegration implements Node, NodeVersion {
  • # Integration context
  • context: SecurityContext!
  • # The time this integration was created
  • creationTime: DateTime!
  • # Name of this integration
  • displayName: LocalizedString!
  • # Enabled turns the integration on/off
  • enabled: Boolean!
  • # Node-compatible opaque global identifier
  • id: ID!
  • # Unique identifier of the integration instance
  • integrationId: String!
  • # The last time this integration was successfully updated
  • lastUpdateTime: DateTime!
  • # Integration method
  • method: SecurityIntegrationMethod!
  • # Opaque version string for this graph node instance
  • nodeVersion: ID!
  • # Project ids that are included
  • projectIds: [String!]
  • # The list of properties specific for the selected integration method
  • properties: [SecurityProperty!]
  • # Status holds details about the healthiness of the integration
  • status: SecurityIntegrationStatus!
  • }