aws-sdk-core 2.11.605 → 2.11.606

Sign up to get free protection for your applications and to get access to all the features.
@@ -340,6 +340,25 @@
340
340
  {"shape":"HumanLoopQuotaExceededException"}
341
341
  ]
342
342
  },
343
+ "DetectProtectiveEquipment":{
344
+ "name":"DetectProtectiveEquipment",
345
+ "http":{
346
+ "method":"POST",
347
+ "requestUri":"/"
348
+ },
349
+ "input":{"shape":"DetectProtectiveEquipmentRequest"},
350
+ "output":{"shape":"DetectProtectiveEquipmentResponse"},
351
+ "errors":[
352
+ {"shape":"InvalidS3ObjectException"},
353
+ {"shape":"InvalidParameterException"},
354
+ {"shape":"ImageTooLargeException"},
355
+ {"shape":"AccessDeniedException"},
356
+ {"shape":"InternalServerError"},
357
+ {"shape":"ThrottlingException"},
358
+ {"shape":"ProvisionedThroughputExceededException"},
359
+ {"shape":"InvalidImageFormatException"}
360
+ ]
361
+ },
343
362
  "DetectText":{
344
363
  "name":"DetectText",
345
364
  "http":{
@@ -537,7 +556,8 @@
537
556
  {"shape":"ThrottlingException"},
538
557
  {"shape":"ProvisionedThroughputExceededException"},
539
558
  {"shape":"ResourceNotFoundException"},
540
- {"shape":"InvalidImageFormatException"}
559
+ {"shape":"InvalidImageFormatException"},
560
+ {"shape":"ServiceQuotaExceededException"}
541
561
  ]
542
562
  },
543
563
  "ListCollections":{
@@ -948,6 +968,19 @@
948
968
  "Confidence":{"shape":"Percent"}
949
969
  }
950
970
  },
971
+ "BodyPart":{
972
+ "type":"string",
973
+ "enum":[
974
+ "FACE",
975
+ "HEAD",
976
+ "LEFT_HAND",
977
+ "RIGHT_HAND"
978
+ ]
979
+ },
980
+ "BodyParts":{
981
+ "type":"list",
982
+ "member":{"shape":"ProtectiveEquipmentBodyPart"}
983
+ },
951
984
  "Boolean":{"type":"boolean"},
952
985
  "BoundingBox":{
953
986
  "type":"structure",
@@ -1116,6 +1149,13 @@
1116
1149
  "TIMESTAMP"
1117
1150
  ]
1118
1151
  },
1152
+ "CoversBodyPart":{
1153
+ "type":"structure",
1154
+ "members":{
1155
+ "Confidence":{"shape":"Percent"},
1156
+ "Value":{"shape":"Boolean"}
1157
+ }
1158
+ },
1119
1159
  "CreateCollectionRequest":{
1120
1160
  "type":"structure",
1121
1161
  "required":["CollectionId"],
@@ -1413,6 +1453,22 @@
1413
1453
  "HumanLoopActivationOutput":{"shape":"HumanLoopActivationOutput"}
1414
1454
  }
1415
1455
  },
1456
+ "DetectProtectiveEquipmentRequest":{
1457
+ "type":"structure",
1458
+ "required":["Image"],
1459
+ "members":{
1460
+ "Image":{"shape":"Image"},
1461
+ "SummarizationAttributes":{"shape":"ProtectiveEquipmentSummarizationAttributes"}
1462
+ }
1463
+ },
1464
+ "DetectProtectiveEquipmentResponse":{
1465
+ "type":"structure",
1466
+ "members":{
1467
+ "ProtectiveEquipmentModelVersion":{"shape":"String"},
1468
+ "Persons":{"shape":"ProtectiveEquipmentPersons"},
1469
+ "Summary":{"shape":"ProtectiveEquipmentSummary"}
1470
+ }
1471
+ },
1416
1472
  "DetectTextFilters":{
1417
1473
  "type":"structure",
1418
1474
  "members":{
@@ -1468,6 +1524,19 @@
1468
1524
  "type":"list",
1469
1525
  "member":{"shape":"Emotion"}
1470
1526
  },
1527
+ "EquipmentDetection":{
1528
+ "type":"structure",
1529
+ "members":{
1530
+ "BoundingBox":{"shape":"BoundingBox"},
1531
+ "Confidence":{"shape":"Percent"},
1532
+ "Type":{"shape":"ProtectiveEquipmentType"},
1533
+ "CoversBodyPart":{"shape":"CoversBodyPart"}
1534
+ }
1535
+ },
1536
+ "EquipmentDetections":{
1537
+ "type":"list",
1538
+ "member":{"shape":"EquipmentDetection"}
1539
+ },
1471
1540
  "EvaluationResult":{
1472
1541
  "type":"structure",
1473
1542
  "members":{
@@ -2369,6 +2438,62 @@
2369
2438
  "max":100,
2370
2439
  "min":1
2371
2440
  },
2441
+ "ProtectiveEquipmentBodyPart":{
2442
+ "type":"structure",
2443
+ "members":{
2444
+ "Name":{"shape":"BodyPart"},
2445
+ "Confidence":{"shape":"Percent"},
2446
+ "EquipmentDetections":{"shape":"EquipmentDetections"}
2447
+ }
2448
+ },
2449
+ "ProtectiveEquipmentPerson":{
2450
+ "type":"structure",
2451
+ "members":{
2452
+ "BodyParts":{"shape":"BodyParts"},
2453
+ "BoundingBox":{"shape":"BoundingBox"},
2454
+ "Confidence":{"shape":"Percent"},
2455
+ "Id":{"shape":"UInteger"}
2456
+ }
2457
+ },
2458
+ "ProtectiveEquipmentPersonIds":{
2459
+ "type":"list",
2460
+ "member":{"shape":"UInteger"}
2461
+ },
2462
+ "ProtectiveEquipmentPersons":{
2463
+ "type":"list",
2464
+ "member":{"shape":"ProtectiveEquipmentPerson"}
2465
+ },
2466
+ "ProtectiveEquipmentSummarizationAttributes":{
2467
+ "type":"structure",
2468
+ "required":[
2469
+ "MinConfidence",
2470
+ "RequiredEquipmentTypes"
2471
+ ],
2472
+ "members":{
2473
+ "MinConfidence":{"shape":"Percent"},
2474
+ "RequiredEquipmentTypes":{"shape":"ProtectiveEquipmentTypes"}
2475
+ }
2476
+ },
2477
+ "ProtectiveEquipmentSummary":{
2478
+ "type":"structure",
2479
+ "members":{
2480
+ "PersonsWithRequiredEquipment":{"shape":"ProtectiveEquipmentPersonIds"},
2481
+ "PersonsWithoutRequiredEquipment":{"shape":"ProtectiveEquipmentPersonIds"},
2482
+ "PersonsIndeterminate":{"shape":"ProtectiveEquipmentPersonIds"}
2483
+ }
2484
+ },
2485
+ "ProtectiveEquipmentType":{
2486
+ "type":"string",
2487
+ "enum":[
2488
+ "FACE_COVER",
2489
+ "HAND_COVER",
2490
+ "HEAD_COVER"
2491
+ ]
2492
+ },
2493
+ "ProtectiveEquipmentTypes":{
2494
+ "type":"list",
2495
+ "member":{"shape":"ProtectiveEquipmentType"}
2496
+ },
2372
2497
  "ProvisionedThroughputExceededException":{
2373
2498
  "type":"structure",
2374
2499
  "members":{
@@ -2582,6 +2707,12 @@
2582
2707
  "type":"list",
2583
2708
  "member":{"shape":"SegmentTypeInfo"}
2584
2709
  },
2710
+ "ServiceQuotaExceededException":{
2711
+ "type":"structure",
2712
+ "members":{
2713
+ },
2714
+ "exception":true
2715
+ },
2585
2716
  "ShotSegment":{
2586
2717
  "type":"structure",
2587
2718
  "members":{
@@ -7319,7 +7319,17 @@
7319
7319
  "MsrcSeverity":{"shape":"PatchMsrcSeverity"},
7320
7320
  "KbNumber":{"shape":"PatchKbNumber"},
7321
7321
  "MsrcNumber":{"shape":"PatchMsrcNumber"},
7322
- "Language":{"shape":"PatchLanguage"}
7322
+ "Language":{"shape":"PatchLanguage"},
7323
+ "AdvisoryIds":{"shape":"PatchAdvisoryIdList"},
7324
+ "BugzillaIds":{"shape":"PatchBugzillaIdList"},
7325
+ "CVEIds":{"shape":"PatchCVEIdList"},
7326
+ "Name":{"shape":"PatchName"},
7327
+ "Epoch":{"shape":"PatchEpoch"},
7328
+ "Version":{"shape":"PatchVersion"},
7329
+ "Release":{"shape":"PatchRelease"},
7330
+ "Arch":{"shape":"PatchArch"},
7331
+ "Severity":{"shape":"PatchSeverity"},
7332
+ "Repository":{"shape":"PatchRepository"}
7323
7333
  }
7324
7334
  },
7325
7335
  "PatchAction":{
@@ -7329,6 +7339,12 @@
7329
7339
  "BLOCK"
7330
7340
  ]
7331
7341
  },
7342
+ "PatchAdvisoryId":{"type":"string"},
7343
+ "PatchAdvisoryIdList":{
7344
+ "type":"list",
7345
+ "member":{"shape":"PatchAdvisoryId"}
7346
+ },
7347
+ "PatchArch":{"type":"string"},
7332
7348
  "PatchBaselineIdentity":{
7333
7349
  "type":"structure",
7334
7350
  "members":{
@@ -7348,6 +7364,16 @@
7348
7364
  "max":100,
7349
7365
  "min":1
7350
7366
  },
7367
+ "PatchBugzillaId":{"type":"string"},
7368
+ "PatchBugzillaIdList":{
7369
+ "type":"list",
7370
+ "member":{"shape":"PatchBugzillaId"}
7371
+ },
7372
+ "PatchCVEId":{"type":"string"},
7373
+ "PatchCVEIdList":{
7374
+ "type":"list",
7375
+ "member":{"shape":"PatchCVEId"}
7376
+ },
7351
7377
  "PatchClassification":{"type":"string"},
7352
7378
  "PatchComplianceData":{
7353
7379
  "type":"structure",
@@ -7411,6 +7437,7 @@
7411
7437
  ]
7412
7438
  },
7413
7439
  "PatchDescription":{"type":"string"},
7440
+ "PatchEpoch":{"type":"integer"},
7414
7441
  "PatchFailedCount":{"type":"integer"},
7415
7442
  "PatchFilter":{
7416
7443
  "type":"structure",
@@ -7433,15 +7460,25 @@
7433
7460
  "PatchFilterKey":{
7434
7461
  "type":"string",
7435
7462
  "enum":[
7463
+ "ARCH",
7464
+ "ADVISORY_ID",
7465
+ "BUGZILLA_ID",
7436
7466
  "PATCH_SET",
7437
7467
  "PRODUCT",
7438
7468
  "PRODUCT_FAMILY",
7439
7469
  "CLASSIFICATION",
7470
+ "CVE_ID",
7471
+ "EPOCH",
7440
7472
  "MSRC_SEVERITY",
7473
+ "NAME",
7441
7474
  "PATCH_ID",
7442
7475
  "SECTION",
7443
7476
  "PRIORITY",
7444
- "SEVERITY"
7477
+ "REPOSITORY",
7478
+ "RELEASE",
7479
+ "SEVERITY",
7480
+ "SECURITY",
7481
+ "VERSION"
7445
7482
  ]
7446
7483
  },
7447
7484
  "PatchFilterList":{
@@ -7506,6 +7543,7 @@
7506
7543
  "PatchMissingCount":{"type":"integer"},
7507
7544
  "PatchMsrcNumber":{"type":"string"},
7508
7545
  "PatchMsrcSeverity":{"type":"string"},
7546
+ "PatchName":{"type":"string"},
7509
7547
  "PatchNotApplicableCount":{"type":"integer"},
7510
7548
  "PatchOperationType":{
7511
7549
  "type":"string",
@@ -7563,6 +7601,8 @@
7563
7601
  "key":{"shape":"AttributeName"},
7564
7602
  "value":{"shape":"AttributeValue"}
7565
7603
  },
7604
+ "PatchRelease":{"type":"string"},
7605
+ "PatchRepository":{"type":"string"},
7566
7606
  "PatchRule":{
7567
7607
  "type":"structure",
7568
7608
  "required":["PatchFilterGroup"],
@@ -7660,6 +7700,7 @@
7660
7700
  "PatchTitle":{"type":"string"},
7661
7701
  "PatchUnreportedNotApplicableCount":{"type":"integer"},
7662
7702
  "PatchVendor":{"type":"string"},
7703
+ "PatchVersion":{"type":"string"},
7663
7704
  "PingStatus":{
7664
7705
  "type":"string",
7665
7706
  "enum":[
@@ -542,7 +542,8 @@
542
542
  "AddressAllocationIds":{"shape":"AddressAllocationIds"},
543
543
  "SubnetIds":{"shape":"SubnetIds"},
544
544
  "VpcEndpointId":{"shape":"VpcEndpointId"},
545
- "VpcId":{"shape":"VpcId"}
545
+ "VpcId":{"shape":"VpcId"},
546
+ "SecurityGroupIds":{"shape":"SecurityGroupIds"}
546
547
  }
547
548
  },
548
549
  "EndpointType":{
@@ -837,6 +838,16 @@
837
838
  "min":20,
838
839
  "pattern":"arn:.*role/.*"
839
840
  },
841
+ "SecurityGroupId":{
842
+ "type":"string",
843
+ "max":20,
844
+ "min":11,
845
+ "pattern":"^sg-[0-9a-f]{8,17}$"
846
+ },
847
+ "SecurityGroupIds":{
848
+ "type":"list",
849
+ "member":{"shape":"SecurityGroupId"}
850
+ },
840
851
  "SecurityPolicyName":{
841
852
  "type":"string",
842
853
  "max":100,
@@ -106,6 +106,23 @@
106
106
  ],
107
107
  "idempotent":true
108
108
  },
109
+ "CreateOrganization":{
110
+ "name":"CreateOrganization",
111
+ "http":{
112
+ "method":"POST",
113
+ "requestUri":"/"
114
+ },
115
+ "input":{"shape":"CreateOrganizationRequest"},
116
+ "output":{"shape":"CreateOrganizationResponse"},
117
+ "errors":[
118
+ {"shape":"InvalidParameterException"},
119
+ {"shape":"DirectoryInUseException"},
120
+ {"shape":"DirectoryUnavailableException"},
121
+ {"shape":"LimitExceededException"},
122
+ {"shape":"NameAvailabilityException"}
123
+ ],
124
+ "idempotent":true
125
+ },
109
126
  "CreateResource":{
110
127
  "name":"CreateResource",
111
128
  "http":{
@@ -212,6 +229,21 @@
212
229
  ],
213
230
  "idempotent":true
214
231
  },
232
+ "DeleteOrganization":{
233
+ "name":"DeleteOrganization",
234
+ "http":{
235
+ "method":"POST",
236
+ "requestUri":"/"
237
+ },
238
+ "input":{"shape":"DeleteOrganizationRequest"},
239
+ "output":{"shape":"DeleteOrganizationResponse"},
240
+ "errors":[
241
+ {"shape":"InvalidParameterException"},
242
+ {"shape":"OrganizationNotFoundException"},
243
+ {"shape":"OrganizationStateException"}
244
+ ],
245
+ "idempotent":true
246
+ },
215
247
  "DeleteResource":{
216
248
  "name":"DeleteResource",
217
249
  "http":{
@@ -976,6 +1008,27 @@
976
1008
  "GroupId":{"shape":"WorkMailIdentifier"}
977
1009
  }
978
1010
  },
1011
+ "CreateOrganizationRequest":{
1012
+ "type":"structure",
1013
+ "required":["Alias"],
1014
+ "members":{
1015
+ "DirectoryId":{"shape":"DirectoryId"},
1016
+ "Alias":{"shape":"OrganizationName"},
1017
+ "ClientToken":{
1018
+ "shape":"IdempotencyClientToken",
1019
+ "idempotencyToken":true
1020
+ },
1021
+ "Domains":{"shape":"Domains"},
1022
+ "KmsKeyArn":{"shape":"KmsKeyArn"},
1023
+ "EnableInteroperability":{"shape":"Boolean"}
1024
+ }
1025
+ },
1026
+ "CreateOrganizationResponse":{
1027
+ "type":"structure",
1028
+ "members":{
1029
+ "OrganizationId":{"shape":"OrganizationId"}
1030
+ }
1031
+ },
979
1032
  "CreateResourceRequest":{
980
1033
  "type":"structure",
981
1034
  "required":[
@@ -1095,6 +1148,28 @@
1095
1148
  "members":{
1096
1149
  }
1097
1150
  },
1151
+ "DeleteOrganizationRequest":{
1152
+ "type":"structure",
1153
+ "required":[
1154
+ "OrganizationId",
1155
+ "DeleteDirectory"
1156
+ ],
1157
+ "members":{
1158
+ "ClientToken":{
1159
+ "shape":"IdempotencyClientToken",
1160
+ "idempotencyToken":true
1161
+ },
1162
+ "OrganizationId":{"shape":"OrganizationId"},
1163
+ "DeleteDirectory":{"shape":"Boolean"}
1164
+ }
1165
+ },
1166
+ "DeleteOrganizationResponse":{
1167
+ "type":"structure",
1168
+ "members":{
1169
+ "OrganizationId":{"shape":"OrganizationId"},
1170
+ "State":{"shape":"String"}
1171
+ }
1172
+ },
1098
1173
  "DeleteResourceRequest":{
1099
1174
  "type":"structure",
1100
1175
  "required":[
@@ -1284,6 +1359,19 @@
1284
1359
  "min":0,
1285
1360
  "pattern":"[\\S\\s]*"
1286
1361
  },
1362
+ "DirectoryId":{
1363
+ "type":"string",
1364
+ "max":12,
1365
+ "min":12,
1366
+ "pattern":"^d-[0-9a-f]{10}$"
1367
+ },
1368
+ "DirectoryInUseException":{
1369
+ "type":"structure",
1370
+ "members":{
1371
+ "Message":{"shape":"String"}
1372
+ },
1373
+ "exception":true
1374
+ },
1287
1375
  "DirectoryServiceAuthenticationFailedException":{
1288
1376
  "type":"structure",
1289
1377
  "members":{
@@ -1334,11 +1422,30 @@
1334
1422
  "members":{
1335
1423
  }
1336
1424
  },
1425
+ "Domain":{
1426
+ "type":"structure",
1427
+ "members":{
1428
+ "DomainName":{"shape":"DomainName"},
1429
+ "HostedZoneId":{"shape":"HostedZoneId"}
1430
+ }
1431
+ },
1432
+ "DomainName":{
1433
+ "type":"string",
1434
+ "max":255,
1435
+ "min":3,
1436
+ "pattern":"[a-zA-Z0-9.-]+\\.[a-zA-Z-]{2,}"
1437
+ },
1438
+ "Domains":{
1439
+ "type":"list",
1440
+ "member":{"shape":"Domain"},
1441
+ "max":5,
1442
+ "min":0
1443
+ },
1337
1444
  "EmailAddress":{
1338
1445
  "type":"string",
1339
1446
  "max":254,
1340
1447
  "min":1,
1341
- "pattern":"[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}"
1448
+ "pattern":"[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z-]{2,}"
1342
1449
  },
1343
1450
  "EmailAddressInUseException":{
1344
1451
  "type":"structure",
@@ -1479,6 +1586,12 @@
1479
1586
  "type":"list",
1480
1587
  "member":{"shape":"Group"}
1481
1588
  },
1589
+ "HostedZoneId":{
1590
+ "type":"string",
1591
+ "max":32,
1592
+ "min":1,
1593
+ "pattern":"[\\S\\s]*"
1594
+ },
1482
1595
  "IdempotencyClientToken":{
1483
1596
  "type":"string",
1484
1597
  "max":128,
@@ -1821,17 +1934,20 @@
1821
1934
  "NextToken":{
1822
1935
  "type":"string",
1823
1936
  "max":1024,
1824
- "min":1
1937
+ "min":1,
1938
+ "pattern":"[\\S\\s]*|[a-zA-Z0-9/+=]{1,1024}"
1825
1939
  },
1826
1940
  "OrganizationId":{
1827
1941
  "type":"string",
1942
+ "max":34,
1943
+ "min":34,
1828
1944
  "pattern":"^m-[0-9a-f]{32}$"
1829
1945
  },
1830
1946
  "OrganizationName":{
1831
1947
  "type":"string",
1832
1948
  "max":62,
1833
1949
  "min":1,
1834
- "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*"
1950
+ "pattern":"^(?!d-)([\\da-zA-Z]+)([-][\\da-zA-Z]+)*"
1835
1951
  },
1836
1952
  "OrganizationNotFoundException":{
1837
1953
  "type":"structure",
@@ -1856,6 +1972,7 @@
1856
1972
  "members":{
1857
1973
  "OrganizationId":{"shape":"OrganizationId"},
1858
1974
  "Alias":{"shape":"OrganizationName"},
1975
+ "DefaultMailDomain":{"shape":"DomainName"},
1859
1976
  "ErrorMessage":{"shape":"String"},
1860
1977
  "State":{"shape":"String"}
1861
1978
  }
@@ -2033,13 +2150,15 @@
2033
2150
  },
2034
2151
  "ResourceId":{
2035
2152
  "type":"string",
2153
+ "max":34,
2154
+ "min":34,
2036
2155
  "pattern":"^r-[0-9a-f]{32}$"
2037
2156
  },
2038
2157
  "ResourceName":{
2039
2158
  "type":"string",
2040
2159
  "max":20,
2041
2160
  "min":1,
2042
- "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9]{2,})?"
2161
+ "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9-]{2,})?"
2043
2162
  },
2044
2163
  "ResourceNotFoundException":{
2045
2164
  "type":"structure",
@@ -2288,7 +2407,7 @@
2288
2407
  "type":"string",
2289
2408
  "max":64,
2290
2409
  "min":1,
2291
- "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9]{2,})?"
2410
+ "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9-]{2,})?"
2292
2411
  },
2293
2412
  "UserRole":{
2294
2413
  "type":"string",