Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.42.2 #4169

Merged
merged 1 commit into from
Nov 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.42.2 (2021-11-10)
===

### Service Client Updates
* `service/backup`: Updates service API and documentation
* `service/ecs`: Updates service API and documentation
* This release adds support for container instance health.
* `service/resiliencehub`: Adds new service

Release v1.42.1 (2021-11-09)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.42.1"
const SDKVersion = "1.42.2"
24 changes: 23 additions & 1 deletion models/apis/backup/2018-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,9 @@
"SelectionName":{"shape":"BackupSelectionName"},
"IamRoleArn":{"shape":"IAMRoleArn"},
"Resources":{"shape":"ResourceArns"},
"ListOfTags":{"shape":"ListOfTags"}
"ListOfTags":{"shape":"ListOfTags"},
"NotResources":{"shape":"ResourceArns"},
"Conditions":{"shape":"Conditions"}
}
},
"BackupSelectionName":{
Expand Down Expand Up @@ -1332,11 +1334,31 @@
}
},
"ConditionKey":{"type":"string"},
"ConditionParameter":{
"type":"structure",
"members":{
"ConditionKey":{"shape":"ConditionKey"},
"ConditionValue":{"shape":"ConditionValue"}
}
},
"ConditionParameters":{
"type":"list",
"member":{"shape":"ConditionParameter"}
},
"ConditionType":{
"type":"string",
"enum":["STRINGEQUALS"]
},
"ConditionValue":{"type":"string"},
"Conditions":{
"type":"structure",
"members":{
"StringEquals":{"shape":"ConditionParameters"},
"StringNotEquals":{"shape":"ConditionParameters"},
"StringLike":{"shape":"ConditionParameters"},
"StringNotLike":{"shape":"ConditionParameters"}
}
},
"ConflictException":{
"type":"structure",
"members":{
Expand Down
30 changes: 27 additions & 3 deletions models/apis/backup/2018-11-15/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,23 @@
"ConditionKey": {
"base": null,
"refs": {
"Condition$ConditionKey": "<p>The key in a key-value pair. For example, in <code>\"ec2:ResourceTag/Department\": \"accounting\"</code>, <code>\"ec2:ResourceTag/Department\"</code> is the key.</p>"
"Condition$ConditionKey": "<p>The key in a key-value pair. For example, in <code>\"ec2:ResourceTag/Department\": \"accounting\"</code>, <code>\"ec2:ResourceTag/Department\"</code> is the key.</p>",
"ConditionParameter$ConditionKey": null
}
},
"ConditionParameter": {
"base": null,
"refs": {
"ConditionParameters$member": null
}
},
"ConditionParameters": {
"base": null,
"refs": {
"Conditions$StringEquals": null,
"Conditions$StringNotEquals": null,
"Conditions$StringLike": null,
"Conditions$StringNotLike": null
}
},
"ConditionType": {
Expand All @@ -444,7 +460,14 @@
"ConditionValue": {
"base": null,
"refs": {
"Condition$ConditionValue": "<p>The value in a key-value pair. For example, in <code>\"ec2:ResourceTag/Department\": \"accounting\"</code>, <code>\"accounting\"</code> is the value.</p>"
"Condition$ConditionValue": "<p>The value in a key-value pair. For example, in <code>\"ec2:ResourceTag/Department\": \"accounting\"</code>, <code>\"accounting\"</code> is the value.</p>",
"ConditionParameter$ConditionValue": null
}
},
"Conditions": {
"base": null,
"refs": {
"BackupSelection$Conditions": null
}
},
"ConflictException": {
Expand Down Expand Up @@ -1351,7 +1374,8 @@
"ResourceArns": {
"base": null,
"refs": {
"BackupSelection$Resources": "<p>An array of strings that contain Amazon Resource Names (ARNs) of resources to assign to a backup plan.</p>"
"BackupSelection$Resources": "<p>An array of strings that contain Amazon Resource Names (ARNs) of resources to assign to a backup plan.</p>",
"BackupSelection$NotResources": null
}
},
"ResourceNotFoundException": {
Expand Down
41 changes: 39 additions & 2 deletions models/apis/ecs/2014-11-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1238,17 +1238,28 @@
"attributes":{"shape":"Attributes"},
"registeredAt":{"shape":"Timestamp"},
"attachments":{"shape":"Attachments"},
"tags":{"shape":"Tags"}
"tags":{"shape":"Tags"},
"healthStatus":{"shape":"ContainerInstanceHealthStatus"}
}
},
"ContainerInstanceField":{
"type":"string",
"enum":["TAGS"]
"enum":[
"TAGS",
"CONTAINER_INSTANCE_HEALTH"
]
},
"ContainerInstanceFieldList":{
"type":"list",
"member":{"shape":"ContainerInstanceField"}
},
"ContainerInstanceHealthStatus":{
"type":"structure",
"members":{
"overallStatus":{"shape":"InstanceHealthCheckState"},
"details":{"shape":"InstanceHealthCheckResultList"}
}
},
"ContainerInstanceStatus":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1999,6 +2010,32 @@
"type":"list",
"member":{"shape":"InferenceAccelerator"}
},
"InstanceHealthCheckResult":{
"type":"structure",
"members":{
"type":{"shape":"InstanceHealthCheckType"},
"status":{"shape":"InstanceHealthCheckState"},
"lastUpdated":{"shape":"Timestamp"},
"lastStatusChange":{"shape":"Timestamp"}
}
},
"InstanceHealthCheckResultList":{
"type":"list",
"member":{"shape":"InstanceHealthCheckResult"}
},
"InstanceHealthCheckState":{
"type":"string",
"enum":[
"OK",
"IMPAIRED",
"INSUFFICIENT_DATA",
"INITIALIZING"
]
},
"InstanceHealthCheckType":{
"type":"string",
"enum":["CONTAINER_RUNTIME"]
},
"Integer":{"type":"integer"},
"InvalidParameterException":{
"type":"structure",
Expand Down
791 changes: 412 additions & 379 deletions models/apis/ecs/2014-11-13/docs-2.json

Large diffs are not rendered by default.

Loading