Gets parameters of a configuration job for OneAgents.
The request produces an application/json
payload.
GET | SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/oneagents/remoteConfigurationManagement/{id} |
Environment ActiveGateCluster ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/v2/oneagents/remoteConfigurationManagement/{id} |
To execute this request, you need an access token with oneAgents.read
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameter | Type | Description | In | Required |
---|---|---|---|---|
id | string | The ID of the required remote configuration management job. | path | required |
Code | Type | Description |
---|---|---|
200 | Remote | Success |
404 | Error | Failed. The requested resource doesn't exist. |
4XX | Error | Client side error. |
5XX | Error | Server side error. |
RemoteConfigurationManagementJob
objectRemote configuration management job.
Element | Type | Description |
---|---|---|
endTime | string | Date (in ISO 8601 format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z') when the remote configuration management job was finished. This field is present only for finished jobs. |
entityType | string | Type of entities modified by remote configuration management.
|
failedEntities | Remote | A list of failed remote configuration management jobs. |
id | string | The ID of the remote configuration management job. |
operations | Remote | A list of executed (successful and failed) remote configuration management jobs. |
processedEntitiesCount | integer | Number of entities that were already processed at the time the response was created. |
startTime | string | Date (in ISO 8601 format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z') when the remote configuration management job was started. |
timeoutTime | string | Date (in ISO 8601 format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z') when the running remote configuration management job will time-out. This field is present only for running jobs. |
totalEntitiesCount | integer | Total number of entities to process. |
RemoteIdentityOperationFailedEntityDto
objectFailed remote configuration management information.
Element | Type | Description |
---|---|---|
entityId | string | Entity ID for which remote configuration management request was failed |
failureMessage | string | Communication settings changing failure error description |
failureReason | string | Reason of communication settings changing failure.
|
RemoteConfigurationManagementOperation
objectDefinition of a single remote configuration management operation.
Element | Type | Description |
---|---|---|
attribute | string | The attribute which is affected by the operation.
|
operation | string | The operation performed on given attribute.
|
value | string | The value which should be assigned to given attribute. |
{"endTime": "2020-11-05T08:15:30.144Z","entityType": "ACTIVE_GATE or ONE_AGENT","failedEntities": [{"entityId": "HOST-D454A967666E7970","failureMessage": "Failed to access new tenant: f47ac10b-58cc-4372-a567-0e02b2c3d479","failureReason": "CONNECTION_FAILURE"}],"id": "7974003406714390819","operations": [{"attribute": "networkZone","operation": "set","value": "exampleNetworkZoneName"}],"processedEntitiesCount": 1,"startTime": "2020-11-05T08:15:30.144Z","timeoutTime": "2020-11-05T08:15:30.144Z","totalEntitiesCount": 1}