Skip to content

Commit

Permalink
Release v1.36.11 (2020-12-17) (#3702)
Browse files Browse the repository at this point in the history
Release v1.36.11 (2020-12-17)
===

### Service Client Updates
* `service/config`: Updates service API and documentation
* `service/dlm`: Updates service API and documentation
* `service/ec2`: Updates service API
  * C6gn instances are powered by AWS Graviton2 processors and offer 100 Gbps networking bandwidth. These instances deliver up to 40% better price-performance benefit versus comparable x86-based instances
* `service/imagebuilder`: Updates service API, documentation, and paginators
* `service/kms`: Updates service API, documentation, and examples
  * Added CreationDate and LastUpdatedDate timestamps to ListAliases API response
* `service/route53`: Updates service API and documentation
  * This release adds support for DNSSEC signing in Amazon Route 53.
* `service/route53resolver`: Updates service API, documentation, and paginators
* `service/servicecatalog`: Updates service API, documentation, and paginators
  * Support TagOptions sharing with Service Catalog portfolio sharing.
* `service/sqs`: Updates service API and documentation
  * Amazon SQS adds queue attributes to enable high throughput FIFO.
  • Loading branch information
aws-sdk-go-automation committed Dec 17, 2020
1 parent 1d64c61 commit a6c902e
Show file tree
Hide file tree
Showing 42 changed files with 9,547 additions and 791 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,22 @@
Release v1.36.11 (2020-12-17)
===

### Service Client Updates
* `service/config`: Updates service API and documentation
* `service/dlm`: Updates service API and documentation
* `service/ec2`: Updates service API
* C6gn instances are powered by AWS Graviton2 processors and offer 100 Gbps networking bandwidth. These instances deliver up to 40% better price-performance benefit versus comparable x86-based instances
* `service/imagebuilder`: Updates service API, documentation, and paginators
* `service/kms`: Updates service API, documentation, and examples
* Added CreationDate and LastUpdatedDate timestamps to ListAliases API response
* `service/route53`: Updates service API and documentation
* This release adds support for DNSSEC signing in Amazon Route 53.
* `service/route53resolver`: Updates service API, documentation, and paginators
* `service/servicecatalog`: Updates service API, documentation, and paginators
* Support TagOptions sharing with Service Catalog portfolio sharing.
* `service/sqs`: Updates service API and documentation
* Amazon SQS adds queue attributes to enable high throughput FIFO.

Release v1.36.10 (2020-12-16)
===

Expand Down
42 changes: 36 additions & 6 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.36.10"
const SDKVersion = "1.36.11"
45 changes: 45 additions & 0 deletions models/apis/config/2014-11-12/api-2.json
Expand Up @@ -898,6 +898,19 @@
{"shape":"NoSuchConfigRuleException"}
]
},
"PutExternalEvaluation":{
"name":"PutExternalEvaluation",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutExternalEvaluationRequest"},
"output":{"shape":"PutExternalEvaluationResponse"},
"errors":[
{"shape":"NoSuchConfigRuleException"},
{"shape":"InvalidParameterValueException"}
]
},
"PutOrganizationConfigRule":{
"name":"PutOrganizationConfigRule",
"http":{
Expand Down Expand Up @@ -2483,6 +2496,22 @@
"max":4096,
"min":1
},
"ExternalEvaluation":{
"type":"structure",
"required":[
"ComplianceResourceType",
"ComplianceResourceId",
"ComplianceType",
"OrderingTimestamp"
],
"members":{
"ComplianceResourceType":{"shape":"StringWithCharLimit256"},
"ComplianceResourceId":{"shape":"BaseResourceId"},
"ComplianceType":{"shape":"ComplianceType"},
"Annotation":{"shape":"StringWithCharLimit256"},
"OrderingTimestamp":{"shape":"OrderingTimestamp"}
}
},
"FailedDeleteRemediationExceptionsBatch":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -3532,6 +3561,22 @@
"FailedEvaluations":{"shape":"Evaluations"}
}
},
"PutExternalEvaluationRequest":{
"type":"structure",
"required":[
"ConfigRuleName",
"ExternalEvaluation"
],
"members":{
"ConfigRuleName":{"shape":"ConfigRuleName"},
"ExternalEvaluation":{"shape":"ExternalEvaluation"}
}
},
"PutExternalEvaluationResponse":{
"type":"structure",
"members":{
}
},
"PutOrganizationConfigRuleRequest":{
"type":"structure",
"required":["OrganizationConfigRuleName"],
Expand Down
65 changes: 44 additions & 21 deletions models/apis/config/2014-11-12/docs-2.json

Large diffs are not rendered by default.

134 changes: 130 additions & 4 deletions models/apis/dlm/2018-01-12/api-2.json
Expand Up @@ -129,6 +129,29 @@
}
},
"shapes":{
"Action":{
"type":"structure",
"required":[
"Name",
"CrossRegionCopy"
],
"members":{
"Name":{"shape":"ActionName"},
"CrossRegionCopy":{"shape":"CrossRegionCopyActionList"}
}
},
"ActionList":{
"type":"list",
"member":{"shape":"Action"},
"max":1,
"min":1
},
"ActionName":{
"type":"string",
"max":120,
"min":0,
"pattern":"[0-9A-Za-z _-]+"
},
"AvailabilityZone":{
"type":"string",
"max":16,
Expand All @@ -141,6 +164,12 @@
"max":10,
"min":1
},
"AwsAccountId":{
"type":"string",
"max":12,
"min":12,
"pattern":"^[0-9]{12}$"
},
"CmkArn":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -191,6 +220,24 @@
"min":17,
"pattern":"cron\\([^\\n]{11,100}\\)"
},
"CrossRegionCopyAction":{
"type":"structure",
"required":[
"Target",
"EncryptionConfiguration"
],
"members":{
"Target":{"shape":"Target"},
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
"RetainRule":{"shape":"CrossRegionCopyRetainRule"}
}
},
"CrossRegionCopyActionList":{
"type":"list",
"member":{"shape":"CrossRegionCopyAction"},
"max":3,
"min":0
},
"CrossRegionCopyRetainRule":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -234,9 +281,52 @@
"members":{
}
},
"DescriptionRegex":{
"type":"string",
"max":1000,
"min":0,
"pattern":"[\\p{all}]*"
},
"Encrypted":{"type":"boolean"},
"EncryptionConfiguration":{
"type":"structure",
"required":["Encrypted"],
"members":{
"Encrypted":{"shape":"Encrypted"},
"CmkArn":{"shape":"CmkArn"}
}
},
"ErrorCode":{"type":"string"},
"ErrorMessage":{"type":"string"},
"EventParameters":{
"type":"structure",
"required":[
"EventType",
"SnapshotOwner",
"DescriptionRegex"
],
"members":{
"EventType":{"shape":"EventTypeValues"},
"SnapshotOwner":{"shape":"SnapshotOwnerList"},
"DescriptionRegex":{"shape":"DescriptionRegex"}
}
},
"EventSource":{
"type":"structure",
"required":["Type"],
"members":{
"Type":{"shape":"EventSourceValues"},
"Parameters":{"shape":"EventParameters"}
}
},
"EventSourceValues":{
"type":"string",
"enum":["MANAGED_CWE"]
},
"EventTypeValues":{
"type":"string",
"enum":["shareSnapshot"]
},
"ExcludeBootVolume":{"type":"boolean"},
"ExecutionRoleArn":{
"type":"string",
Expand Down Expand Up @@ -431,7 +521,9 @@
"ResourceTypes":{"shape":"ResourceTypeValuesList"},
"TargetTags":{"shape":"TargetTagList"},
"Schedules":{"shape":"ScheduleList"},
"Parameters":{"shape":"Parameters"}
"Parameters":{"shape":"Parameters"},
"EventSource":{"shape":"EventSource"},
"Actions":{"shape":"ActionList"}
}
},
"PolicyId":{
Expand All @@ -448,7 +540,8 @@
"type":"string",
"enum":[
"EBS_SNAPSHOT_MANAGEMENT",
"IMAGE_MANAGEMENT"
"IMAGE_MANAGEMENT",
"EVENT_BASED_POLICY"
]
},
"ResourceNotFoundException":{
Expand Down Expand Up @@ -502,7 +595,8 @@
"CreateRule":{"shape":"CreateRule"},
"RetainRule":{"shape":"RetainRule"},
"FastRestoreRule":{"shape":"FastRestoreRule"},
"CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"}
"CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"},
"ShareRules":{"shape":"ShareRules"}
}
},
"ScheduleList":{
Expand All @@ -515,7 +609,7 @@
"type":"string",
"max":120,
"min":0,
"pattern":"[\\p{all}]*"
"pattern":"[0-9A-Za-z _-]+"
},
"SettablePolicyStateValues":{
"type":"string",
Expand All @@ -524,6 +618,32 @@
"DISABLED"
]
},
"ShareRule":{
"type":"structure",
"required":["TargetAccounts"],
"members":{
"TargetAccounts":{"shape":"ShareTargetAccountList"},
"UnshareInterval":{"shape":"Interval"},
"UnshareIntervalUnit":{"shape":"RetentionIntervalUnitValues"}
}
},
"ShareRules":{
"type":"list",
"member":{"shape":"ShareRule"},
"max":1,
"min":0
},
"ShareTargetAccountList":{
"type":"list",
"member":{"shape":"AwsAccountId"},
"min":1
},
"SnapshotOwnerList":{
"type":"list",
"member":{"shape":"AwsAccountId"},
"max":50,
"min":0
},
"StatusMessage":{
"type":"string",
"max":500,
Expand Down Expand Up @@ -609,6 +729,12 @@
"max":45,
"min":0
},
"Target":{
"type":"string",
"max":16,
"min":0,
"pattern":"^[\\\\w:\\\\-\\\\/\\\\*]+$"
},
"TargetRegion":{
"type":"string",
"max":16,
Expand Down

0 comments on commit a6c902e

Please sign in to comment.