aws-sdk-core 2.11.267 → 2.11.268

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: 2d51bdd052351207949d91c9c6bb49a6b313aa40
4
- data.tar.gz: 4dae0259af808edec37a5f5fd1ec5f6117a1c877
3
+ metadata.gz: 77afde5356943bd3c2cc83841f4106b1901da635
4
+ data.tar.gz: 1f8d447f21e1c6275abe37873020c97db0303f4d
5
5
  SHA512:
6
- metadata.gz: c66aceb541c796be97f5b25858dd5bd3547b123f66679615ec1973e4e0a5110295266b9dba25c71ca8ee0a25972dc4ebdf36115b5cd35bd9dd90e07e58287155
7
- data.tar.gz: 54b008d2a9a5d79e185454b6aec977f1e7013a97e7efe0b954c18d303a17be92833087fc1da657d611b87101681bf1827b91cb8b08a0db6321875ee56686f4a7
6
+ metadata.gz: 4d893f83dc63df97ca2f25b179037d127c84db255c7bcf301f6b8376854e0581cd524e85425cace289b9d313ddfbb51bbf28b536cfe5b1b6ff7b0504c5fd90f7
7
+ data.tar.gz: 52eb579de3cc2b4cd7e3a3df07c29d357e9ddf1fd234f269b2f30562d96be831c10039d889e7bfca41f989479d17643f18b661e15efd775d8a9d10ba5102d46d
@@ -415,6 +415,24 @@
415
415
  {"shape":"InternalErrorException"}
416
416
  ]
417
417
  },
