Skip to content

Commit

Permalink
Release v1.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Oct 3, 2017
1 parent 1721157 commit 0bac557
Show file tree
Hide file tree
Showing 12 changed files with 540 additions and 216 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.12.4 (2017-10-03)
===

### Service Client Updates
* `service/ec2`: Updates service API, documentation, and waiters
* This release includes service updates to AWS VPN.
* `service/ssm`: Updates service API and documentation
* EC2 Systems Manager support for tagging SSM Documents. Also support for tag-based permissions to restrict access to SSM Documents based on these tags.

Release v1.12.3 (2017-10-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.12.3"
const SDKVersion = "1.12.4"
26 changes: 24 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -12102,7 +12102,10 @@
},
"PurchaseSet":{
"type":"list",
"member":{"shape":"Purchase"}
"member":{
"shape":"Purchase",
"locationName":"item"
}
},
"PurchasedScheduledInstanceSet":{
"type":"list",
Expand Down Expand Up @@ -15193,6 +15196,13 @@
"ALL"
]
},
"TunnelOptionsList":{
"type":"list",
"member":{
"shape":"VpnTunnelOptionsSpecification",
"locationName":"item"
}
},
"UnassignIpv6AddressesRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -16193,6 +16203,10 @@
"shape":"String",
"locationName":"customerGatewayId"
},
"Category":{
"shape":"String",
"locationName":"category"
},
"State":{
"shape":"VpnState",
"locationName":"state"
Expand Down Expand Up @@ -16256,7 +16270,8 @@
"StaticRoutesOnly":{
"shape":"Boolean",
"locationName":"staticRoutesOnly"
}
},
"TunnelOptions":{"shape":"TunnelOptionsList"}
}
},
"VpnGateway":{
Expand Down Expand Up @@ -16339,6 +16354,13 @@
"type":"string",
"enum":["Static"]
},
"VpnTunnelOptionsSpecification":{
"type":"structure",
"members":{
"TunnelInsideCidr":{"shape":"String"},
"PreSharedKey":{"shape":"String"}
}
},
"ZoneNameStringList":{
"type":"list",
"member":{
Expand Down
65 changes: 40 additions & 25 deletions models/apis/ec2/2016-11-15/docs-2.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions models/apis/ec2/2016-11-15/waiters-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,12 @@
"argument": "SpotInstanceRequests[].Status.Code",
"expected": "fulfilled"
},
{
"state": "success",
"matcher": "pathAll",
"argument": "SpotInstanceRequests[].Status.Code",
"expected": "request-canceled-and-instance-running"
},
{
"state": "failure",
"matcher": "pathAny",
Expand Down
38 changes: 35 additions & 3 deletions models/apis/ssm/2014-11-06/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3064,7 +3064,8 @@
"DocumentType":{"shape":"DocumentType"},
"SchemaVersion":{"shape":"DocumentSchemaVersion"},
"LatestVersion":{"shape":"DocumentVersion"},
"DefaultVersion":{"shape":"DocumentVersion"}
"DefaultVersion":{"shape":"DocumentVersion"},
"Tags":{"shape":"TagList"}
}
},
"DocumentFilter":{
Expand Down Expand Up @@ -3118,7 +3119,8 @@
"PlatformTypes":{"shape":"PlatformTypeList"},
"DocumentVersion":{"shape":"DocumentVersion"},
"DocumentType":{"shape":"DocumentType"},
"SchemaVersion":{"shape":"DocumentSchemaVersion"}
"SchemaVersion":{"shape":"DocumentSchemaVersion"},
"Tags":{"shape":"TagList"}
}
},
"DocumentIdentifierList":{
Expand All @@ -3128,6 +3130,33 @@
"locationName":"DocumentIdentifier"
}
},
"DocumentKeyValuesFilter":{
"type":"structure",
"members":{
"Key":{"shape":"DocumentKeyValuesFilterKey"},
"Values":{"shape":"DocumentKeyValuesFilterValues"}
}
},
"DocumentKeyValuesFilterKey":{
"type":"string",
"max":128,
"min":1
},
"DocumentKeyValuesFilterList":{
"type":"list",
"member":{"shape":"DocumentKeyValuesFilter"},
"max":5,
"min":0
},
"DocumentKeyValuesFilterValue":{
"type":"string",
"max":256,
"min":1
},
"DocumentKeyValuesFilterValues":{
"type":"list",
"member":{"shape":"DocumentKeyValuesFilterValue"}
},
"DocumentLimitExceeded":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4631,6 +4660,7 @@
"type":"structure",
"members":{
"DocumentFilterList":{"shape":"DocumentFilterList"},
"Filters":{"shape":"DocumentKeyValuesFilterList"},
"MaxResults":{
"shape":"MaxResults",
"box":true
Expand Down Expand Up @@ -6010,9 +6040,11 @@
"ResourceTypeForTagging":{
"type":"string",
"enum":[
"Document",
"ManagedInstance",
"MaintenanceWindow",
"Parameter"
"Parameter",
"PatchBaseline"
]
},
"ResponseCode":{"type":"integer"},
Expand Down

0 comments on commit 0bac557

Please sign in to comment.