mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-31 04:30:44 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+11
-2
@@ -5,6 +5,7 @@
|
||||
"endpointPrefix":"data.jobs.iot",
|
||||
"protocol":"rest-json",
|
||||
"serviceFullName":"AWS IoT Jobs Data Plane",
|
||||
"serviceId":"IoT Jobs Data Plane",
|
||||
"signatureVersion":"v4",
|
||||
"signingName":"iot-jobs-data",
|
||||
"uid":"iot-jobs-data-2017-09-29"
|
||||
@@ -78,6 +79,8 @@
|
||||
}
|
||||
},
|
||||
"shapes":{
|
||||
"ApproximateSecondsBeforeTimedOut":{"type":"long"},
|
||||
"BinaryBlob":{"type":"blob"},
|
||||
"CertificateValidationException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
@@ -194,6 +197,7 @@
|
||||
"queuedAt":{"shape":"QueuedAt"},
|
||||
"startedAt":{"shape":"StartedAt"},
|
||||
"lastUpdatedAt":{"shape":"LastUpdatedAt"},
|
||||
"approximateSecondsBeforeTimedOut":{"shape":"ApproximateSecondsBeforeTimedOut"},
|
||||
"versionNumber":{"shape":"VersionNumber"},
|
||||
"executionNumber":{"shape":"ExecutionNumber"},
|
||||
"jobDocument":{"shape":"JobDocument"}
|
||||
@@ -214,6 +218,7 @@
|
||||
"IN_PROGRESS",
|
||||
"SUCCEEDED",
|
||||
"FAILED",
|
||||
"TIMED_OUT",
|
||||
"REJECTED",
|
||||
"REMOVED",
|
||||
"CANCELED"
|
||||
@@ -268,7 +273,8 @@
|
||||
"location":"uri",
|
||||
"locationName":"thingName"
|
||||
},
|
||||
"statusDetails":{"shape":"DetailsMap"}
|
||||
"statusDetails":{"shape":"DetailsMap"},
|
||||
"stepTimeoutInMinutes":{"shape":"StepTimeoutInMinutes"}
|
||||
}
|
||||
},
|
||||
"StartNextPendingJobExecutionResponse":{
|
||||
@@ -278,6 +284,7 @@
|
||||
}
|
||||
},
|
||||
"StartedAt":{"type":"long"},
|
||||
"StepTimeoutInMinutes":{"type":"long"},
|
||||
"TerminalStateException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
@@ -295,7 +302,8 @@
|
||||
"ThrottlingException":{
|
||||
"type":"structure",
|
||||
"members":{
|
||||
"message":{"shape":"errorMessage"}
|
||||
"message":{"shape":"errorMessage"},
|
||||
"payload":{"shape":"BinaryBlob"}
|
||||
},
|
||||
"error":{"httpStatusCode":429},
|
||||
"exception":true
|
||||
@@ -320,6 +328,7 @@
|
||||
},
|
||||
"status":{"shape":"JobExecutionStatus"},
|
||||
"statusDetails":{"shape":"DetailsMap"},
|
||||
"stepTimeoutInMinutes":{"shape":"StepTimeoutInMinutes"},
|
||||
"expectedVersion":{"shape":"ExpectedVersion"},
|
||||
"includeJobExecutionState":{"shape":"IncludeExecutionState"},
|
||||
"includeJobDocument":{"shape":"IncludeJobDocument"},
|
||||
|
||||
Generated
Vendored
+20
-1
@@ -8,6 +8,18 @@
|
||||
"UpdateJobExecution": "<p>Updates the status of a job execution.</p>"
|
||||
},
|
||||
"shapes": {
|
||||
"ApproximateSecondsBeforeTimedOut": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"JobExecution$approximateSecondsBeforeTimedOut": "<p>The estimated number of seconds that remain before the job execution status will be changed to <code>TIMED_OUT</code>.</p>"
|
||||
}
|
||||
},
|
||||
"BinaryBlob": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"ThrottlingException$payload": "<p>The payload associated with the exception.</p>"
|
||||
}
|
||||
},
|
||||
"CertificateValidationException": {
|
||||
"base": "<p>The certificate is invalid.</p>",
|
||||
"refs": {
|
||||
@@ -188,6 +200,13 @@
|
||||
"JobExecutionSummary$startedAt": "<p>The time, in milliseconds since the epoch, when the job execution started.</p>"
|
||||
}
|
||||
},
|
||||
"StepTimeoutInMinutes": {
|
||||
"base": null,
|
||||
"refs": {
|
||||
"StartNextPendingJobExecutionRequest$stepTimeoutInMinutes": "<p>Specifies the amount of time this device has to finish execution of this job. If the job execution status is not set to a terminal state before this timer expires, or before the timer is reset (by calling <code>UpdateJobExecution</code>, setting the status to <code>IN_PROGRESS</code> and specifying a new timeout value in field <code>stepTimeoutInMinutes</code>) the job execution status will be automatically set to <code>TIMED_OUT</code>. Note that setting this timeout has no effect on that job execution timeout which may have been specified when the job was created (<code>CreateJob</code> using field <code>timeoutConfig</code>).</p>",
|
||||
"UpdateJobExecutionRequest$stepTimeoutInMinutes": "<p>Specifies the amount of time this device has to finish execution of this job. If the job execution status is not set to a terminal state before this timer expires, or before the timer is reset (by again calling <code>UpdateJobExecution</code>, setting the status to <code>IN_PROGRESS</code> and specifying a new timeout value in this field) the job execution status will be automatically set to <code>TIMED_OUT</code>. Note that setting or resetting this timeout has no effect on that job execution timeout which may have been specified when the job was created (<code>CreateJob</code> using field <code>timeoutConfig</code>).</p>"
|
||||
}
|
||||
},
|
||||
"TerminalStateException": {
|
||||
"base": "<p>The job is in a terminal state.</p>",
|
||||
"refs": {
|
||||
@@ -235,7 +254,7 @@
|
||||
"ResourceNotFoundException$message": "<p>The message for the exception.</p>",
|
||||
"ServiceUnavailableException$message": "<p>The message for the exception.</p>",
|
||||
"TerminalStateException$message": null,
|
||||
"ThrottlingException$message": "<p>The message for the exception.</p>"
|
||||
"ThrottlingException$message": "<p>The message associated with the exception.</p>"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user