418
+ "AdminSetUserPassword":{
419
+ "name":"AdminSetUserPassword",
420
+ "http":{
421
+ "method":"POST",
422
+ "requestUri":"/"
423
+ },
424
+ "input":{"shape":"AdminSetUserPasswordRequest"},
425
+ "output":{"shape":"AdminSetUserPasswordResponse"},
426
+ "errors":[
427
+ {"shape":"ResourceNotFoundException"},
428
+ {"shape":"NotAuthorizedException"},
429
+ {"shape":"UserNotFoundException"},
430
+ {"shape":"InternalErrorException"},
431
+ {"shape":"TooManyRequestsException"},
432
+ {"shape":"InvalidParameterException"},
433
+ {"shape":"InvalidPasswordException"}
434
+ ]
435
+ },
418
436
  "AdminSetUserSettings":{
419
437
  "name":"AdminSetUserSettings",
420
438
  "http":{
@@ -2297,6 +2315,25 @@
2297
2315
  "members":{
2298
2316
  }
2299
2317
  },
2318
+ "AdminSetUserPasswordRequest":{
2319
+ "type":"structure",
2320
+ "required":[
2321
+ "UserPoolId",
2322
+ "Username",
2323
+ "Password"
2324
+ ],
2325
+ "members":{
2326
+ "UserPoolId":{"shape":"UserPoolIdType"},
2327
+ "Username":{"shape":"UsernameType"},
2328
+ "Password":{"shape":"PasswordType"},
2329
+ "Permanent":{"shape":"BooleanType"}
2330
+ }
2331
+ },
2332
+ "AdminSetUserPasswordResponse":{
2333
+ "type":"structure",
2334
+ "members":{
2335
+ }
2336
+ },
2300
2337
  "AdminSetUserSettingsRequest":{
2301
2338
  "type":"structure",
2302
2339
  "required":[
@@ -4130,7 +4167,8 @@
4130
4167
  "RequireUppercase":{"shape":"BooleanType"},
4131
4168
  "RequireLowercase":{"shape":"BooleanType"},
4132
4169
  "RequireNumbers":{"shape":"BooleanType"},
4133
- "RequireSymbols":{"shape":"BooleanType"}
4170
+ "RequireSymbols":{"shape":"BooleanType"},
4171
+ "TemporaryPasswordValidityDays":{"shape":"TemporaryPasswordValidityDaysType"}
4134
4172
  }
4135
4173
  },
4136
4174
  "PasswordResetRequiredException":{
@@ -4692,6 +4730,11 @@
4692
4730
  "max":256,
4693
4731
  "min":0
4694
4732
  },
4733
+ "TemporaryPasswordValidityDaysType":{
4734
+ "type":"integer",
4735
+ "max":365,
4736
+ "min":0
4737
+ },
4695
4738
  "TokenModelType":{
4696
4739
  "type":"string",
4697
4740
  "pattern":"[A-Za-z0-9-_=.]+",
@@ -2169,6 +2169,10 @@
2169
2169
  "DashIsoEncryptionSettings": {
2170
2170
  "type": "structure",
2171
2171
  "members": {
2172
+ "PlaybackDeviceCompatibility": {
2173
+ "shape": "DashIsoPlaybackDeviceCompatibility",
2174
+ "locationName": "playbackDeviceCompatibility"
2175
+ },
2172
2176
  "SpekeKeyProvider": {
2173
2177
  "shape": "SpekeKeyProvider",
2174
2178
  "locationName": "spekeKeyProvider"
@@ -2227,6 +2231,13 @@
2227
2231
  "NONE"
2228
2232
  ]
2229
2233
  },
2234
+ "DashIsoPlaybackDeviceCompatibility": {
2235
+ "type": "string",
2236
+ "enum": [
2237
+ "CENC_V1",
2238
+ "UNENCRYPTED_SEI"
2239
+ ]
2240
+ },
2230
2241
  "DashIsoSegmentControl": {
2231
2242
  "type": "string",
2232
2243
  "enum": [
@@ -342,6 +342,43 @@
342
342
  }
343
343
  ]
344
344
  },
345
+ "DeleteSchedule": {
346
+ "name": "DeleteSchedule",
347
+ "http": {
348
+ "method": "DELETE",
349
+ "requestUri": "/prod/channels/{channelId}/schedule",
350
+ "responseCode": 200
351
+ },
352
+ "input": {
353
+ "shape": "DeleteScheduleRequest"
354
+ },
355
+ "output": {
356
+ "shape": "DeleteScheduleResponse"
357
+ },
358
+ "errors": [
359
+ {
360
+ "shape": "BadRequestException"
361
+ },
362
+ {
363
+ "shape": "InternalServerErrorException"
364
+ },
365
+ {
366
+ "shape": "ForbiddenException"
367
+ },
368
+ {
369
+ "shape": "BadGatewayException"
370
+ },
371
+ {
372
+ "shape": "NotFoundException"
373
+ },
374
+ {
375
+ "shape": "GatewayTimeoutException"
376
+ },
377
+ {
378
+ "shape": "TooManyRequestsException"
379
+ }
380
+ ]
381
+ },
345
382
  "DeleteTags": {
346
383
  "name": "DeleteTags",
347
384
  "http": {
@@ -944,6 +981,49 @@
944
981
  }
945
982
  ]
946
983
  },
984
+ "UpdateChannelClass": {
985
+ "name": "UpdateChannelClass",
986
+ "http": {
987
+ "method": "PUT",
988
+ "requestUri": "/prod/channels/{channelId}/channelClass",
989
+ "responseCode": 200
990
+ },
991
+ "input": {
992
+ "shape": "UpdateChannelClassRequest"
993
+ },
994
+ "output": {
995
+ "shape": "UpdateChannelClassResponse"
996
+ },
997
+ "errors": [
998
+ {
999
+ "shape": "BadRequestException"
1000
+ },
1001
+ {
1002
+ "shape": "UnprocessableEntityException"
1003
+ },
1004
+ {
1005
+ "shape": "InternalServerErrorException"
1006
+ },
1007
+ {
1008
+ "shape": "ForbiddenException"
1009
+ },
1010
+ {
1011
+ "shape": "BadGatewayException"
1012
+ },
1013
+ {
1014
+ "shape": "NotFoundException"
1015
+ },
1016
+ {
1017
+ "shape": "GatewayTimeoutException"
1018
+ },
1019
+ {
1020
+ "shape": "TooManyRequestsException"
1021
+ },
1022
+ {
1023
+ "shape": "ConflictException"
1024
+ }
1025
+ ]
1026
+ },
947
1027
  "UpdateInput": {
948
1028
  "name": "UpdateInput",
949
1029
  "http": {
@@ -2127,7 +2207,9 @@
2127
2207
  "RECOVERING",
2128
2208
  "STOPPING",
2129
2209
  "DELETING",
2130
- "DELETED"
2210
+ "DELETED",
2211
+ "UPDATING",
2212
+ "UPDATE_FAILED"
2131
2213
  ]
2132
2214
  },
2133
2215
  "ChannelSummary": {
@@ -2678,6 +2760,24 @@
2678
2760
  }
2679
2761
  }
