aws-sdk-core 2.11.598 → 2.11.603

Sign up to get free protection for your applications and to get access to all the features.
@@ -143,6 +143,15 @@
143
143
  },
144
144
  "input":{"shape":"DeleteBucketMetricsConfigurationRequest"}
145
145
  },
146
+ "DeleteBucketOwnershipControls":{
147
+ "name":"DeleteBucketOwnershipControls",
148
+ "http":{
149
+ "method":"DELETE",
150
+ "requestUri":"/{Bucket}?ownershipControls",
151
+ "responseCode":204
152
+ },
153
+ "input":{"shape":"DeleteBucketOwnershipControlsRequest"}
154
+ },
146
155
  "DeleteBucketPolicy":{
147
156
  "name":"DeleteBucketPolicy",
148
157
  "http":{
@@ -349,6 +358,15 @@
349
358
  "input":{"shape":"GetBucketNotificationConfigurationRequest"},
350
359
  "output":{"shape":"NotificationConfiguration"}
351
360
  },
361
+ "GetBucketOwnershipControls":{
362
+ "name":"GetBucketOwnershipControls",
363
+ "http":{
364
+ "method":"GET",
365
+ "requestUri":"/{Bucket}?ownershipControls"
366
+ },
367
+ "input":{"shape":"GetBucketOwnershipControlsRequest"},
368
+ "output":{"shape":"GetBucketOwnershipControlsOutput"}
369
+ },
352
370
  "GetBucketPolicy":{
353
371
  "name":"GetBucketPolicy",
354
372
  "http":{
@@ -727,6 +745,14 @@
727
745
  },
728
746
  "input":{"shape":"PutBucketNotificationConfigurationRequest"}
729
747
  },
748
+ "PutBucketOwnershipControls":{
749
+ "name":"PutBucketOwnershipControls",
750
+ "http":{
751
+ "method":"PUT",
752
+ "requestUri":"/{Bucket}?ownershipControls"
753
+ },
754
+ "input":{"shape":"PutBucketOwnershipControlsRequest"}
755
+ },
730
756
  "PutBucketPolicy":{
731
757
  "name":"PutBucketPolicy",
732
758
  "http":{
@@ -2096,6 +2122,22 @@
2096
2122
  }
2097
2123
  }
2098
2124
  },
2125
+ "DeleteBucketOwnershipControlsRequest":{
2126
+ "type":"structure",
2127
+ "required":["Bucket"],
2128
+ "members":{
2129
+ "Bucket":{
2130
+ "shape":"BucketName",
2131
+ "location":"uri",
2132
+ "locationName":"Bucket"
2133
+ },
2134
+ "ExpectedBucketOwner":{
2135
+ "shape":"AccountId",
2136
+ "location":"header",
2137
+ "locationName":"x-amz-expected-bucket-owner"
2138
+ }
2139
+ }
2140
+ },
2099
2141
  "DeleteBucketPolicyRequest":{
2100
2142
  "type":"structure",
2101
2143
  "required":["Bucket"],
@@ -2851,6 +2893,29 @@
2851
2893
  }
2852
2894
  }
2853
2895
  },
2896
+ "GetBucketOwnershipControlsOutput":{
2897
+ "type":"structure",
2898
+ "members":{
2899
+ "OwnershipControls":{"shape":"OwnershipControls"}
2900
+ },
2901
+ "payload":"OwnershipControls"
2902
+ },
2903
+ "GetBucketOwnershipControlsRequest":{
2904
+ "type":"structure",
2905
+ "required":["Bucket"],
2906
+ "members":{
2907
+ "Bucket":{
2908
+ "shape":"BucketName",
2909
+ "location":"uri",
2910
+ "locationName":"Bucket"
2911
+ },
2912
+ "ExpectedBucketOwner":{
2913
+ "shape":"AccountId",
2914
+ "location":"header",
2915
+ "locationName":"x-amz-expected-bucket-owner"
2916
+ }
2917
+ }
2918
+ },
2854
2919
  "GetBucketPolicyOutput":{
2855
2920
  "type":"structure",
2856
2921
  "members":{
@@ -4873,6 +4938,13 @@
4873
4938
  },
4874
4939
  "exception":true
4875
4940
  },
4941
+ "ObjectOwnership":{
4942
+ "type":"string",
4943
+ "enum":[
4944
+ "BucketOwnerPreferred",
4945
+ "ObjectWriter"
4946
+ ]
4947
+ },
4876
4948
  "ObjectStorageClass":{
4877
4949
  "type":"string",
4878
4950
  "enum":[
@@ -4933,6 +5005,28 @@
4933
5005
  "type":"string",
4934
5006
  "enum":["Destination"]
4935
5007
  },
5008
+ "OwnershipControls":{
5009
+ "type":"structure",
5010
+ "required":["Rules"],
5011
+ "members":{
5012
+ "Rules":{
5013
+ "shape":"OwnershipControlsRules",
5014
+ "locationName":"Rule"
5015
+ }
5016
+ }
5017
+ },
5018
+ "OwnershipControlsRule":{
5019
+ "type":"structure",
5020
+ "required":["ObjectOwnership"],
5021
+ "members":{
5022
+ "ObjectOwnership":{"shape":"ObjectOwnership"}
5023
+ }
5024
+ },
5025
+ "OwnershipControlsRules":{
5026
+ "type":"list",
5027
+ "member":{"shape":"OwnershipControlsRule"},
5028
+ "flattened":true
5029
+ },
4936
5030
  "ParquetInput":{
4937
5031
  "type":"structure",
4938
5032
  "members":{
@@ -5411,6 +5505,36 @@
5411
5505
  },
5412
5506
  "payload":"NotificationConfiguration"
5413
5507
  },
5508
+ "PutBucketOwnershipControlsRequest":{
5509
+ "type":"structure",
5510
+ "required":[
5511
+ "Bucket",
5512
+ "OwnershipControls"
5513
+ ],
5514
+ "members":{
5515
+ "Bucket":{
5516
+ "shape":"BucketName",
5517
+ "location":"uri",
5518
+ "locationName":"Bucket"
5519
+ },
5520
+ "ContentMD5":{
5521
+ "shape":"ContentMD5",
5522
+ "location":"header",
5523
+ "locationName":"Content-MD5"
5524
+ },
5525
+ "ExpectedBucketOwner":{
5526
+ "shape":"AccountId",
5527
+ "location":"header",
5528
+ "locationName":"x-amz-expected-bucket-owner"
5529
+ },
5530
+ "OwnershipControls":{
5531
+ "shape":"OwnershipControls",
5532
+ "locationName":"OwnershipControls",
5533
+ "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
5534
+ }
5535
+ },
5536
+ "payload":"OwnershipControls"
5537
+ },
5414
5538
  "PutBucketPolicyRequest":{
5415
5539
  "type":"structure",
5416
5540
  "required":[
@@ -1702,6 +1702,13 @@
1702
1702
  "max":63,
1703
1703
  "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1704
1704
  },
1705
+ "AppNetworkAccessType":{
1706
+ "type":"string",
1707
+ "enum":[
1708
+ "PublicInternetOnly",
1709
+ "VpcOnly"
1710
+ ]
1711
+ },
1705
1712
  "AppSortKey":{
1706
1713
  "type":"string",
1707
1714
  "enum":["CreationTime"]
@@ -2690,7 +2697,8 @@
2690
2697
  "SubnetIds":{"shape":"Subnets"},
2691
2698
  "VpcId":{"shape":"VpcId"},
2692
2699
  "Tags":{"shape":"TagList"},
2693
- "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"}
2700
+ "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"},
2701
+ "AppNetworkAccessType":{"shape":"AppNetworkAccessType"}
2694
2702
  }
2695
2703
  },
2696
2704
  "CreateDomainResponse":{
@@ -3711,7 +3719,8 @@
3711
3719
  "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"},
3712
3720
  "SubnetIds":{"shape":"Subnets"},
3713
3721
  "Url":{"shape":"String1024"},
3714
- "VpcId":{"shape":"VpcId"}
3722
+ "VpcId":{"shape":"VpcId"},
3723
+ "AppNetworkAccessType":{"shape":"AppNetworkAccessType"}
3715
3724
  }
3716
3725
  },
3717
3726
  "DescribeEndpointConfigInput":{
@@ -516,6 +516,7 @@
516
516
  "ServiceName":{"shape":"ServiceName"},
517
517
  "MaxResults":{"shape":"DiscoverMaxResults"},
518
518
  "QueryParameters":{"shape":"Attributes"},
519
+ "OptionalParameters":{"shape":"Attributes"},
519
520
  "HealthStatus":{"shape":"HealthStatusFilter"}
520
521
  }
521
522
  },
@@ -1957,7 +1957,9 @@
1957
1957
  },
1958
1958
  "PolicyString":{
1959
1959
  "type":"string",
1960
- "min":1
1960
+ "max":395000,
1961
+ "min":1,
1962
+ "pattern":".*\\S.*"
1961
1963
  },
1962
1964
  "PopulationSize":{"type":"long"},
1963
1965
  "PositionalConstraint":{
@@ -2108,7 +2110,8 @@
2108
2110
  "type":"string",
2109
2111
  "enum":[
2110
2112
  "APPLICATION_LOAD_BALANCER",
2111
- "API_GATEWAY"
2113
+ "API_GATEWAY",
2114
+ "APPSYNC"
2112
2115
  ]
2113
2116
  },
2114
2117
  "Rule":{
@@ -3862,6 +3862,7 @@
3862
3862
  "ca-central-1" : { },
3863
3863
  "eu-central-1" : { },
3864
3864
  "eu-north-1" : { },
3865
+ "eu-south-1" : { },
3865
3866
  "eu-west-1" : { },
3866
3867
  "eu-west-2" : { },
3867
3868
  "eu-west-3" : { },
@@ -5342,6 +5343,7 @@
5342
5343
  "ca-central-1" : { },
5343
5344
  "eu-central-1" : { },
5344
5345
  "eu-north-1" : { },
5346
+ "eu-south-1" : { },
5345
5347
  "eu-west-1" : { },
5346
5348
  "eu-west-2" : { },
5347
5349
  "eu-west-3" : { },
@@ -6917,6 +6919,12 @@
6917
6919
  "cn-northwest-1" : { }
6918
6920
  }
6919
6921
  },
6922
+ "resource-groups" : {
6923
+ "endpoints" : {
6924
+ "cn-north-1" : { },
6925
+ "cn-northwest-1" : { }
6926
+ }
6927
+ },
6920
6928
  "route53" : {
6921
6929
  "endpoints" : {
6922
6930
  "aws-cn-global" : {
@@ -8101,6 +8109,12 @@
8101
8109
  }
8102
8110
  },
8103
8111
  "endpoints" : {
8112
+ "fips-us-gov-west-1" : {
8113
+ "credentialScope" : {
8114
+ "region" : "us-gov-west-1"
8115
+ },
8116
+ "hostname" : "pinpoint.us-gov-west-1.amazonaws.com"
8117
+ },
8104
8118
  "us-gov-west-1" : { }
8105
8119
  }
8106
8120
  },
@@ -8573,6 +8587,18 @@
8573
8587
  },
8574
8588
  "transfer" : {
8575
8589
  "endpoints" : {
8590
+ "fips-us-gov-east-1" : {
8591
+ "credentialScope" : {
8592
+ "region" : "us-gov-east-1"
8593
+ },
8594
+ "hostname" : "transfer-fips.us-gov-east-1.amazonaws.com"
8595
+ },
8596
+ "fips-us-gov-west-1" : {
8597
+ "credentialScope" : {
8598
+ "region" : "us-gov-west-1"
8599
+ },
8600
+ "hostname" : "transfer-fips.us-gov-west-1.amazonaws.com"
8601
+ },
8576
8602
  "us-gov-east-1" : { },
8577
8603
  "us-gov-west-1" : { }
8578
8604
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.598'
2
+ VERSION = '2.11.603'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.598
4
+ version: 2.11.603
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-30 00:00:00.000000000 Z
11
+ date: 2020-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath