aws-sdk-core 2.11.258 → 2.11.259

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc09aa792dd9e01f21aa74617f3929d38a277eac
4
- data.tar.gz: 9f411af46ceee0ebbcb90ebf2b2b49cc28124891
3
+ metadata.gz: 19e2a9bdcd5df14982d849873a7f8edcef734e35
4
+ data.tar.gz: d01fb18a22f89762ebc77ff46e594b884cdfc037
5
5
  SHA512:
6
- metadata.gz: ed2f9bea0448290a516815c48a9d8d482bbd86d0e9169ce346b196aced9c2f803b902f68fd6e44a909bd7e82df42b930d203e9b71f9f4e341abd969fb088e7c5
7
- data.tar.gz: f0dd969004fabf451502eb5e42b51b52ec866ae3667b25a6c98294bb800cb79eaf038d19df450f97ce989c4f0d08e509f8c98366c22f03a8d598c418e755c3fc
6
+ metadata.gz: 0d418e0a7161dba095f2a860bc8bae87c8024cde4989512e6a3658857328d4715da4a62a0ae29ac1d018540db163bb590a21fd3c6b0a9a4eeed67cf82bfc1513
7
+ data.tar.gz: 5da35facadb588328658c8759c92f34de011c6b47c9788b9c7e88d29cdafa6fc8ad96beb4b0c0d42762514edc5124fc88de9b98cc99602e091d983ada0473ab4
@@ -501,7 +501,8 @@
501
501
  "type":"string",
502
502
  "enum":[
503
503
  "NOT_FOUND",
504
- "INTERNAL_SERVER_ERROR"
504
+ "INTERNAL_SERVER_ERROR",
505
+ "OVER_LIMIT"
505
506
  ]
506
507
  },
507
508
  "BatchDeleteImportDataErrorDescription":{"type":"string"},
@@ -979,13 +980,15 @@
979
980
  "enum":[
980
981
  "IMPORT_IN_PROGRESS",
981
982
  "IMPORT_COMPLETE",
983
+ "IMPORT_COMPLETE_WITH_ERRORS",
982
984
  "IMPORT_FAILED",
983
985
  "IMPORT_FAILED_SERVER_LIMIT_EXCEEDED",
984
986
  "IMPORT_FAILED_RECORD_LIMIT_EXCEEDED",
985
987
  "DELETE_IN_PROGRESS",
986
988
  "DELETE_COMPLETE",
987
989
  "DELETE_FAILED",
988
- "DELETE_FAILED_LIMIT_EXCEEDED"
990
+ "DELETE_FAILED_LIMIT_EXCEEDED",
991
+ "INTERNAL_ERROR"
989
992
  ]
990
993
  },
991
994
  "ImportTask":{
@@ -159,6 +159,63 @@
159
159
  }, {
160
160
  "shape" : "ForbiddenException"
161
161
  } ]
162
+ },
163
+ "ListTagsForResource" : {
164
+ "name" : "ListTagsForResource",
165
+ "http" : {
166
+ "method" : "GET",
167
+ "requestUri" : "/v1/tags/{resourceArn}",
168
+ "responseCode" : 200
169
+ },
170
+ "input" : {
171
+ "shape" : "ListTagsForResourceRequest"
172
+ },
173
+ "output" : {
174
+ "shape" : "ListTagsForResourceResponse"
175
+ },
176
+ "errors" : [ {
177
+ "shape" : "NotFoundException"
178
+ }, {
179
+ "shape" : "BadRequestException"
180
+ }, {
181
+ "shape" : "InternalServerErrorException"
182
+ } ]
183
+ },
184
+ "TagResource" : {
185
+ "name" : "TagResource",
186
+ "http" : {
187
+ "method" : "POST",
188
+ "requestUri" : "/v1/tags/{resourceArn}",
189
+ "responseCode" : 204
190
+ },
191
+ "input" : {
192
+ "shape" : "TagResourceRequest"
193
+ },
194
+ "errors" : [ {
195
+ "shape" : "NotFoundException"
196
+ }, {
197
+ "shape" : "BadRequestException"
198
+ }, {
199
+ "shape" : "InternalServerErrorException"
200
+ } ]
201
+ },
202
+ "UntagResource" : {
203
+ "name" : "UntagResource",
204
+ "http" : {
205
+ "method" : "DELETE",
206
+ "requestUri" : "/v1/tags/{resourceArn}",
207
+ "responseCode" : 204
208
+ },
209
+ "input" : {
210
+ "shape" : "UntagResourceRequest"
211
+ },
212
+ "errors" : [ {
213
+ "shape" : "NotFoundException"
214
+ }, {
215
+ "shape" : "BadRequestException"
216
+ }, {
217
+ "shape" : "InternalServerErrorException"
218
+ } ]
162
219
  }
163
220
  },
164
221
  "shapes" : {
@@ -583,6 +640,26 @@
583
640
  }
584
641
  }
585
642
  },
643
+ "ListTagsForResourceRequest" : {
644
+ "type" : "structure",
645
+ "members" : {
646
+ "ResourceArn" : {
647
+ "shape" : "__string",
648
+ "location" : "uri",
649
+ "locationName" : "resourceArn"
650
+ }
651
+ },
652
+ "required" : [ "ResourceArn" ]
653
+ },
654
+ "ListTagsForResourceResponse" : {
655
+ "type" : "structure",
656
+ "members" : {
657
+ "Tags" : {
658
+ "shape" : "__mapOf__string",
659
+ "locationName" : "tags"
660
+ }
661
+ }
662
+ },
586
663
  "MaxResults" : {
587
664
  "type" : "integer",
588
665
  "min" : 1,
@@ -664,6 +741,21 @@
664
741
  }
665
742
  }
666
743
  },
744
+ "TagResourceRequest" : {
745
+ "type" : "structure",
746
+ "members" : {
747
+ "ResourceArn" : {
748
+ "shape" : "__string",
749
+ "location" : "uri",
750
+ "locationName" : "resourceArn"
751
+ },
752
+ "Tags" : {
753
+ "shape" : "__mapOf__string",
754
+ "locationName" : "tags"
755
+ }
756
+ },
757
+ "required" : [ "ResourceArn", "Tags" ]
758
+ },
667
759
  "TooManyRequestsException" : {
668
760
  "type" : "structure",
669
761
  "members" : {
@@ -698,6 +790,22 @@
698
790
  "httpStatusCode" : 401
699
791
  }
700
792
  },
793
+ "UntagResourceRequest" : {
794
+ "type" : "structure",
795
+ "members" : {
796
+ "ResourceArn" : {
797
+ "shape" : "__string",
798
+ "location" : "uri",
799
+ "locationName" : "resourceArn"
800
+ },
801
+ "TagKeys" : {
802
+ "shape" : "__listOf__string",
803
+ "location" : "querystring",
804
+ "locationName" : "tagKeys"
805
+ }
806
+ },
807
+ "required" : [ "TagKeys", "ResourceArn" ]
808
+ },
701
809
  "ZookeeperNodeInfo" : {
702
810
  "type" : "structure",
703
811
  "members" : {
@@ -759,6 +867,15 @@
759
867
  "__long" : {
760
868
  "type" : "long"
761
869
  },
870
+ "__mapOf__string" : {
871
+ "type" : "map",
872
+ "key" : {
873
+ "shape" : "__string"
874
+ },
875
+ "value" : {
876
+ "shape" : "__string"
877
+ }
878
+ },
762
879
  "__string" : {
763
880
  "type" : "string"
764
881
  },
@@ -91,7 +91,28 @@
91
91
  {"shape":"InvalidInputException"},
92
92
  {"shape":"FinalizingOrganizationException"},
93
93
  {"shape":"ServiceException"},
94
- {"shape":"TooManyRequestsException"}
94
+ {"shape":"TooManyRequestsException"},
95
+ {"shape":"UnsupportedAPIEndpointException"}
96
+ ]
97
+ },
98
+ "CreateGovCloudAccount":{
99
+ "name":"CreateGovCloudAccount",
100
+ "http":{
101
+ "method":"POST",
102
+ "requestUri":"/"
103
+ },
104
+ "input":{"shape":"CreateGovCloudAccountRequest"},
105
+ "output":{"shape":"CreateGovCloudAccountResponse"},
106
+ "errors":[
107
+ {"shape":"AccessDeniedException"},
108
+ {"shape":"AWSOrganizationsNotInUseException"},
109
+ {"shape":"ConcurrentModificationException"},
110
+ {"shape":"ConstraintViolationException"},
111
+ {"shape":"InvalidInputException"},
112
+ {"shape":"FinalizingOrganizationException"},
113
+ {"shape":"ServiceException"},
114
+ {"shape":"TooManyRequestsException"},
115
+ {"shape":"UnsupportedAPIEndpointException"}
95
116
  ]
96
117
  },
97
118
  "CreateOrganization":{
@@ -256,7 +277,8 @@
256
277
  {"shape":"CreateAccountStatusNotFoundException"},
257
278
  {"shape":"InvalidInputException"},
258
279
  {"shape":"ServiceException"},
259
- {"shape":"TooManyRequestsException"}
280
+ {"shape":"TooManyRequestsException"},
281
+ {"shape":"UnsupportedAPIEndpointException"}
260
282
  ]
261
283
  },
262
284
  "DescribeHandshake":{
@@ -557,7 +579,8 @@
557
579
  {"shape":"AWSOrganizationsNotInUseException"},
558
580
  {"shape":"InvalidInputException"},
559
581
  {"shape":"ServiceException"},
560
- {"shape":"TooManyRequestsException"}
582
+ {"shape":"TooManyRequestsException"},
583
+ {"shape":"UnsupportedAPIEndpointException"}
561
584
  ]
562
585
  },
563
586
  "ListHandshakesForAccount":{
@@ -975,7 +998,9 @@
975
998
  "ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED",
976
999
  "MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE",
977
1000
  "MASTER_ACCOUNT_MISSING_CONTACT_INFO",
1001
+ "MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED",
978
1002
  "ORGANIZATION_NOT_IN_ALL_FEATURES_MODE",
1003
+ "CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION",
979
1004
  "EMAIL_VERIFICATION_CODE_EXPIRED",
980
1005
  "WAIT_PERIOD_ACTIVE"
981
1006
  ]
@@ -1035,6 +1060,7 @@
1035
1060
  "RequestedTimestamp":{"shape":"Timestamp"},
1036
1061
  "CompletedTimestamp":{"shape":"Timestamp"},
1037
1062
  "AccountId":{"shape":"AccountId"},
1063
+ "GovCloudAccountId":{"shape":"AccountId"},
1038
1064
  "FailureReason":{"shape":"CreateAccountFailureReason"}
1039
1065
  }
1040
1066
  },
@@ -1049,6 +1075,25 @@
1049
1075
  "type":"list",
1050
1076
  "member":{"shape":"CreateAccountStatus"}
1051
1077
  },
1078
+ "CreateGovCloudAccountRequest":{
1079
+ "type":"structure",
1080
+ "required":[
1081
+ "Email",
1082
+ "AccountName"
1083
+ ],
1084
+ "members":{
1085
+ "Email":{"shape":"Email"},
1086
+ "AccountName":{"shape":"AccountName"},
1087
+ "RoleName":{"shape":"RoleName"},
1088
+ "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"}
1089
+ }
1090
+ },
1091
+ "CreateGovCloudAccountResponse":{
1092
+ "type":"structure",
1093
+ "members":{
1094
+ "CreateAccountStatus":{"shape":"CreateAccountStatus"}
1095
+ }
1096
+ },
1052
1097
  "CreateOrganizationRequest":{
1053
1098
  "type":"structure",
1054
1099
  "members":{
@@ -2103,6 +2148,13 @@
2103
2148
  },
2104
2149
  "exception":true
2105
2150
  },
2151
+ "UnsupportedAPIEndpointException":{
2152
+ "type":"structure",
2153
+ "members":{
2154
+ "Message":{"shape":"ExceptionMessage"}
2155
+ },
2156
+ "exception":true
2157
+ },
2106
2158
  "UpdateOrganizationalUnitRequest":{
2107
2159
  "type":"structure",
2108
2160
  "required":["OrganizationalUnitId"],
@@ -6123,7 +6123,8 @@
6123
6123
  "MinCapacity":{"shape":"IntegerOptional"},
6124
6124
  "MaxCapacity":{"shape":"IntegerOptional"},
6125
6125
  "AutoPause":{"shape":"BooleanOptional"},
6126
- "SecondsUntilAutoPause":{"shape":"IntegerOptional"}
6126
+ "SecondsUntilAutoPause":{"shape":"IntegerOptional"},
6127
+ "TimeoutAction":{"shape":"String"}
6127
6128
  }
6128
6129
  },
6129
6130
  "ScalingConfigurationInfo":{
@@ -6132,7 +6133,8 @@
6132
6133
  "MinCapacity":{"shape":"IntegerOptional"},
6133
6134
  "MaxCapacity":{"shape":"IntegerOptional"},
6134
6135
  "AutoPause":{"shape":"BooleanOptional"},
6135
- "SecondsUntilAutoPause":{"shape":"IntegerOptional"}
6136
+ "SecondsUntilAutoPause":{"shape":"IntegerOptional"},
6137
+ "TimeoutAction":{"shape":"String"}
6136
6138
  }
6137
6139
  },
6138
6140
  "SharedSnapshotQuotaExceededFault":{
@@ -13,6 +13,23 @@
13
13
  "uid":"worklink-2018-09-25"
14
14
  },
