aws-sdk-core 2.10.103 → 2.10.104
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/appstream/2016-12-01/api-2.json +107 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf0f70b5b3cacf5f7dff30d69b1bfd58b3b8adfc
|
4
|
+
data.tar.gz: 82bd22ede41905429c68cfab596e18f4157c27d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c5040153e8e3673607e066812709df66255782f5e5384d00a9fff0734f119aa75cf4a1a30e45a83305d611fa69aea7ddda2e7d35112b64057130bace4b61966
|
7
|
+
data.tar.gz: 220822f4220be0511c3002da7e89e21268bfcd4862101c11e6678d5f40657dac700b1fbf1f6e166e2da9332202dc37575f71ba5430276ebf6ddafd1ae202d966
|
@@ -308,6 +308,18 @@
|
|
308
308
|
"input":{"shape":"ListAssociatedStacksRequest"},
|
309
309
|
"output":{"shape":"ListAssociatedStacksResult"}
|
310
310
|
},
|
311
|
+
"ListTagsForResource":{
|
312
|
+
"name":"ListTagsForResource",
|
313
|
+
"http":{
|
314
|
+
"method":"POST",
|
315
|
+
"requestUri":"/"
|
316
|
+
},
|
317
|
+
"input":{"shape":"ListTagsForResourceRequest"},
|
318
|
+
"output":{"shape":"ListTagsForResourceResponse"},
|
319
|
+
"errors":[
|
320
|
+
{"shape":"ResourceNotFoundException"}
|
321
|
+
]
|
322
|
+
},
|
311
323
|
"StartFleet":{
|
312
324
|
"name":"StartFleet",
|
313
325
|
"http":{
|
@@ -365,6 +377,31 @@
|
|
365
377
|
{"shape":"ConcurrentModificationException"}
|
366
378
|
]
|
367
379
|
},
|
380
|
+
"TagResource":{
|
381
|
+
"name":"TagResource",
|
382
|
+
"http":{
|
383
|
+
"method":"POST",
|
384
|
+
"requestUri":"/"
|
385
|
+
},
|
386
|
+
"input":{"shape":"TagResourceRequest"},
|
387
|
+
"output":{"shape":"TagResourceResponse"},
|
388
|
+
"errors":[
|
389
|
+
{"shape":"LimitExceededException"},
|
390
|
+
{"shape":"ResourceNotFoundException"}
|
391
|
+
]
|
392
|
+
},
|
393
|
+
"UntagResource":{
|
394
|
+
"name":"UntagResource",
|
395
|
+
"http":{
|
396
|
+
"method":"POST",
|
397
|
+
"requestUri":"/"
|
398
|
+
},
|
399
|
+
"input":{"shape":"UntagResourceRequest"},
|
400
|
+
"output":{"shape":"UntagResourceResponse"},
|
401
|
+
"errors":[
|
402
|
+
{"shape":"ResourceNotFoundException"}
|
403
|
+
]
|
404
|
+
},
|
368
405
|
"UpdateDirectoryConfig":{
|
369
406
|
"name":"UpdateDirectoryConfig",
|
370
407
|
"http":{
|
@@ -1110,6 +1147,19 @@
|
|
1110
1147
|
"NextToken":{"shape":"String"}
|
1111
1148
|
}
|
1112
1149
|
},
|
1150
|
+
"ListTagsForResourceRequest":{
|
1151
|
+
"type":"structure",
|
1152
|
+
"required":["ResourceArn"],
|
1153
|
+
"members":{
|
1154
|
+
"ResourceArn":{"shape":"Arn"}
|
1155
|
+
}
|
1156
|
+
},
|
1157
|
+
"ListTagsForResourceResponse":{
|
1158
|
+
"type":"structure",
|
1159
|
+
"members":{
|
1160
|
+
"Tags":{"shape":"Tags"}
|
1161
|
+
}
|
1162
|
+
},
|
1113
1163
|
"Long":{"type":"long"},
|
1114
1164
|
"Metadata":{
|
1115
1165
|
"type":"map",
|
@@ -1349,7 +1399,64 @@
|
|
1349
1399
|
"type":"list",
|
1350
1400
|
"member":{"shape":"String"}
|
1351
1401
|
},
|
1402
|
+
"TagKey":{
|
1403
|
+
"type":"string",
|
1404
|
+
"max":128,
|
1405
|
+
"min":1,
|
1406
|
+
"pattern":"^(^(?!aws:).[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1407
|
+
},
|
1408
|
+
"TagKeyList":{
|
1409
|
+
"type":"list",
|
1410
|
+
"member":{"shape":"TagKey"},
|
1411
|
+
"max":50,
|
1412
|
+
"min":1
|
1413
|
+
},
|
1414
|
+
"TagResourceRequest":{
|
1415
|
+
"type":"structure",
|
1416
|
+
"required":[
|
1417
|
+
"ResourceArn",
|
1418
|
+
"Tags"
|
1419
|
+
],
|
1420
|
+
"members":{
|
1421
|
+
"ResourceArn":{"shape":"Arn"},
|
1422
|
+
"Tags":{"shape":"Tags"}
|
1423
|
+
}
|
1424
|
+
},
|
1425
|
+
"TagResourceResponse":{
|
1426
|
+
"type":"structure",
|
1427
|
+
"members":{
|
1428
|
+
}
|
1429
|
+
},
|
1430
|
+
"TagValue":{
|
1431
|
+
"type":"string",
|
1432
|
+
"max":256,
|
1433
|
+
"min":0,
|
1434
|
+
"pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
|
1435
|
+
},
|
1436
|
+
"Tags":{
|
1437
|
+
"type":"map",
|
1438
|
+
"key":{"shape":"TagKey"},
|
1439
|
+
"value":{"shape":"TagValue"},
|
1440
|
+
"max":50,
|
1441
|
+
"min":1
|
1442
|
+
},
|
1352
1443
|
"Timestamp":{"type":"timestamp"},
|
1444
|
+
"UntagResourceRequest":{
|
1445
|
+
"type":"structure",
|
1446
|
+
"required":[
|
1447
|
+
"ResourceArn",
|
1448
|
+
"TagKeys"
|
1449
|
+
],
|
1450
|
+
"members":{
|
1451
|
+
"ResourceArn":{"shape":"Arn"},
|
1452
|
+
"TagKeys":{"shape":"TagKeyList"}
|
1453
|
+
}
|
1454
|
+
},
|
1455
|
+
"UntagResourceResponse":{
|
1456
|
+
"type":"structure",
|
1457
|
+
"members":{
|
1458
|
+
}
|
1459
|
+
},
|
1353
1460
|
"UpdateDirectoryConfigRequest":{
|
1354
1461
|
"type":"structure",
|
1355
1462
|
"required":["DirectoryName"],
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.
|
4
|
+
version: 2.10.104
|
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-12-
|
11
|
+
date: 2017-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|