2680
2762
  },
2763
+ "DeleteScheduleRequest": {
2764
+ "type": "structure",
2765
+ "members": {
2766
+ "ChannelId": {
2767
+ "shape": "__string",
2768
+ "location": "uri",
2769
+ "locationName": "channelId"
2770
+ }
2771
+ },
2772
+ "required": [
2773
+ "ChannelId"
2774
+ ]
2775
+ },
2776
+ "DeleteScheduleResponse": {
2777
+ "type": "structure",
2778
+ "members": {
2779
+ }
2780
+ },
2681
2781
  "DeleteTagsRequest": {
2682
2782
  "type": "structure",
2683
2783
  "members": {
@@ -6739,6 +6839,11 @@
6739
6839
  }
6740
6840
  }
6741
6841
  },
6842
+ "ScheduleDeleteResultModel": {
6843
+ "type": "structure",
6844
+ "members": {
6845
+ }
6846
+ },
6742
6847
  "ScheduleDescribeResultModel": {
6743
6848
  "type": "structure",
6744
6849
  "members": {
@@ -7534,6 +7639,53 @@
7534
7639
  }
7535
7640
  }
7536
7641
  },
7642
+ "UpdateChannelClass": {
7643
+ "type": "structure",
7644
+ "members": {
7645
+ "ChannelClass": {
7646
+ "shape": "ChannelClass",
7647
+ "locationName": "channelClass"
7648
+ },
7649
+ "Destinations": {
7650
+ "shape": "__listOfOutputDestination",
7651
+ "locationName": "destinations"
7652
+ }
7653
+ },
7654
+ "required": [
7655
+ "ChannelClass"
7656
+ ]
7657
+ },
7658
+ "UpdateChannelClassRequest": {
7659
+ "type": "structure",
7660
+ "members": {
7661
+ "ChannelClass": {
7662
+ "shape": "ChannelClass",
7663
+ "locationName": "channelClass"
7664
+ },
7665
+ "ChannelId": {
7666
+ "shape": "__string",
7667
+ "location": "uri",
7668
+ "locationName": "channelId"
7669
+ },
7670
+ "Destinations": {
7671
+ "shape": "__listOfOutputDestination",
7672
+ "locationName": "destinations"
7673
+ }
7674
+ },
7675
+ "required": [
7676
+ "ChannelId",
7677
+ "ChannelClass"
7678
+ ]
7679
+ },
7680
+ "UpdateChannelClassResponse": {
7681
+ "type": "structure",
7682
+ "members": {
7683
+ "Channel": {
7684
+ "shape": "Channel",
7685
+ "locationName": "channel"
7686
+ }
7687
+ }
7688
+ },
7537
7689
  "UpdateChannelRequest": {
7538
7690
  "type": "structure",
7539
7691
  "members": {
@@ -333,6 +333,21 @@
333
333
  ],
334
334
  "idempotent":true
335
335
  },
336
+ "GetMailboxDetails":{
337
+ "name":"GetMailboxDetails",
338
+ "http":{
339
+ "method":"POST",
340
+ "requestUri":"/"
341
+ },
342
+ "input":{"shape":"GetMailboxDetailsRequest"},
343
+ "output":{"shape":"GetMailboxDetailsResponse"},
344
+ "errors":[
345
+ {"shape":"OrganizationNotFoundException"},
346
+ {"shape":"OrganizationStateException"},
347
+ {"shape":"EntityNotFoundException"}
348
+ ],
349
+ "idempotent":true
350
+ },
336
351
  "ListAliases":{
337
352
  "name":"ListAliases",
338
353
  "http":{
@@ -520,6 +535,23 @@
520
535
  ],
521
536
  "idempotent":true
522
537
  },
538
+ "UpdateMailboxQuota":{
539
+ "name":"UpdateMailboxQuota",
540
+ "http":{
541
+ "method":"POST",
542
+ "requestUri":"/"
543
+ },
544
+ "input":{"shape":"UpdateMailboxQuotaRequest"},
545
+ "output":{"shape":"UpdateMailboxQuotaResponse"},
546
+ "errors":[
547
+ {"shape":"InvalidParameterException"},
548
+ {"shape":"OrganizationNotFoundException"},
549
+ {"shape":"OrganizationStateException"},
550
+ {"shape":"EntityNotFoundException"},
551
+ {"shape":"EntityStateException"}
552
+ ],
553
+ "idempotent":true
554
+ },
523
555
  "UpdatePrimaryEmailAddress":{
524
556
  "name":"UpdatePrimaryEmailAddress",
525
557
  "http":{
@@ -985,6 +1017,24 @@
985
1017
  },
986
1018
  "exception":true
987
1019
  },
