aws-sdk-core 2.11.548 → 2.11.549

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
  SHA256:
3
- metadata.gz: c5acb7995ab86c86b8ff4c846e3b96afec9cac03e7357cd4c96eaa3a6fe4c23e
4
- data.tar.gz: 44c02bdba926fb980e3a9342c20e15e1b220dc7fe86f543b10fdfccc1a42a2cb
3
+ metadata.gz: 37e6c66b4ec8bc9f8d12a0588bb071a8700c6836b3342990347a25438e664e82
4
+ data.tar.gz: 0dcd1e8833fdcfa36062aa0df2c2c429e4d4467de8ed4d12eb01e840955ead92
5
5
  SHA512:
6
- metadata.gz: 80f0551ea8752a6fe5ea065f82049bd75426ab924a84e22045026b3b9fb68b5ed251d7a941c49e7c61935031bd14c50258ec48d4428dd12b7526bc5ad2ca7690
7
- data.tar.gz: 0b917c2a1a1147fcadf15c146b0427fcf326c9756eafaa25d5e208c76abc24c751fa3480e8de54e1a831daeed1e377ebd5f716ba172604b677d4bfe078515a6b
6
+ metadata.gz: 72194bc38b997d691e787eca3239884fe4e24222e2ed4b871b0629bbeb41594976f1108f13000e99956e355d14a182499b9b40c8535e53e4d5eedafd5ffc682d
7
+ data.tar.gz: cc4fe43851df3c5e002aeadc0646ac9290a45a2d6a64fa8c4f6a2e0fa686fc484837523b6381887a8d32dceab1a1e4aadb4eca899204f22e0768bf1f73f8083e
@@ -237,6 +237,21 @@
237
237
  {"shape":"ThrottlingException"}
238
238
  ]
239
239
  },
240
+ "ListTagsForResource":{
241
+ "name":"ListTagsForResource",
242
+ "http":{
243
+ "method":"GET",
244
+ "requestUri":"/tags/{resourceArn}",
245
+ "responseCode":200
246
+ },
247
+ "input":{"shape":"ListTagsForResourceRequest"},
248
+ "output":{"shape":"ListTagsForResourceResponse"},
249
+ "errors":[
250
+ {"shape":"InternalServerException"},
251
+ {"shape":"ValidationException"},
252
+ {"shape":"ResourceNotFoundException"}
253
+ ]
254
+ },
240
255
  "PostAgentProfile":{
241
256
  "name":"PostAgentProfile",
242
257
  "http":{
@@ -321,6 +336,37 @@
321
336
  {"shape":"ResourceNotFoundException"}
322
337
  ]
323
338
  },
339
+ "TagResource":{
340
+ "name":"TagResource",
341
+ "http":{
342
+ "method":"POST",
343
+ "requestUri":"/tags/{resourceArn}",
344
+ "responseCode":204
345
+ },
346
+ "input":{"shape":"TagResourceRequest"},
347
+ "output":{"shape":"TagResourceResponse"},
348
+ "errors":[
349
+ {"shape":"InternalServerException"},
350
+ {"shape":"ValidationException"},
351
+ {"shape":"ResourceNotFoundException"}
352
+ ]
353
+ },
354
+ "UntagResource":{
355
+ "name":"UntagResource",
356
+ "http":{
357
+ "method":"DELETE",
358
+ "requestUri":"/tags/{resourceArn}",
359
+ "responseCode":204
360
+ },
361
+ "input":{"shape":"UntagResourceRequest"},
362
+ "output":{"shape":"UntagResourceResponse"},
363
+ "errors":[
364
+ {"shape":"InternalServerException"},
365
+ {"shape":"ValidationException"},
366
+ {"shape":"ResourceNotFoundException"}
367
+ ],
368
+ "idempotent":true
369
+ },
324
370
  "UpdateProfilingGroup":{
325
371
  "name":"UpdateProfilingGroup",
326
372
  "http":{
@@ -594,7 +640,8 @@
594
640
  "locationName":"clientToken"
595
641
  },
596
642
  "computePlatform":{"shape":"ComputePlatform"},
597
- "profilingGroupName":{"shape":"ProfilingGroupName"}
643
+ "profilingGroupName":{"shape":"ProfilingGroupName"},
644
+ "tags":{"shape":"TagsMap"}
598
645
  }
599
646
  },
600
647
  "CreateProfilingGroupResponse":{
@@ -682,8 +729,7 @@
682
729
  "FleetInstanceId":{
683
730
  "type":"string",
684
731
  "max":255,
685
- "min":1,
686
- "pattern":"^[\\w-.:/]+$"
732
+ "min":1
687
733
  },
688
734
  "FrameMetric":{
689
735
  "type":"structure",
@@ -1042,6 +1088,23 @@
1042
1088
  "profilingGroups":{"shape":"ProfilingGroupDescriptions"}
1043
1089
  }
1044
1090
  },
1091
+ "ListTagsForResourceRequest":{
1092
+ "type":"structure",
1093
+ "required":["resourceArn"],
1094
+ "members":{
1095
+ "resourceArn":{
1096
+ "shape":"ProfilingGroupArn",
1097
+ "location":"uri",
1098
+ "locationName":"resourceArn"
1099
+ }
1100
+ }
1101
+ },
1102
+ "ListTagsForResourceResponse":{
1103
+ "type":"structure",
1104
+ "members":{
1105
+ "tags":{"shape":"TagsMap"}
1106
+ }
1107
+ },
1045
1108
  "Locale":{"type":"string"},
1046
1109
  "Match":{
1047
1110
  "type":"structure",
@@ -1204,6 +1267,7 @@
1204
1267
  "createdAt":{"shape":"Timestamp"},
1205
1268
  "name":{"shape":"ProfilingGroupName"},
1206
1269
  "profilingStatus":{"shape":"ProfilingStatus"},
1270
+ "tags":{"shape":"TagsMap"},
1207
1271
  "updatedAt":{"shape":"Timestamp"}
1208
1272
  }
1209
1273
  },
@@ -1406,6 +1470,35 @@
1406
1470
  "members":{
1407
1471
  }
1408
1472
  },
1473
+ "TagKeys":{
1474
+ "type":"list",
1475
+ "member":{"shape":"String"}
1476
+ },
1477
+ "TagResourceRequest":{
1478
+ "type":"structure",
1479
+ "required":[
1480
+ "resourceArn",
1481
+ "tags"
1482
+ ],
1483
+ "members":{
1484
+ "resourceArn":{
1485
+ "shape":"ProfilingGroupArn",
1486
+ "location":"uri",
1487
+ "locationName":"resourceArn"
1488
+ },
1489
+ "tags":{"shape":"TagsMap"}
1490
+ }
1491
+ },
1492
+ "TagResourceResponse":{
1493
+ "type":"structure",
1494
+ "members":{
1495
+ }
1496
+ },
1497
+ "TagsMap":{
1498
+ "type":"map",
1499
+ "key":{"shape":"String"},
1500
+ "value":{"shape":"String"}
1501
+ },
1409
1502
  "TargetFrame":{
1410
1503
  "type":"list",
1411
1504
  "member":{"shape":"String"}
@@ -1446,6 +1539,30 @@
1446
1539
  "key":{"shape":"String"},
1447
1540
  "value":{"shape":"ListOfTimestamps"}
1448
1541
  },
1542
+ "UntagResourceRequest":{
1543
+ "type":"structure",
1544
+ "required":[
1545
+ "resourceArn",
1546
+ "tagKeys"
1547
+ ],
1548
+ "members":{
1549
+ "resourceArn":{
1550
+ "shape":"ProfilingGroupArn",
1551
+ "location":"uri",
1552
+ "locationName":"resourceArn"
1553
+ },
1554
+ "tagKeys":{
1555
+ "shape":"TagKeys",
1556
+ "location":"querystring",
1557
+ "locationName":"tagKeys"
1558
+ }
1559
+ }
1560
+ },
1561
+ "UntagResourceResponse":{
1562
+ "type":"structure",
1563
+ "members":{
1564
+ }
1565
+ },
1449
1566
  "UpdateProfilingGroupRequest":{
1450
1567
  "type":"structure",
1451
1568
  "required":[
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.548'
2
+ VERSION = '2.11.549'
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.548
4
+ version: 2.11.549
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-07-20 00:00:00.000000000 Z
11
+ date: 2020-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath