Skip to content

Commit

Permalink
Merge pull request #2730 from aws/release
Browse files Browse the repository at this point in the history
Release v1.21.10
  • Loading branch information
aws-sdk-go-automation authored Aug 5, 2019
2 parents 9ad3fb9 + 933fa4e commit 19d98cd
Show file tree
Hide file tree
Showing 13 changed files with 4,625 additions and 368 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.21.10 (2019-08-05)
===

### Service Client Updates
* `service/datasync`: Updates service API and documentation
* `service/ec2`: Updates service API
* Amazon EC2 now supports a new Spot allocation strategy "Capacity-optimized" that fulfills your request using Spot Instance pools that are optimally chosen based on the available Spot capacity.
* `service/iot`: Updates service API and documentation
* In this release, AWS IoT Device Defender introduces audit mitigation actions that can be applied to audit findings to help mitigate security issues.

Release v1.21.9 (2019-08-02)
===

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.21.9"
const SDKVersion = "1.21.10"
48 changes: 38 additions & 10 deletions models/apis/datasync/2018-11-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,10 @@
"members":{
"ActivationKey":{"shape":"ActivationKey"},
"AgentName":{"shape":"TagValue"},
"Tags":{"shape":"TagList"}
"Tags":{"shape":"TagList"},
"VpcEndpointId":{"shape":"VpcEndpointId"},
"SubnetArns":{"shape":"PLSubnetArnList"},
"SecurityGroupArns":{"shape":"PLSecurityGroupArnList"}
}
},
"CreateAgentResponse":{
Expand Down Expand Up @@ -546,7 +549,7 @@
"Status":{"shape":"AgentStatus"},
"LastConnectionTime":{"shape":"Time"},
"CreationTime":{"shape":"Time"},
"EndpointOptions":{"shape":"EndpointOptions"},
"EndpointType":{"shape":"EndpointType"},
"PrivateLinkConfig":{"shape":"PrivateLinkConfig"}
}
},
Expand Down Expand Up @@ -640,13 +643,19 @@
"SourceLocationArn":{"shape":"LocationArn"},
"DestinationLocationArn":{"shape":"LocationArn"},
"CloudWatchLogGroupArn":{"shape":"LogGroupArn"},
"SourceNetworkInterfaceArns":{"shape":"SourceNetworkInterfaceArns"},
"DestinationNetworkInterfaceArns":{"shape":"DestinationNetworkInterfaceArns"},
"Options":{"shape":"Options"},
"Excludes":{"shape":"FilterList"},
"ErrorCode":{"shape":"string"},
"ErrorDetail":{"shape":"string"},
"CreationTime":{"shape":"Time"}
}
},
"DestinationNetworkInterfaceArns":{
"type":"list",
"member":{"shape":"NetworkInterfaceArn"}
},
"Duration":{
"type":"long",
"min":0
Expand Down Expand Up @@ -683,12 +692,18 @@
"max":128,
"pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\\-0-9]*:[0-9]{12}:file-system/fs-.*$"
},
"EndpointOptions":{
"type":"structure",
"members":{
"Fips":{"shape":"boolean"},
"PrivateLink":{"shape":"boolean"}
}
"Endpoint":{
"type":"string",
"max":15,
"min":7,
"pattern":"\\A(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z"
},
"EndpointType":{
"type":"string",
"enum":[
"PUBLIC",
"PRIVATE_LINK"
]
},
"FilterList":{
"type":"list",
Expand Down Expand Up @@ -855,6 +870,11 @@
"PRESERVE"
]
},
"NetworkInterfaceArn":{
"type":"string",
"max":128,
"pattern":"^arn:aws[\\-a-z]{0,}:ec2:[a-z\\-0-9]*:[0-9]{12}:network-interface/eni-[0-9a-f]+$"
},
"NextToken":{
"type":"string",
"max":65535,
Expand Down Expand Up @@ -946,7 +966,8 @@
"PrivateLinkConfig":{
"type":"structure",
"members":{
"PrivateLinkEndpoint":{"shape":"string"},
"VpcEndpointId":{"shape":"VpcEndpointId"},
"PrivateLinkEndpoint":{"shape":"Endpoint"},
"SubnetArns":{"shape":"PLSubnetArnList"},
"SecurityGroupArns":{"shape":"PLSecurityGroupArnList"}
}
Expand All @@ -968,6 +989,10 @@
"max":255,
"pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])$"
},
"SourceNetworkInterfaceArns":{
"type":"list",
"member":{"shape":"NetworkInterfaceArn"}
},
"StartTaskExecutionRequest":{
"type":"structure",
"required":["TaskArn"],
Expand Down Expand Up @@ -1169,7 +1194,10 @@
"NONE"
]
},
"boolean":{"type":"boolean"},
"VpcEndpointId":{
"type":"string",
"pattern":"^vpce-[0-9a-f]{17}$"
},
"long":{"type":"long"},
"string":{"type":"string"}
}
Expand Down
86 changes: 56 additions & 30 deletions models/apis/datasync/2018-11-09/docs-2.json

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3480,7 +3480,8 @@
"type":"string",
"enum":[
"lowestPrice",
"diversified"
"diversified",
"capacityOptimized"
]
},
"AllowedPrincipal":{
Expand Down Expand Up @@ -21431,7 +21432,8 @@
"type":"string",
"enum":[
"lowest-price",
"diversified"
"diversified",
"capacity-optimized"
]
},
"SpotDatafeedSubscription":{
Expand Down
Loading

0 comments on commit 19d98cd

Please sign in to comment.