aws-sdk-core 2.10.15 → 2.10.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e62a4caeba1ca6b872519f7b3e5c6780871cc1bc
4
- data.tar.gz: fb25724086cd08af5b6fe39823bec04107a240f0
3
+ metadata.gz: ada65cfdab6e3112da3d25b3592c79b6557c30db
4
+ data.tar.gz: e5f7f7741065aee9b944c95156c1314d7d2419e9
5
5
  SHA512:
6
- metadata.gz: 280fd8bc8b5c3617d7ef1c60906f8bc0a02050f632d31c8e7a5d495f2a66c67e66bfc26e86eeb1cc18e88f6332736ef701f0b374a85596858a95efa1cc330d82
7
- data.tar.gz: 75db76f2dc663f25de6f8a2c173ecd526546568912264860db66d80be5151dc5fc0d526724c11cb7b5de22496d9782120e473eb9bd46a5a1fb142eeb63331d6d
6
+ metadata.gz: 703c552d038ca52801fde621abb3ea1d3830dba3f073afe6686c0801a0be509648ae4f40c682cdc3c6fee2f80eab051b232d58cffdf67346efb0c309c1bf2cf0
7
+ data.tar.gz: f68db6baa8db622aa504a687eef0bd5529dbfb769b3e6f519ac5744fac391b3e813db04ef3221cf9a4d7dceac88bc4b9a4098abdf4df7c25269aecafcbfe697b
@@ -24,7 +24,21 @@
24
24
  {"shape":"LimitExceededException"},
25
25
  {"shape":"ResourceNotFoundException"},
26
26
  {"shape":"ConcurrentModificationException"},
27
- {"shape":"IncompatibleImageException"}
27
+ {"shape":"IncompatibleImageException"},
28
+ {"shape":"OperationNotPermittedException"}
29
+ ]
30
+ },
31
+ "CreateDirectoryConfig":{
32
+ "name":"CreateDirectoryConfig",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"CreateDirectoryConfigRequest"},
38
+ "output":{"shape":"CreateDirectoryConfigResult"},
39
+ "errors":[
40
+ {"shape":"ResourceAlreadyExistsException"},
41
+ {"shape":"LimitExceededException"}
28
42
  ]
29
43
  },
30
44
  "CreateFleet":{
@@ -41,7 +55,9 @@
41
55
  {"shape":"ResourceNotFoundException"},
42
56
  {"shape":"LimitExceededException"},
43
57
  {"shape":"InvalidRoleException"},
44
- {"shape":"ConcurrentModificationException"}
58
+ {"shape":"ConcurrentModificationException"},
59
+ {"shape":"InvalidParameterCombinationException"},
60
+ {"shape":"IncompatibleImageException"}
45
61
  ]
46
62
  },
47
63
  "CreateStack":{
@@ -76,6 +92,19 @@
76
92
  {"shape":"InvalidParameterCombinationException"}
77
93
  ]
78
94
  },
95
+ "DeleteDirectoryConfig":{
96
+ "name":"DeleteDirectoryConfig",
97
+ "http":{
98
+ "method":"POST",
99
+ "requestUri":"/"
100
+ },
101
+ "input":{"shape":"DeleteDirectoryConfigRequest"},
102
+ "output":{"shape":"DeleteDirectoryConfigResult"},
103
+ "errors":[
104
+ {"shape":"ResourceInUseException"},
105
+ {"shape":"ResourceNotFoundException"}
106
+ ]
107
+ },
79
108
  "DeleteFleet":{
80
109
  "name":"DeleteFleet",
81
110
  "http":{
@@ -104,6 +133,18 @@
104
133
  {"shape":"ConcurrentModificationException"}
105
134
  ]
106
135
  },
136
+ "DescribeDirectoryConfigs":{
137
+ "name":"DescribeDirectoryConfigs",
138
+ "http":{
139
+ "method":"POST",
140
+ "requestUri":"/"
141
+ },
142
+ "input":{"shape":"DescribeDirectoryConfigsRequest"},
143
+ "output":{"shape":"DescribeDirectoryConfigsResult"},
144
+ "errors":[
145
+ {"shape":"ResourceNotFoundException"}
146
+ ]
147
+ },
107
148
  "DescribeFleets":{
108
149
  "name":"DescribeFleets",
109
150
  "http":{
@@ -221,6 +262,20 @@
221
262
  {"shape":"ConcurrentModificationException"}
222
263
  ]
223
264
  },
265
+ "UpdateDirectoryConfig":{
266
+ "name":"UpdateDirectoryConfig",
267
+ "http":{
268
+ "method":"POST",
269
+ "requestUri":"/"
270
+ },
271
+ "input":{"shape":"UpdateDirectoryConfigRequest"},
272
+ "output":{"shape":"UpdateDirectoryConfigResult"},
273
+ "errors":[
274
+ {"shape":"ResourceInUseException"},
275
+ {"shape":"ResourceNotFoundException"},
276
+ {"shape":"ConcurrentModificationException"}
277
+ ]
278
+ },
224
279
  "UpdateFleet":{
225
280
  "name":"UpdateFleet",
226
281
  "http":{
@@ -237,7 +292,8 @@
237
292
  {"shape":"ResourceNotAvailableException"},
238
293
  {"shape":"InvalidParameterCombinationException"},
239
294
  {"shape":"ConcurrentModificationException"},
240
- {"shape":"IncompatibleImageException"}
295
+ {"shape":"IncompatibleImageException"},
296
+ {"shape":"OperationNotPermittedException"}
241
297
  ]
242
298
  },
243
299
  "UpdateStack":{
@@ -259,6 +315,17 @@
259
315
  }
260
316
  },
261
317
  "shapes":{
318
+ "AccountName":{
319
+ "type":"string",
320
+ "min":1,
321
+ "sensitive":true
322
+ },
323
+ "AccountPassword":{
324
+ "type":"string",
325
+ "max":127,
326
+ "min":1,
327
+ "sensitive":true
328
+ },
262
329
  "Application":{
263
330
  "type":"structure",
264
331
  "members":{
@@ -329,6 +396,25 @@
329
396
  },
330
397
  "exception":true
331
398
  },
399
+ "CreateDirectoryConfigRequest":{
400
+ "type":"structure",
401
+ "required":[
402
+ "DirectoryName",
403
+ "OrganizationalUnitDistinguishedNames",
404
+ "ServiceAccountCredentials"
405
+ ],
406
+ "members":{
407
+ "DirectoryName":{"shape":"DirectoryName"},
408
+ "OrganizationalUnitDistinguishedNames":{"shape":"OrganizationalUnitDistinguishedNamesList"},
409
+ "ServiceAccountCredentials":{"shape":"ServiceAccountCredentials"}
410
+ }
411
+ },
412
+ "CreateDirectoryConfigResult":{
413
+ "type":"structure",
414
+ "members":{
415
+ "DirectoryConfig":{"shape":"DirectoryConfig"}
416
+ }
417
+ },
332
418
  "CreateFleetRequest":{
333
419
  "type":"structure",
334
420
  "required":[
@@ -347,7 +433,8 @@
347
433
  "DisconnectTimeoutInSeconds":{"shape":"Integer"},
348
434
  "Description":{"shape":"Description"},
349
435
  "DisplayName":{"shape":"DisplayName"},
350
- "EnableDefaultInternetAccess":{"shape":"BooleanObject"}
436
+ "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
437
+ "DomainJoinInfo":{"shape":"DomainJoinInfo"}
351
438
  }
352
439
  },
353
440
  "CreateFleetResult":{
@@ -382,7 +469,7 @@
382
469
  "members":{
383
470
  "StackName":{"shape":"String"},
384
471
  "FleetName":{"shape":"String"},
385
- "UserId":{"shape":"UserId"},
472
+ "UserId":{"shape":"StreamingUrlUserId"},
386
473
  "ApplicationId":{"shape":"String"},
387
474
  "Validity":{"shape":"Long"},
388
475
  "SessionContext":{"shape":"String"}
@@ -395,6 +482,18 @@
395
482
  "Expires":{"shape":"Timestamp"}
396
483
  }
397
484
  },
485
+ "DeleteDirectoryConfigRequest":{
486
+ "type":"structure",
487
+ "required":["DirectoryName"],
488
+ "members":{
489
+ "DirectoryName":{"shape":"DirectoryName"}
490
+ }
491
+ },
492
+ "DeleteDirectoryConfigResult":{
493
+ "type":"structure",
494
+ "members":{
495
+ }
496
+ },
398
497
  "DeleteFleetRequest":{
399
498
  "type":"structure",
400
499
  "required":["Name"],
@@ -419,6 +518,21 @@
419
518
  "members":{
420
519
  }
421
520
  },
521
+ "DescribeDirectoryConfigsRequest":{
522
+ "type":"structure",
523
+ "members":{
524
+ "DirectoryNames":{"shape":"DirectoryNameList"},
525
+ "MaxResults":{"shape":"Integer"},
526
+ "NextToken":{"shape":"String"}
527
+ }
528
+ },
529
+ "DescribeDirectoryConfigsResult":{
530
+ "type":"structure",
531
+ "members":{
532
+ "DirectoryConfigs":{"shape":"DirectoryConfigList"},
533
+ "NextToken":{"shape":"String"}
534
+ }
535
+ },
422
536
  "DescribeFleetsRequest":{
423
537
  "type":"structure",
424
538
  "members":{
@@ -485,6 +599,25 @@
485
599
  "type":"string",
486
600
  "max":256
487
601
  },
602
+ "DirectoryConfig":{
603
+ "type":"structure",
604
+ "required":["DirectoryName"],
605
+ "members":{
606
+ "DirectoryName":{"shape":"DirectoryName"},
607
+ "OrganizationalUnitDistinguishedNames":{"shape":"OrganizationalUnitDistinguishedNamesList"},
608
+ "ServiceAccountCredentials":{"shape":"ServiceAccountCredentials"},
609
+ "CreatedTime":{"shape":"Timestamp"}
610
+ }
611
+ },
612
+ "DirectoryConfigList":{
613
+ "type":"list",
614
+ "member":{"shape":"DirectoryConfig"}
615
+ },
616
+ "DirectoryName":{"type":"string"},
617
+ "DirectoryNameList":{
618
+ "type":"list",
619
+ "member":{"shape":"DirectoryName"}
620
+ },
488
621
  "DisassociateFleetRequest":{
489
622
  "type":"structure",
490
623
  "required":[
@@ -505,6 +638,13 @@
505
638
  "type":"string",
506
639
  "max":100
507
640
  },
641
+ "DomainJoinInfo":{
642
+ "type":"structure",
643
+ "members":{
644
+ "DirectoryName":{"shape":"DirectoryName"},
645
+ "OrganizationalUnitDistinguishedName":{"shape":"OrganizationalUnitDistinguishedName"}
646
+ }
647
+ },
508
648
  "ErrorMessage":{"type":"string"},
509
649
  "ExpireSessionRequest":{
510
650
  "type":"structure",
@@ -542,14 +682,16 @@
542
682
  "VpcConfig":{"shape":"VpcConfig"},
543
683
  "CreatedTime":{"shape":"Timestamp"},
544
684
  "FleetErrors":{"shape":"FleetErrors"},
545
- "EnableDefaultInternetAccess":{"shape":"BooleanObject"}
685
+ "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
686
+ "DomainJoinInfo":{"shape":"DomainJoinInfo"}
546
687
  }
547
688
  },
548
689
  "FleetAttribute":{
549
690
  "type":"string",
550
691
  "enum":[
551
692
  "VPC_CONFIGURATION",
552
- "VPC_CONFIGURATION_SECURITY_GROUP_IDS"
693
+ "VPC_CONFIGURATION_SECURITY_GROUP_IDS",
694
+ "DOMAIN_JOIN_INFO"
553
695
  ]
554
696
  },
555
697
  "FleetAttributes":{
@@ -576,7 +718,21 @@
576
718
  "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION",
577
719
  "SUBNET_NOT_FOUND",
578
720
  "IMAGE_NOT_FOUND",
579
- "INVALID_SUBNET_CONFIGURATION"
721
+ "INVALID_SUBNET_CONFIGURATION",
722
+ "SECURITY_GROUPS_NOT_FOUND",
723
+ "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION",
724
+ "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND",
725
+ "DOMAIN_JOIN_ERROR_ACCESS_DENIED",
726
+ "DOMAIN_JOIN_ERROR_LOGON_FAILURE",
727
+ "DOMAIN_JOIN_ERROR_INVALID_PARAMETER",
728
+ "DOMAIN_JOIN_ERROR_MORE_DATA",
729
+ "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN",
730
+ "DOMAIN_JOIN_ERROR_NOT_SUPPORTED",
731
+ "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME",
732
+ "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED",
733
+ "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED",
734
+ "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED",
735
+ "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
580
736
  ]
581
737
  },
582
738
  "FleetErrors":{
@@ -718,6 +874,14 @@
718
874
  },
719
875
  "exception":true
720
876
  },
877
+ "OrganizationalUnitDistinguishedName":{
878
+ "type":"string",
879
+ "max":2000
880
+ },
881
+ "OrganizationalUnitDistinguishedNamesList":{
882
+ "type":"list",
883
+ "member":{"shape":"OrganizationalUnitDistinguishedName"}
884
+ },
721
885
  "PlatformType":{
722
886
  "type":"string",
723
887
  "enum":["WINDOWS"]
@@ -759,6 +923,17 @@
759
923
  "member":{"shape":"String"},
760
924
  "max":5
761
925
  },
926
+ "ServiceAccountCredentials":{
927
+ "type":"structure",
928
+ "required":[
929
+ "AccountName",
930
+ "AccountPassword"
931
+ ],
932
+ "members":{
933
+ "AccountName":{"shape":"AccountName"},
934
+ "AccountPassword":{"shape":"AccountPassword"}
935
+ }
936
+ },
762
937
  "Session":{
763
938
  "type":"structure",
764
939
  "required":[
@@ -864,6 +1039,12 @@
864
1039
  "type":"string",
865
1040
  "enum":["HOMEFOLDERS"]
866
1041
  },
1042
+ "StreamingUrlUserId":{
1043
+ "type":"string",
1044
+ "max":32,
1045
+ "min":2,
1046
+ "pattern":"[\\w+=,.@-]*"
1047
+ },
867
1048
  "String":{
868
1049
  "type":"string",
869
1050
  "min":1
@@ -877,6 +1058,21 @@
877
1058
  "member":{"shape":"String"}
878
1059
  },
879
1060
  "Timestamp":{"type":"timestamp"},
1061
+ "UpdateDirectoryConfigRequest":{
1062
+ "type":"structure",
1063
+ "required":["DirectoryName"],
1064
+ "members":{
1065
+ "DirectoryName":{"shape":"DirectoryName"},
1066
+ "OrganizationalUnitDistinguishedNames":{"shape":"OrganizationalUnitDistinguishedNamesList"},
1067
+ "ServiceAccountCredentials":{"shape":"ServiceAccountCredentials"}
1068
+ }
1069
+ },
1070
+ "UpdateDirectoryConfigResult":{
1071
+ "type":"structure",
1072
+ "members":{
1073
+ "DirectoryConfig":{"shape":"DirectoryConfig"}
1074
+ }
1075
+ },
880
1076
  "UpdateFleetRequest":{
881
1077
  "type":"structure",
882
1078
  "required":["Name"],
@@ -895,6 +1091,7 @@
895
1091
  "Description":{"shape":"Description"},
896
1092
  "DisplayName":{"shape":"DisplayName"},
897
1093
  "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
1094
+ "DomainJoinInfo":{"shape":"DomainJoinInfo"},
898
1095
  "AttributesToDelete":{"shape":"FleetAttributes"}
899
1096
  }
900
1097
  },
