AppDynamics · Schema
CloudConnection
A cloud provider connection configuration for authenticating and authorizing Cisco Cloud Observability with a cloud provider.
APMApplication Performance MonitoringCiscoCloud ObservabilityDevOpsMonitoringObservabilityOpenTelemetry
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the cloud connection. |
| type | string | The cloud provider type. |
| displayName | string | A human-readable display name for the connection. |
| description | string | An optional description of the cloud connection. |
| state | string | The current state of the connection. |
| details | object | Provider-specific connection details including credentials and role configuration. |
| createdAt | string | The timestamp when the connection was created. |
| updatedAt | string | The timestamp when the connection was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CloudConnection",
"title": "CloudConnection",
"type": "object",
"description": "A cloud provider connection configuration for authenticating and authorizing Cisco Cloud Observability with a cloud provider.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the cloud connection."
},
"type": {
"type": "string",
"description": "The cloud provider type.",
"enum": [
"aws",
"azure",
"gcp"
]
},
"displayName": {
"type": "string",
"description": "A human-readable display name for the connection."
},
"description": {
"type": "string",
"description": "An optional description of the cloud connection."
},
"state": {
"type": "string",
"description": "The current state of the connection.",
"enum": [
"active",
"inactive",
"error"
]
},
"details": {
"type": "object",
"description": "Provider-specific connection details including credentials and role configuration."
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the connection was created."
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the connection was last updated."
}
}
}