15
15
  "operations":{
16
+ "AssociateDomain":{
17
+ "name":"AssociateDomain",
18
+ "http":{
19
+ "method":"POST",
20
+ "requestUri":"/associateDomain"
21
+ },
22
+ "input":{"shape":"AssociateDomainRequest"},
23
+ "output":{"shape":"AssociateDomainResponse"},
24
+ "errors":[
25
+ {"shape":"UnauthorizedException"},
26
+ {"shape":"InternalServerErrorException"},
27
+ {"shape":"InvalidRequestException"},
28
+ {"shape":"ResourceNotFoundException"},
29
+ {"shape":"ResourceAlreadyExistsException"},
30
+ {"shape":"TooManyRequestsException"}
31
+ ]
32
+ },
16
33
  "AssociateWebsiteCertificateAuthority":{
17
34
  "name":"AssociateWebsiteCertificateAuthority",
18
35
  "http":{
@@ -127,6 +144,22 @@
127
144
  {"shape":"TooManyRequestsException"}
128
145
  ]
129
146
  },
147
+ "DescribeDomain":{
148
+ "name":"DescribeDomain",
149
+ "http":{
150
+ "method":"POST",
151
+ "requestUri":"/describeDomain"
152
+ },
153
+ "input":{"shape":"DescribeDomainRequest"},
154
+ "output":{"shape":"DescribeDomainResponse"},
155
+ "errors":[
156
+ {"shape":"UnauthorizedException"},
157
+ {"shape":"InternalServerErrorException"},
158
+ {"shape":"InvalidRequestException"},
159
+ {"shape":"ResourceNotFoundException"},
160
+ {"shape":"TooManyRequestsException"}
161
+ ]
162
+ },
130
163
  "DescribeFleetMetadata":{
131
164
  "name":"DescribeFleetMetadata",
132
165
  "http":{
@@ -175,6 +208,22 @@
175
208
  {"shape":"TooManyRequestsException"}
176
209
  ]
177
210
  },
211
+ "DisassociateDomain":{
212
+ "name":"DisassociateDomain",
213
+ "http":{
214
+ "method":"POST",
215
+ "requestUri":"/disassociateDomain"
216
+ },
217
+ "input":{"shape":"DisassociateDomainRequest"},
218
+ "output":{"shape":"DisassociateDomainResponse"},
219
+ "errors":[
220
+ {"shape":"UnauthorizedException"},
221
+ {"shape":"InternalServerErrorException"},
222
+ {"shape":"InvalidRequestException"},
223
+ {"shape":"ResourceNotFoundException"},
224
+ {"shape":"TooManyRequestsException"}
225
+ ]
226
+ },
178
227
  "DisassociateWebsiteCertificateAuthority":{
179
228
  "name":"DisassociateWebsiteCertificateAuthority",
180
229
  "http":{
@@ -207,6 +256,21 @@
207
256
  {"shape":"TooManyRequestsException"}
208
257
  ]
209
258
  },
259
+ "ListDomains":{
260
+ "name":"ListDomains",
261
+ "http":{
262
+ "method":"POST",
263
+ "requestUri":"/listDomains"
264
+ },
265
+ "input":{"shape":"ListDomainsRequest"},
266
+ "output":{"shape":"ListDomainsResponse"},
267
+ "errors":[
268
+ {"shape":"UnauthorizedException"},
269
+ {"shape":"InternalServerErrorException"},
270
+ {"shape":"InvalidRequestException"},
271
+ {"shape":"TooManyRequestsException"}
272
+ ]
273
+ },
210
274
  "ListFleets":{
211
275
  "name":"ListFleets",
212
276
  "http":{
@@ -237,6 +301,38 @@
237
301
  {"shape":"TooManyRequestsException"}
238
302
  ]
239
303
  },
304
+ "RestoreDomainAccess":{
305
+ "name":"RestoreDomainAccess",
306
+ "http":{
307
+ "method":"POST",
308
+ "requestUri":"/restoreDomainAccess"
309
+ },
310
+ "input":{"shape":"RestoreDomainAccessRequest"},
311
+ "output":{"shape":"RestoreDomainAccessResponse"},
312
+ "errors":[
313
+ {"shape":"UnauthorizedException"},
314
+ {"shape":"InternalServerErrorException"},
315
+ {"shape":"InvalidRequestException"},
316
+ {"shape":"ResourceNotFoundException"},
317
+ {"shape":"TooManyRequestsException"}
318
+ ]
319
+ },
320
+ "RevokeDomainAccess":{
321
+ "name":"RevokeDomainAccess",
322
+ "http":{
323
+ "method":"POST",
324
+ "requestUri":"/revokeDomainAccess"
325
+ },
326
+ "input":{"shape":"RevokeDomainAccessRequest"},
327
+ "output":{"shape":"RevokeDomainAccessResponse"},
328
+ "errors":[
329
+ {"shape":"UnauthorizedException"},
330
+ {"shape":"InternalServerErrorException"},
331
+ {"shape":"InvalidRequestException"},
332
+ {"shape":"ResourceNotFoundException"},
333
+ {"shape":"TooManyRequestsException"}
334
+ ]
335
+ },
240
336
  "SignOutUser":{
241
337
  "name":"SignOutUser",
242
338
  "http":{
@@ -301,6 +397,22 @@
301
397
  {"shape":"TooManyRequestsException"}
302
398
  ]
303
399
  },
400
+ "UpdateDomainMetadata":{
401
+ "name":"UpdateDomainMetadata",
402
+ "http":{
403
+ "method":"POST",
404
+ "requestUri":"/updateDomainMetadata"
405
+ },
406
+ "input":{"shape":"UpdateDomainMetadataRequest"},
407
+ "output":{"shape":"UpdateDomainMetadataResponse"},
408
+ "errors":[
409
+ {"shape":"UnauthorizedException"},
410
+ {"shape":"InternalServerErrorException"},
411
+ {"shape":"InvalidRequestException"},
412
+ {"shape":"ResourceNotFoundException"},
413
+ {"shape":"TooManyRequestsException"}
414
+ ]
415
+ },
304
416
  "UpdateFleetMetadata":{
305
417
  "name":"UpdateFleetMetadata",
306
418
  "http":{
@@ -335,6 +447,29 @@
335
447
  }
336
448
  },
337
449
  "shapes":{
450
+ "AcmCertificateArn":{
451
+ "type":"string",
452
+ "pattern":"arn:[\\w+=/,.@-]+:[\\w+=/,.@-]+:[\\w+=/,.@-]*:[0-9]+:[\\w+=,.@-]+(/[\\w+=/,.@-]+)*"
453
+ },
454
+ "AssociateDomainRequest":{
455
+ "type":"structure",
456
+ "required":[
457
+ "FleetArn",
458
+ "DomainName",
459
+ "AcmCertificateArn"
460
+ ],
461
+ "members":{
462
+ "FleetArn":{"shape":"FleetArn"},
463
+ "DomainName":{"shape":"DomainName"},
464
+ "AcmCertificateArn":{"shape":"AcmCertificateArn"},
465
+ "DisplayName":{"shape":"DisplayName"}
466
+ }
467
+ },
468
+ "AssociateDomainResponse":{
469
+ "type":"structure",
470
+ "members":{
471
+ }
472
+ },
338
473
  "AssociateWebsiteCertificateAuthorityRequest":{
339
474
  "type":"structure",
340
475
  "required":[
@@ -466,6 +601,25 @@
466
601
  "Username":{"shape":"Username"}
467
602
  }
468
603
  },
604
+ "DescribeDomainRequest":{
605
+ "type":"structure",
606
+ "required":[
607
+ "FleetArn",
608
+ "DomainName"
609
+ ],
610
+ "members":{
611
+ "FleetArn":{"shape":"FleetArn"},
612
+ "DomainName":{"shape":"DomainName"}
613
+ }
614
+ },
615
+ "DescribeDomainResponse":{
616
+ "type":"structure",
617
+ "members":{
618
+ "DisplayName":{"shape":"DisplayName"},
619
+ "CreatedTime":{"shape":"DateTime"},
620
+ "DomainStatus":{"shape":"DomainStatus"}
621
+ }
622
+ },
469
623
  "DescribeFleetMetadataRequest":{
470
624
  "type":"structure",
471
625
  "required":["FleetArn"],
@@ -562,6 +716,22 @@
562
716
  "type":"list",
563
717
  "member":{"shape":"DeviceSummary"}
564
718
  },
719
+ "DisassociateDomainRequest":{
720
+ "type":"structure",
721
+ "required":[
722
+ "FleetArn",
723
+ "DomainName"
724
+ ],
725
+ "members":{
726
+ "FleetArn":{"shape":"FleetArn"},
727
+ "DomainName":{"shape":"DomainName"}
728
+ }
729
+ },
730
+ "DisassociateDomainResponse":{
731
+ "type":"structure",
732
+ "members":{
733
+ }
734
+ },
565
735
  "DisassociateWebsiteCertificateAuthorityRequest":{
566
736
  "type":"structure",
567
737
  "required":[
@@ -582,6 +752,43 @@
582
752
  "type":"string",
583
753
  "max":100
584
754
  },
755
+ "DomainName":{
756
+ "type":"string",
757
+ "max":64,
758
+ "min":1,
759
+ "pattern":"^[a-zA-Z0-9]?((?!-)([A-Za-z0-9-]*[A-Za-z0-9])\\.)+[a-zA-Z0-9]+$"
760
+ },
761
+ "DomainStatus":{
762
+ "type":"string",
763
+ "enum":[
764
+ "PENDING_VALIDATION",
765
+ "ASSOCIATING",
766
+ "ACTIVE",
767
+ "INACTIVE",
768
+ "DISASSOCIATING",
769
+ "DISASSOCIATED",
770
+ "FAILED_TO_ASSOCIATE",
771
+ "FAILED_TO_DISASSOCIATE"
772
+ ]
773
+ },
774
+ "DomainSummary":{
775
+ "type":"structure",
776
+ "required":[
777
+ "DomainName",
778
+ "CreatedTime",
779
+ "DomainStatus"
780
+ ],
781
+ "members":{
782
+ "DomainName":{"shape":"DomainName"},
783
+ "CreatedTime":{"shape":"DateTime"},
784
+ "DomainStatus":{"shape":"DomainStatus"},
785
+ "DisplayName":{"shape":"DisplayName"}
786
+ }
787
+ },
788
+ "DomainSummaryList":{
789
+ "type":"list",
790
+ "member":{"shape":"DomainSummary"}
791
+ },
585
792
  "ExceptionMessage":{"type":"string"},
586
793
  "FleetArn":{
587
794
  "type":"string",
@@ -662,6 +869,22 @@
662
869
  "NextToken":{"shape":"NextToken"}
663
870
  }
664
871
  },
872
+ "ListDomainsRequest":{
873
+ "type":"structure",
874
+ "required":["FleetArn"],
875
+ "members":{
876
+ "FleetArn":{"shape":"FleetArn"},
877
+ "NextToken":{"shape":"NextToken"},
878
+ "MaxResults":{"shape":"MaxResults"}
879
+ }
880
+ },
881
+ "ListDomainsResponse":{
882
+ "type":"structure",
883
+ "members":{
884
+ "Domains":{"shape":"DomainSummaryList"},
885
+ "NextToken":{"shape":"NextToken"}
886
+ }
887
+ },
665
888
  "ListFleetsRequest":{
666
889
  "type":"structure",
667
890
  "members":{
@@ -718,6 +941,38 @@
718
941
  "error":{"httpStatusCode":404},
719
942
  "exception":true
720
943
  },
944
+ "RestoreDomainAccessRequest":{
945
+ "type":"structure",
946
+ "required":[
947
+ "FleetArn",
948
+ "DomainName"
949
+ ],
950
+ "members":{
951
+ "FleetArn":{"shape":"FleetArn"},
952
+ "DomainName":{"shape":"DomainName"}
953
+ }
954
+ },
955
+ "RestoreDomainAccessResponse":{
956
+ "type":"structure",
957
+ "members":{
958
+ }
959
+ },
960
+ "RevokeDomainAccessRequest":{
961
+ "type":"structure",
962
+ "required":[
963
+ "FleetArn",
964
+ "DomainName"
965
+ ],
966
+ "members":{
967
+ "FleetArn":{"shape":"FleetArn"},
968
+ "DomainName":{"shape":"DomainName"}
969
+ }
970
+ },
971
+ "RevokeDomainAccessResponse":{
972
+ "type":"structure",
973
+ "members":{
974
+ }
975
+ },
721
976
  "SamlMetadata":{
722
977
  "type":"string",
723
978
  "max":204800,
@@ -817,6 +1072,23 @@
817
1072
  "members":{
818
1073
  }
819
1074
  },
1075
+ "UpdateDomainMetadataRequest":{
1076
+ "type":"structure",
1077
+ "required":[
1078
+ "FleetArn",
1079
+ "DomainName"
1080
+ ],
1081
+ "members":{
1082
+ "FleetArn":{"shape":"FleetArn"},
1083
+ "DomainName":{"shape":"DomainName"},
1084
+ "DisplayName":{"shape":"DisplayName"}
1085
+ }
1086
+ },
1087
+ "UpdateDomainMetadataResponse":{
1088
+ "type":"structure",
1089
+ "members":{
1090
+ }
1091
+ },
820
1092
  "UpdateFleetMetadataRequest":{
821
1093
  "type":"structure",
822
1094
  "required":["FleetArn"],
@@ -5,6 +5,11 @@
5
5
  "output_token": "NextToken",
6
6
  "limit_key": "MaxResults"
7
7
  },
8
+ "ListDomains": {
9
+ "input_token": "NextToken",
10
+ "output_token": "NextToken",
11
+ "limit_key": "MaxResults"
12
+ },
8
13
  "ListFleets": {
9
14
  "input_token": "NextToken",
10
15
  "output_token": "NextToken",
@@ -2512,6 +2512,7 @@
2512
2512
  "ap-southeast-2" : { },
2513
2513
  "ca-central-1" : { },
2514
2514
  "eu-central-1" : { },
2515
+ "eu-north-1" : { },
2515
2516
  "eu-west-1" : { },
2516
2517
  "eu-west-2" : { },
2517
2518
  "eu-west-3" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.258'
2
+ VERSION = '2.11.259'
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.258
4
+ version: 2.11.259
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: 2019-04-17 00:00:00.000000000 Z
11
+ date: 2019-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath