OBJECT

ManagementEndpointCollector

ManagementEndpointCollector represents collector metadata for various kinds of collectors, Kubernetes is the supported collector type currently.

link GraphQL Schema definition

  • type ManagementEndpointCollector implements Node {
  • # Creation time of the collector
  • creationTime: DateTime
  • # Deployment install command: This will be only populated for mutation operation
  • # and will be set null for query operations.
  • deploymentInstall: String
  • # Management collector health status
  • healthStatus: ManagementEndpointCollectorHealthStatus!
  • # Opaque global identifier of this Management Endpoint Collector
  • id: ID!
  • # Last Updated time of the collector
  • lastUpdateTime: DateTime
  • # Latest available version of the collector
  • latestAvailableVersion: String
  • # Management Endpoint ID associated with the collector
  • managementEndpoint: ManagementEndpoint!
  • # Management Endpoint collector credentials for connecting to SaaS
  • managementEndpointCollectorCredentials: ManagementEndpointCollectorCredentials!
  • # Management Endpoint collector properties
  • managementEndpointCollectorProperties: ManagementEndpointCollectorProperties!
  • # Collector Type Version
  • managementEndpointCollectorTypeVersion: String
  • # Type of the managementEndpointType. Example: AWS, Azure
  • managementEndpointType: ManagementEndpointType!
  • # Name of the collector
  • name: String!
  • # Region in which the collector is deployed
  • region: String!
  • # Management collector status
  • status: ManagementEndpointCollectorStatus!
  • # Type of the collector. Example: Kubernetes
  • type: ManagementEndpointCollectorType!
  • }