aws-sdk-core 2.11.548 → 2.11.553

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
  SHA256:
3
- metadata.gz: c5acb7995ab86c86b8ff4c846e3b96afec9cac03e7357cd4c96eaa3a6fe4c23e
4
- data.tar.gz: 44c02bdba926fb980e3a9342c20e15e1b220dc7fe86f543b10fdfccc1a42a2cb
3
+ metadata.gz: 217170bd643b58113daead9207a6048b3a3484056052e5abb0db6e634cc44120
4
+ data.tar.gz: 56b78bffe8071836341cc3198b359cc11e606355f5784eb9359a96509c3992b6
5
5
  SHA512:
6
- metadata.gz: 80f0551ea8752a6fe5ea065f82049bd75426ab924a84e22045026b3b9fb68b5ed251d7a941c49e7c61935031bd14c50258ec48d4428dd12b7526bc5ad2ca7690
7
- data.tar.gz: 0b917c2a1a1147fcadf15c146b0427fcf326c9756eafaa25d5e208c76abc24c751fa3480e8de54e1a831daeed1e377ebd5f716ba172604b677d4bfe078515a6b
6
+ metadata.gz: 81230d5e9b68edf196ddbec583a915a2b2d260b90a6cda25dcd5ba1575f83dfcc86e88ebde24607ea03a09ef063fc22d50c91eeaf4963609d9d754d5d585e2f9
7
+ data.tar.gz: 505af81ac802125c7efc80100894b01812b262faba32701c7b1e62c53e2849958b4270e82c9602754341860eb73f3a93bfbb4e4d078f69fe246ef82883a7edbe
@@ -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":[
@@ -385,7 +385,8 @@
385
385
  "output":{"shape":"DescribeConformancePackStatusResponse"},
386
386
  "errors":[
387
387
  {"shape":"InvalidLimitException"},
388
- {"shape":"InvalidNextTokenException"}
388
+ {"shape":"InvalidNextTokenException"},
389
+ {"shape":"InvalidParameterValueException"}
389
390
  ]
390
391
  },
391
392
  "DescribeConformancePacks":{
@@ -399,7 +400,8 @@
399
400
  "errors":[
400
401
  {"shape":"NoSuchConformancePackException"},
401
402
  {"shape":"InvalidLimitException"},
402
- {"shape":"InvalidNextTokenException"}
403
+ {"shape":"InvalidNextTokenException"},
404
+ {"shape":"InvalidParameterValueException"}
403
405
  ]
404
406
  },
405
407
  "DescribeDeliveryChannelStatus":{
@@ -956,7 +958,8 @@
956
958
  "input":{"shape":"PutRemediationExceptionsRequest"},
957
959
  "output":{"shape":"PutRemediationExceptionsResponse"},
958
960
  "errors":[
959
- {"shape":"InvalidParameterValueException"}
961
+ {"shape":"InvalidParameterValueException"},
962
+ {"shape":"InsufficientPermissionsException"}
960
963
  ]
961
964
  },
962
965
  "PutResourceConfig":{
@@ -1528,7 +1531,8 @@
1528
1531
  "AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
1529
1532
  "OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
1530
1533
  "CreationTime":{"shape":"Date"},
1531
- "LastUpdatedTime":{"shape":"Date"}
1534
+ "LastUpdatedTime":{"shape":"Date"},
1535
+ "CreatedBy":{"shape":"StringWithCharLimit256"}
1532
1536
  }
1533
1537
  },
1534
1538
  "ConfigurationAggregatorArn":{
@@ -4010,7 +4014,10 @@
4010
4014
  "AWS::ServiceCatalog::Portfolio",
4011
4015
  "AWS::SQS::Queue",
4012
4016
  "AWS::KMS::Key",
4013
- "AWS::QLDB::Ledger"
4017
+ "AWS::QLDB::Ledger",
4018
+ "AWS::SecretsManager::Secret",
4019
+ "AWS::SNS::Topic",
4020
+ "AWS::SSM::FileData"
4014
4021
  ]
4015
4022
  },
4016
4023
  "ResourceTypeList":{
@@ -79,6 +79,19 @@
79
79
  {"shape":"InternalException"}
80
80
  ]
81
81
  },
82
+ "CreateLocationObjectStorage":{
83
+ "name":"CreateLocationObjectStorage",
84
+ "http":{
85
+ "method":"POST",
86
+ "requestUri":"/"
87
+ },
88
+ "input":{"shape":"CreateLocationObjectStorageRequest"},
89
+ "output":{"shape":"CreateLocationObjectStorageResponse"},
90
+ "errors":[
91
+ {"shape":"InvalidRequestException"},
92
+ {"shape":"InternalException"}
93
+ ]
94
+ },
82
95
  "CreateLocationS3":{
83
96
  "name":"CreateLocationS3",
84
97
  "http":{
@@ -209,6 +222,19 @@
209
222
  {"shape":"InternalException"}
210
223
  ]
211
224
  },
225
+ "DescribeLocationObjectStorage":{
226
+ "name":"DescribeLocationObjectStorage",
227
+ "http":{
228
+ "method":"POST",
229
+ "requestUri":"/"
230
+ },
231
+ "input":{"shape":"DescribeLocationObjectStorageRequest"},
232
+ "output":{"shape":"DescribeLocationObjectStorageResponse"},
233
+ "errors":[
234
+ {"shape":"InvalidRequestException"},
235
+ {"shape":"InternalException"}
236
+ ]
237
+ },
212
238
  "DescribeLocationS3":{
213
239
  "name":"DescribeLocationS3",
214
240
  "http":{
@@ -406,7 +432,7 @@
406
432
  "AgentArnList":{
407
433
  "type":"list",
408
434
  "member":{"shape":"AgentArn"},
409
- "max":64,
435
+ "max":4,
410
436
  "min":1
411
437
  },
412
438
  "AgentList":{
@@ -457,7 +483,7 @@
457
483
  "members":{
458
484
  "ActivationKey":{"shape":"ActivationKey"},
459
485
  "AgentName":{"shape":"TagValue"},
460
- "Tags":{"shape":"TagList"},
486
+ "Tags":{"shape":"InputTagList"},
461
487
  "VpcEndpointId":{"shape":"VpcEndpointId"},
462
488
  "SubnetArns":{"shape":"PLSubnetArnList"},
463
489
  "SecurityGroupArns":{"shape":"PLSecurityGroupArnList"}
@@ -479,7 +505,7 @@
479
505
  "Subdirectory":{"shape":"EfsSubdirectory"},
480
506
  "EfsFilesystemArn":{"shape":"EfsFilesystemArn"},
481
507
  "Ec2Config":{"shape":"Ec2Config"},
482
- "Tags":{"shape":"TagList"}
508
+ "Tags":{"shape":"InputTagList"}
483
509
  }
484
510
  },
485
511
  "CreateLocationEfsResponse":{
@@ -500,7 +526,7 @@
500
526
  "Subdirectory":{"shape":"FsxWindowsSubdirectory"},
501
527
  "FsxFilesystemArn":{"shape":"FsxFilesystemArn"},
502
528
  "SecurityGroupArns":{"shape":"Ec2SecurityGroupArnList"},
503
- "Tags":{"shape":"TagList"},
529
+ "Tags":{"shape":"InputTagList"},
504
530
  "User":{"shape":"SmbUser"},
505
531
  "Domain":{"shape":"SmbDomain"},
506
532
  "Password":{"shape":"SmbPassword"}
@@ -524,7 +550,7 @@
524
550
  "ServerHostname":{"shape":"ServerHostname"},
525
551
  "OnPremConfig":{"shape":"OnPremConfig"},
526
552
  "MountOptions":{"shape":"NfsMountOptions"},
527
- "Tags":{"shape":"TagList"}
553
+ "Tags":{"shape":"InputTagList"}
528
554
  }
529
555
  },
530
556
  "CreateLocationNfsResponse":{
@@ -533,6 +559,31 @@
533
559
  "LocationArn":{"shape":"LocationArn"}
534
560
  }
535
561
  },
562
+ "CreateLocationObjectStorageRequest":{
563
+ "type":"structure",
564
+ "required":[
565
+ "ServerHostname",
566
+ "BucketName",
567
+ "AgentArns"
568
+ ],
569
+ "members":{
570
+ "ServerHostname":{"shape":"ServerHostname"},
571
+ "ServerPort":{"shape":"ObjectStorageServerPort"},
572
+ "ServerProtocol":{"shape":"ObjectStorageServerProtocol"},
573
+ "Subdirectory":{"shape":"S3Subdirectory"},
574
+ "BucketName":{"shape":"ObjectStorageBucketName"},
575
+ "AccessKey":{"shape":"ObjectStorageAccessKey"},
576
+ "SecretKey":{"shape":"ObjectStorageSecretKey"},
577
+ "AgentArns":{"shape":"AgentArnList"},
578
+ "Tags":{"shape":"InputTagList"}
579
+ }
580
+ },
581
+ "CreateLocationObjectStorageResponse":{
582
+ "type":"structure",
583
+ "members":{
584
+ "LocationArn":{"shape":"LocationArn"}
585
+ }
586
+ },
536
587
  "CreateLocationS3Request":{
537
588
  "type":"structure",
538
589
  "required":[
@@ -544,7 +595,7 @@
544
595
  "S3BucketArn":{"shape":"S3BucketArn"},
545
596
  "S3StorageClass":{"shape":"S3StorageClass"},
546
597
  "S3Config":{"shape":"S3Config"},
547
- "Tags":{"shape":"TagList"}
598
+ "Tags":{"shape":"InputTagList"}
548
599
  }
549
600
  },
550
601
  "CreateLocationS3Response":{
@@ -570,7 +621,7 @@
570
621
  "Password":{"shape":"SmbPassword"},
571
622
  "AgentArns":{"shape":"AgentArnList"},
572
623
  "MountOptions":{"shape":"SmbMountOptions"},
573
- "Tags":{"shape":"TagList"}
624
+ "Tags":{"shape":"InputTagList"}
574
625
  }
575
626
  },
576
627
  "CreateLocationSmbResponse":{
@@ -593,7 +644,7 @@
593
644
  "Options":{"shape":"Options"},
594
645
  "Excludes":{"shape":"FilterList"},
595
646
  "Schedule":{"shape":"TaskSchedule"},
596
- "Tags":{"shape":"TagList"}
647
+ "Tags":{"shape":"InputTagList"}
597
648
  }
598
649
  },
599
650
  "CreateTaskResponse":{
@@ -708,6 +759,25 @@
708
759
  "CreationTime":{"shape":"Time"}
709
760
  }
710
761
  },
762
+ "DescribeLocationObjectStorageRequest":{
763
+ "type":"structure",
764
+ "required":["LocationArn"],
765
+ "members":{
766
+ "LocationArn":{"shape":"LocationArn"}
767
+ }
768
+ },
769
+ "DescribeLocationObjectStorageResponse":{
770
+ "type":"structure",
771
+ "members":{
772
+ "LocationArn":{"shape":"LocationArn"},
773
+ "LocationUri":{"shape":"LocationUri"},
774
+ "AccessKey":{"shape":"ObjectStorageAccessKey"},
775
+ "ServerPort":{"shape":"ObjectStorageServerPort"},
776
+ "ServerProtocol":{"shape":"ObjectStorageServerProtocol"},
777
+ "AgentArns":{"shape":"AgentArnList"},
778
+ "CreationTime":{"shape":"Time"}
779
+ }
780
+ },
711
781
  "DescribeLocationS3Request":{
712
782
  "type":"structure",
713
783
  "required":["LocationArn"],
@@ -902,6 +972,12 @@
902
972
  "max":2048,
903
973
  "pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$"
904
974
  },
975
+ "InputTagList":{
976
+ "type":"list",
977
+ "member":{"shape":"TagListEntry"},
978
+ "max":50,
979
+ "min":0
980
+ },
905
981
  "InternalException":{
906
982
  "type":"structure",
907
983
  "members":{
@@ -959,7 +1035,7 @@
959
1035
  "ListTagsForResourceResponse":{
960
1036
  "type":"structure",
961
1037
  "members":{
962
- "Tags":{"shape":"TagList"},
1038
+ "Tags":{"shape":"OutputTagList"},
963
1039
  "NextToken":{"shape":"NextToken"}
964
1040
  }
965
1041
  },
@@ -1016,7 +1092,7 @@
1016
1092
  "LogGroupArn":{
1017
1093
  "type":"string",
1018
1094
  "max":562,
1019
- "pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\\-0-9]*:[0-9]{12}:log-group:([^:\\*]*)$"
1095
+ "pattern":"^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):logs:[a-z\\-0-9]*:[0-9]{12}:log-group:([^:\\*]*)(:\\*)?$"
1020
1096
  },
1021
1097
  "LogLevel":{
1022
1098
  "type":"string",
@@ -1068,6 +1144,38 @@
1068
1144
  "NFS4_1"
1069
1145
  ]
1070
1146
  },
1147
+ "ObjectStorageAccessKey":{
1148
+ "type":"string",
1149
+ "max":200,
1150
+ "min":8,
1151
+ "pattern":"^.+$"
1152
+ },
1153
+ "ObjectStorageBucketName":{
1154
+ "type":"string",
1155
+ "max":63,
1156
+ "min":3,
1157
+ "pattern":"^[a-zA-Z0-9_\\-\\+\\./\\(\\)\\$\\p{Zs}]+$"
1158
+ },
1159
+ "ObjectStorageSecretKey":{
1160
+ "type":"string",
1161
+ "max":200,
1162
+ "min":8,
1163
+ "pattern":"^.+$",
1164
+ "sensitive":true
1165
+ },
1166
+ "ObjectStorageServerPort":{
1167
+ "type":"integer",
1168
+ "box":true,
1169
+ "max":65536,
1170
+ "min":1
1171
+ },
1172
+ "ObjectStorageServerProtocol":{
1173
+ "type":"string",
1174
+ "enum":[
1175
+ "HTTPS",
1176
+ "HTTP"
1177
+ ]
1178
+ },
1071
1179
  "OnPremConfig":{
1072
1180
  "type":"structure",
1073
1181
  "required":["AgentArns"],
@@ -1089,9 +1197,16 @@
1089
1197
  "PosixPermissions":{"shape":"PosixPermissions"},
1090
1198
  "BytesPerSecond":{"shape":"BytesPerSecond"},
1091
1199
  "TaskQueueing":{"shape":"TaskQueueing"},
1092
- "LogLevel":{"shape":"LogLevel"}
1200
+ "LogLevel":{"shape":"LogLevel"},
1201
+ "TransferMode":{"shape":"TransferMode"}
1093
1202
  }
1094
1203
  },
1204
+ "OutputTagList":{
1205
+ "type":"list",
1206
+ "member":{"shape":"TagListEntry"},
1207
+ "max":55,
1208
+ "min":0
1209
+ },
1095
1210
  "OverwriteMode":{
1096
1211
  "type":"string",
1097
1212
  "enum":[
@@ -1253,12 +1368,6 @@
1253
1368
  "max":50,
1254
1369
  "min":1
1255
1370
  },
1256
- "TagList":{
1257
- "type":"list",
1258
- "member":{"shape":"TagListEntry"},
1259
- "max":55,
1260
- "min":0
1261
- },
1262
1371
  "TagListEntry":{
1263
1372
  "type":"structure",
1264
1373
  "required":["Key"],
@@ -1275,7 +1384,7 @@
1275
1384
  ],
1276
1385
  "members":{
1277
1386
  "ResourceArn":{"shape":"TaggableResourceArn"},
1278
- "Tags":{"shape":"TagList"}
1387
+ "Tags":{"shape":"InputTagList"}
1279
1388
  }
1280
1389
  },
1281
1390
  "TagResourceResponse":{
@@ -1378,6 +1487,13 @@
1378
1487
  ]
1379
1488
  },
1380
1489
  "Time":{"type":"timestamp"},
1490
+ "TransferMode":{
1491
+ "type":"string",
1492
+ "enum":[
1493
+ "CHANGED",
1494
+ "ALL"
1495
+ ]
1496
+ },
1381
1497
  "Uid":{
1382
1498
  "type":"string",
1383
1499
  "enum":[