1020
+ "GetMailboxDetailsRequest":{
1021
+ "type":"structure",
1022
+ "required":[
1023
+ "OrganizationId",
1024
+ "UserId"
1025
+ ],
1026
+ "members":{
1027
+ "OrganizationId":{"shape":"OrganizationId"},
1028
+ "UserId":{"shape":"WorkMailIdentifier"}
1029
+ }
1030
+ },
1031
+ "GetMailboxDetailsResponse":{
1032
+ "type":"structure",
1033
+ "members":{
1034
+ "MailboxQuota":{"shape":"MailboxQuota"},
1035
+ "MailboxSize":{"shape":"MailboxSize"}
1036
+ }
1037
+ },
988
1038
  "Group":{
989
1039
  "type":"structure",
990
1040
  "members":{
@@ -1183,6 +1233,15 @@
1183
1233
  },
1184
1234
  "exception":true
1185
1235
  },
1236
+ "MailboxQuota":{
1237
+ "type":"integer",
1238
+ "box":true,
1239
+ "min":1
1240
+ },
1241
+ "MailboxSize":{
1242
+ "type":"double",
1243
+ "min":0
1244
+ },
1186
1245
  "MaxResults":{
1187
1246
  "type":"integer",
1188
1247
  "box":true,
@@ -1407,6 +1466,24 @@
1407
1466
  },
1408
1467
  "exception":true
1409
1468
  },
1469
+ "UpdateMailboxQuotaRequest":{
1470
+ "type":"structure",
1471
+ "required":[
1472
+ "OrganizationId",
1473
+ "UserId",
1474
+ "MailboxQuota"
1475
+ ],
1476
+ "members":{
1477
+ "OrganizationId":{"shape":"OrganizationId"},
1478
+ "UserId":{"shape":"WorkMailIdentifier"},
1479
+ "MailboxQuota":{"shape":"MailboxQuota"}
1480
+ }
1481
+ },
1482
+ "UpdateMailboxQuotaResponse":{
1483
+ "type":"structure",
1484
+ "members":{
1485
+ }
1486
+ },
1410
1487
  "UpdatePrimaryEmailAddressRequest":{
1411
1488
  "type":"structure",
1412
1489
  "required":[
@@ -25,6 +25,11 @@
25
25
  "output_token": "NextToken",
26
26
  "limit_key": "MaxResults"
27
27
  },
28
+ "ListResourceDelegates": {
29
+ "input_token": "NextToken",
30
+ "output_token": "NextToken",
31
+ "limit_key": "MaxResults"
32
+ },
28
33
  "ListResources": {
29
34
  "input_token": "NextToken",
30
35
  "output_token": "NextToken",
@@ -882,6 +882,18 @@
882
882
  "us-west-2" : { }
883
883
  }
884
884
  },
885
+ "data.mediastore" : {
886
+ "endpoints" : {
887
+ "ap-northeast-1" : { },
888
+ "ap-northeast-2" : { },
889
+ "ap-southeast-2" : { },
890
+ "eu-central-1" : { },
891
+ "eu-north-1" : { },
892
+ "eu-west-1" : { },
893
+ "us-east-1" : { },
894
+ "us-west-2" : { }
895
+ }
896
+ },
885
897
  "datapipeline" : {
886
898
  "endpoints" : {
887
899
  "ap-northeast-1" : { },
@@ -1739,6 +1751,7 @@
1739
1751
  "ap-northeast-2" : { },
1740
1752
  "ap-southeast-2" : { },
1741
1753
  "eu-central-1" : { },
1754
+ "eu-north-1" : { },
1742
1755
  "eu-west-1" : { },
1743
1756
  "us-east-1" : { },
1744
1757
  "us-west-2" : { }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.267'
2
+ VERSION = '2.11.268'
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.267
4
+ version: 2.11.268
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-05-02 00:00:00.000000000 Z
11
+ date: 2019-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath