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.35.18 #3616

Merged
merged 1 commit into from
Oct 29, 2020
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Release v1.35.18 (2020-10-29)
===

### Service Client Updates
* `service/apigateway`: Updates service API and documentation
* Support disabling the default execute-api endpoint for REST APIs.
* `service/codeartifact`: Updates service API and documentation
* `service/ec2`: Updates service API and documentation
* Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal.
* `service/elasticloadbalancingv2`: Updates service API and documentation
* `service/marketplacecommerceanalytics`: Updates service documentation
* Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated.
* `service/sesv2`: Updates service API, documentation, and paginators
* `service/storagegateway`: Updates service API and documentation
* Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares

Release v1.35.17 (2020-10-28)
===

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.35.17"
const SDKVersion = "1.35.18"
6 changes: 4 additions & 2 deletions models/apis/apigateway/2015-07-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2276,7 +2276,8 @@
"apiKeySource":{"shape":"ApiKeySourceType"},
"endpointConfiguration":{"shape":"EndpointConfiguration"},
"policy":{"shape":"String"},
"tags":{"shape":"MapOfStringToString"}
"tags":{"shape":"MapOfStringToString"},
"disableExecuteApiEndpoint":{"shape":"Boolean"}
}
},
"CreateStageRequest":{
Expand Down Expand Up @@ -4618,7 +4619,8 @@
"apiKeySource":{"shape":"ApiKeySourceType"},
"endpointConfiguration":{"shape":"EndpointConfiguration"},
"policy":{"shape":"String"},
"tags":{"shape":"MapOfStringToString"}
"tags":{"shape":"MapOfStringToString"},
"disableExecuteApiEndpoint":{"shape":"Boolean"}
}
},
"RestApis":{
Expand Down
32 changes: 17 additions & 15 deletions models/apis/apigateway/2015-07-09/docs-2.json

Large diffs are not rendered by default.

151 changes: 145 additions & 6 deletions models/apis/codeartifact/2018-09-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@
{"shape":"AccessDeniedException"},
{"shape":"ConflictException"},
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
Expand Down Expand Up @@ -298,7 +297,8 @@
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
{"shape":"ValidationException"},
{"shape":"ConflictException"}
]
},
"GetPackageVersionReadme":{
Expand Down Expand Up @@ -459,6 +459,21 @@
{"shape":"ValidationException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/v1/tags"
},
"input":{"shape":"ListTagsForResourceRequest"},
"output":{"shape":"ListTagsForResourceResult"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"PutDomainPermissionsPolicy":{
"name":"PutDomainPermissionsPolicy",
"http":{
Expand Down Expand Up @@ -495,6 +510,37 @@
{"shape":"ValidationException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/v1/tag"
},
"input":{"shape":"TagResourceRequest"},
"output":{"shape":"TagResourceResult"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ServiceQuotaExceededException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/v1/untag"
},
"input":{"shape":"UntagResourceRequest"},
"output":{"shape":"UntagResourceResult"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"ThrottlingException"},
{"shape":"ValidationException"}
]
},
"UpdatePackageVersionsStatus":{
"name":"UpdatePackageVersionsStatus",
"http":{
Expand Down Expand Up @@ -549,7 +595,7 @@
},
"Arn":{
"type":"string",
"max":2048,
"max":1011,
"min":1,
"pattern":"\\S+"
},
Expand Down Expand Up @@ -701,7 +747,8 @@
"location":"querystring",
"locationName":"domain"
},
"encryptionKey":{"shape":"Arn"}
"encryptionKey":{"shape":"Arn"},
"tags":{"shape":"TagList"}
}
},
"CreateDomainResult":{
Expand Down Expand Up @@ -733,7 +780,8 @@
"locationName":"repository"
},
"description":{"shape":"Description"},
"upstreams":{"shape":"UpstreamRepositoryList"}
"upstreams":{"shape":"UpstreamRepositoryList"},
"tags":{"shape":"TagList"}
}
},
"CreateRepositoryResult":{
Expand Down Expand Up @@ -1116,7 +1164,8 @@
"createdTime":{"shape":"Timestamp"},
"encryptionKey":{"shape":"Arn"},
"repositoryCount":{"shape":"Integer"},
"assetSizeBytes":{"shape":"Long"}
"assetSizeBytes":{"shape":"Long"},
"s3BucketArn":{"shape":"Arn"}
}
},
"DomainName":{
Expand Down Expand Up @@ -1822,6 +1871,23 @@
"nextToken":{"shape":"PaginationToken"}
}
},
"ListTagsForResourceRequest":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"querystring",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceResult":{
"type":"structure",
"members":{
"tags":{"shape":"TagList"}
}
},
"Long":{"type":"long"},
"LongOptional":{"type":"long"},
"PackageDependency":{
Expand Down Expand Up @@ -2135,6 +2201,59 @@
"key":{"shape":"PackageVersion"},
"value":{"shape":"SuccessfulPackageVersionInfo"}
},
"Tag":{
"type":"structure",
"required":[
"key",
"value"
],
"members":{
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"},
"max":200,
"min":0
},
"TagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"querystring",
"locationName":"resourceArn"
},
"tags":{"shape":"TagList"}
}
},
"TagResourceResult":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"ThrottlingException":{
"type":"structure",
"required":["message"],
Expand All @@ -2150,6 +2269,26 @@
"exception":true
},
"Timestamp":{"type":"timestamp"},
"UntagResourceRequest":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"querystring",
"locationName":"resourceArn"
},
"tagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceResult":{
"type":"structure",
"members":{
}
},
"UpdatePackageVersionsStatusRequest":{
"type":"structure",
"required":[
Expand Down
85 changes: 78 additions & 7 deletions models/apis/codeartifact/2018-09-22/docs-2.json

Large diffs are not rendered by default.

41 changes: 36 additions & 5 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4209,6 +4209,13 @@
"off"
]
},
"ApplianceModeSupportValue":{
"type":"string",
"enum":[
"enable",
"disable"
]
},
"ApplySecurityGroupsToClientVpnTargetNetworkRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -6210,6 +6217,10 @@
"VpcId":{
"shape":"VpcId",
"locationName":"vpcId"
},
"SelfServicePortalUrl":{
"shape":"String",
"locationName":"selfServicePortalUrl"
}
}
},
Expand Down Expand Up @@ -6775,7 +6786,8 @@
"shape":"ClientVpnSecurityGroupIdSet",
"locationName":"SecurityGroupId"
},
"VpcId":{"shape":"VpcId"}
"VpcId":{"shape":"VpcId"},
"SelfServicePortal":{"shape":"SelfServicePortal"}
}
},
"CreateClientVpnEndpointResult":{
Expand Down Expand Up @@ -8165,7 +8177,8 @@
"type":"structure",
"members":{
"DnsSupport":{"shape":"DnsSupportValue"},
"Ipv6Support":{"shape":"Ipv6SupportValue"}
"Ipv6Support":{"shape":"Ipv6SupportValue"},
"ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
}
},
"CreateTransitGatewayVpcAttachmentResult":{
Expand Down Expand Up @@ -15137,13 +15150,18 @@
"SamlProviderArn":{
"shape":"String",
"locationName":"samlProviderArn"
},
"SelfServiceSamlProviderArn":{
"shape":"String",
"locationName":"selfServiceSamlProviderArn"
}
}
},
"FederatedAuthenticationRequest":{
"type":"structure",
"members":{
"SAMLProviderArn":{"shape":"String"}
"SAMLProviderArn":{"shape":"String"},
"SelfServiceSAMLProviderArn":{"shape":"String"}
}
},
"Filter":{
Expand Down Expand Up @@ -20967,7 +20985,8 @@
"shape":"ClientVpnSecurityGroupIdSet",
"locationName":"SecurityGroupId"
},
"VpcId":{"shape":"VpcId"}
"VpcId":{"shape":"VpcId"},
"SelfServicePortal":{"shape":"SelfServicePortal"}
}
},
"ModifyClientVpnEndpointResult":{
Expand Down Expand Up @@ -21690,7 +21709,8 @@
"type":"structure",
"members":{
"DnsSupport":{"shape":"DnsSupportValue"},
"Ipv6Support":{"shape":"Ipv6SupportValue"}
"Ipv6Support":{"shape":"Ipv6SupportValue"},
"ApplianceModeSupport":{"shape":"ApplianceModeSupportValue"}
}
},
"ModifyTransitGatewayVpcAttachmentResult":{
Expand Down Expand Up @@ -26545,6 +26565,13 @@
"locationName":"SecurityGroup"
}
},
"SelfServicePortal":{
"type":"string",
"enum":[
"enabled",
"disabled"
]
},
"SendDiagnosticInterruptRequest":{
"type":"structure",
"required":["InstanceId"],
Expand Down Expand Up @@ -29443,6 +29470,10 @@
"Ipv6Support":{
"shape":"Ipv6SupportValue",
"locationName":"ipv6Support"
},
"ApplianceModeSupport":{
"shape":"ApplianceModeSupportValue",
"locationName":"applianceModeSupport"
}
}
},
Expand Down
Loading