Retrieve update request information (GET /v1.0/change/{updateRequestId })
Retrieves update request information.
Update request information is retrieved by specifying the update request ID in the request.
The update request ID is set in the response body of the update system API.
*This API only supports update request IDs when the update system API is successful. The update system API is as follows:
- CreateHostedZone
- DeleteHostedZone
- ChangeResourceRecordSets
Request headers
n/a
Request parameters
n/a
Request elements
n/a
HTTP status
Status
The following error codes can be returned for the request.
One of the following values will be returned:
- 200:
- Normal completion
- 404:
- The update request ID does not exist
Data type | Cardinality |
---|---|
Int | 1..1 |
Response elements (normal completion)
GetChangeResponse
Envelope of the response.
Data type | Cardinality | Parent element | Child element |
---|---|---|---|
- | 1..1 | None | ChangeInfo |
ChangeInfo
Envelope of the update request information.
Data type | Cardinality | Parent element | Child element |
---|---|---|---|
- | 1..1 | ListHostedZonesResponse | Id Status SubmittedAt |
Id
Update request ID.
Data type | Cardinality | Parent element | Child element |
---|---|---|---|
xsd:string | 1..1 | ChangeInfo | None |
Status
Update status.
PENDING or INSYNC.
Data type | Cardinality | Parent element | Child element |
---|---|---|---|
xsd:string | 1..1 | ChangeInfo | None |
SubmittedAt
Datetime of update request. Format: YYYY-MM-DDThh:mm:ss.SSSZ
Data type | Cardinality | Parent element | Child element |
---|---|---|---|
xsd:string | 1..1 | ChangeInfo | None |
Example of request
GET /change/d36956475553d655cf70a293adeb155c HTTP/1.1
Date: Fri, 06 Jun 2014 11:00:37 GMT
Content-Length: . . .
Host: dns.gls.cloud.global.fujitsu.com
Accept: application/xml
X-Auth-Token: MIIFvgY. . .
Example of response
HTTP/1.1 200 OK
Date: Fri, 06 Jun 2014 11:00:38 GMT
Content-Length: . . .
Content-Type: application/xml
x-fj-request-id: d96bd874-9bf2-11e1-8ee7-c98a0037a2b6
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
< GetChangeResponse xmlns="http://docs.cloudcommunity.global.fujitsu.com/dns/api/v1.0/">
<ChangeInfo>
<Id>dcd102450ad397f197cb9f09755964f7</Id>
<Status>INSYNC</Status>
<SubmittedAt>2014-06-06T11:00:38.178Z</SubmittedAt>
</ChangeInfo>
</GetChangeResponse>