@@ -9,19 +9,19 @@
9
9
  {
10
10
  "state": "success",
11
11
  "matcher": "pathAll",
12
- "argument": "fleets[].state",
12
+ "argument": "Fleets[].State",
13
13
  "expected": "ACTIVE"
14
14
  },
15
15
  {
16
16
  "state": "failure",
17
17
  "matcher": "pathAny",
18
- "argument": "fleets[].state",
18
+ "argument": "Fleets[].State",
19
19
  "expected": "PENDING_DEACTIVATE"
20
20
  },
21
21
  {
22
22
  "state": "failure",
23
23
  "matcher": "pathAny",
24
- "argument": "fleets[].state",
24
+ "argument": "Fleets[].State",
25
25
  "expected": "INACTIVE"
26
26
  }
27
27
  ]
@@ -34,19 +34,19 @@
34
34
  {
35
35
  "state": "success",
36
36
  "matcher": "pathAll",
37
- "argument": "fleets[].state",
37
+ "argument": "Fleets[].State",
38
38
  "expected": "INACTIVE"
39
39
  },
40
40
  {
41
41
  "state": "failure",
42
42
  "matcher": "pathAny",
43
- "argument": "fleets[].state",
43
+ "argument": "Fleets[].State",
44
44
  "expected": "PENDING_ACTIVATE"
45
45
  },
46
46
  {
47
47
  "state": "failure",
48
48
  "matcher": "pathAny",
49
- "argument": "fleets[].state",
49
+ "argument": "Fleets[].State",
50
50
  "expected": "ACTIVE"
51
51
  }
52
52
  ]
@@ -13894,6 +13894,10 @@
13894
13894
  "WeightedCapacity":{
13895
13895
  "shape":"Double",
13896
13896
  "locationName":"weightedCapacity"
13897
+ },
13898
+ "TagSpecifications":{
13899
+ "shape":"SpotFleetTagSpecificationList",
13900
+ "locationName":"tagSpecificationSet"
13897
13901
  }
13898
13902
  }
13899
13903
  },
@@ -14007,6 +14011,26 @@
14007
14011
  "locationName":"item"
14008
14012
  }
14009
14013
  },
14014
+ "SpotFleetTagSpecification":{
14015
+ "type":"structure",
14016
+ "members":{
14017
+ "ResourceType":{
14018
+ "shape":"ResourceType",
14019
+ "locationName":"resourceType"
14020
+ },
14021
+ "Tags":{
14022
+ "shape":"TagList",
14023
+ "locationName":"tag"
14024
+ }
14025
+ }
14026
+ },
14027
+ "SpotFleetTagSpecificationList":{
14028
+ "type":"list",
14029
+ "member":{
14030
+ "shape":"SpotFleetTagSpecification",
14031
+ "locationName":"item"
14032
+ }
14033
+ },
14010
14034
  "SpotInstanceRequest":{
14011
14035
  "type":"structure",
14012
14036
  "members":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.15'
2
+ VERSION = '2.10.16'
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.10.15
4
+ version: 2.10.16
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: 2017-07-20 00:00:00.000000000 Z
11
+ date: 2017-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath