aws-sdk 2.1418.0 → 2.1420.0
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.
- package/CHANGELOG.md +17 -1
- package/README.md +1 -1
- package/apis/codecatalyst-2022-09-28.min.json +294 -24
- package/apis/connectcases-2022-10-03.min.json +35 -25
- package/apis/glue-2017-03-31.min.json +624 -606
- package/apis/rds-2014-10-31.min.json +4 -2
- package/apis/route53resolver-2018-04-01.min.json +201 -62
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/s3-2006-03-01.examples.json +32 -32
- package/apis/sagemaker-2017-07-24.min.json +205 -158
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/apis/securitylake-2018-05-10.min.json +139 -34
- package/apis/transcribe-2017-10-26.min.json +30 -6
- package/clients/codecatalyst.d.ts +264 -7
- package/clients/connectcases.d.ts +15 -4
- package/clients/glue.d.ts +29 -6
- package/clients/lexmodelsv2.d.ts +11 -11
- package/clients/mediaconvert.d.ts +3 -3
- package/clients/rds.d.ts +30 -22
- package/clients/route53resolver.d.ts +220 -7
- package/clients/sagemaker.d.ts +88 -10
- package/clients/sagemakerfeaturestoreruntime.d.ts +13 -13
- package/clients/savingsplans.d.ts +1 -1
- package/clients/securitylake.d.ts +93 -11
- package/clients/transcribeservice.d.ts +21 -0
- package/clients/workspaces.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +7 -5
- package/dist/aws-sdk.min.js +14 -14
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,23 @@
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
2
|
-
<!--LATEST=2.
|
2
|
+
<!--LATEST=2.1420.0-->
|
3
3
|
<!--ENTRYINSERT-->
|
4
4
|
|
5
|
+
## 2.1420.0
|
6
|
+
* feature: Glue: This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.
|
7
|
+
* feature: MediaConvert: This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.
|
8
|
+
* feature: RDS: Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.
|
9
|
+
|
10
|
+
## 2.1419.0
|
11
|
+
* feature: CodeCatalyst: This release adds support for updating and deleting spaces and projects in Amazon CodeCatalyst. It also adds support for creating, getting, and deleting source repositories in CodeCatalyst projects.
|
12
|
+
* feature: ConnectCases: This release adds the ability to assign a case to a queue or user.
|
13
|
+
* feature: LexModelsV2: This release updates type for Channel field in SessionSpecification and UtteranceSpecification
|
14
|
+
* feature: Route53Resolver: This release adds support for Route 53 On Outposts, a new feature that allows customers to run Route 53 Resolver and Resolver endpoints locally on their Outposts.
|
15
|
+
* feature: S3: Improve performance of S3 clients by simplifying and optimizing endpoint resolution.
|
16
|
+
* feature: SageMaker: Cross account support for SageMaker Feature Store
|
17
|
+
* feature: SageMakerFeatureStoreRuntime: Cross account support for SageMaker Feature Store
|
18
|
+
* feature: SecurityLake: Adding support for Tags on Create and Resource Tagging API.
|
19
|
+
* feature: TranscribeService: Added API argument --toxicity-detection to startTranscriptionJob API, which allows users to view toxicity scores of submitted audio.
|
20
|
+
|
5
21
|
## 2.1418.0
|
6
22
|
* feature: CloudFormation: SDK and documentation updates for GetTemplateSummary API (unrecognized resources)
|
7
23
|
* feature: Grafana: Amazon Managed Grafana now supports grafanaVersion update for existing workspaces with UpdateWorkspaceConfiguration API. DescribeWorkspaceConfiguration API additionally returns grafanaVersion. A new ListVersions API lists available versions or, if given a workspaceId, the versions it can upgrade to.
|
package/README.md
CHANGED
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
71
71
|
To use the SDK in the browser, simply add the following script tag to your
|
72
72
|
HTML pages:
|
73
73
|
|
74
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
74
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1420.0.min.js"></script>
|
75
75
|
|
76
76
|
You can also build a custom browser SDK with your specified set of AWS services.
|
77
77
|
This can allow you to reduce the SDK's size, specify different API versions of
|
@@ -159,6 +159,51 @@
|
|
159
159
|
},
|
160
160
|
"idempotent": true
|
161
161
|
},
|
162
|
+
"CreateSourceRepository": {
|
163
|
+
"http": {
|
164
|
+
"method": "PUT",
|
165
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
|
166
|
+
"responseCode": 201
|
167
|
+
},
|
168
|
+
"input": {
|
169
|
+
"type": "structure",
|
170
|
+
"required": [
|
171
|
+
"spaceName",
|
172
|
+
"projectName",
|
173
|
+
"name"
|
174
|
+
],
|
175
|
+
"members": {
|
176
|
+
"spaceName": {
|
177
|
+
"location": "uri",
|
178
|
+
"locationName": "spaceName"
|
179
|
+
},
|
180
|
+
"projectName": {
|
181
|
+
"location": "uri",
|
182
|
+
"locationName": "projectName"
|
183
|
+
},
|
184
|
+
"name": {
|
185
|
+
"location": "uri",
|
186
|
+
"locationName": "name"
|
187
|
+
},
|
188
|
+
"description": {}
|
189
|
+
}
|
190
|
+
},
|
191
|
+
"output": {
|
192
|
+
"type": "structure",
|
193
|
+
"required": [
|
194
|
+
"spaceName",
|
195
|
+
"projectName",
|
196
|
+
"name"
|
197
|
+
],
|
198
|
+
"members": {
|
199
|
+
"spaceName": {},
|
200
|
+
"projectName": {},
|
201
|
+
"name": {},
|
202
|
+
"description": {}
|
203
|
+
}
|
204
|
+
},
|
205
|
+
"idempotent": true
|
206
|
+
},
|
162
207
|
"CreateSourceRepositoryBranch": {
|
163
208
|
"http": {
|
164
209
|
"method": "PUT",
|
@@ -273,6 +318,116 @@
|
|
273
318
|
},
|
274
319
|
"idempotent": true
|
275
320
|
},
|
321
|
+
"DeleteProject": {
|
322
|
+
"http": {
|
323
|
+
"method": "DELETE",
|
324
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{name}",
|
325
|
+
"responseCode": 200
|
326
|
+
},
|
327
|
+
"input": {
|
328
|
+
"type": "structure",
|
329
|
+
"required": [
|
330
|
+
"spaceName",
|
331
|
+
"name"
|
332
|
+
],
|
333
|
+
"members": {
|
334
|
+
"spaceName": {
|
335
|
+
"location": "uri",
|
336
|
+
"locationName": "spaceName"
|
337
|
+
},
|
338
|
+
"name": {
|
339
|
+
"location": "uri",
|
340
|
+
"locationName": "name"
|
341
|
+
}
|
342
|
+
}
|
343
|
+
},
|
344
|
+
"output": {
|
345
|
+
"type": "structure",
|
346
|
+
"required": [
|
347
|
+
"spaceName",
|
348
|
+
"name"
|
349
|
+
],
|
350
|
+
"members": {
|
351
|
+
"spaceName": {},
|
352
|
+
"name": {},
|
353
|
+
"displayName": {}
|
354
|
+
}
|
355
|
+
},
|
356
|
+
"idempotent": true
|
357
|
+
},
|
358
|
+
"DeleteSourceRepository": {
|
359
|
+
"http": {
|
360
|
+
"method": "DELETE",
|
361
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
|
362
|
+
"responseCode": 200
|
363
|
+
},
|
364
|
+
"input": {
|
365
|
+
"type": "structure",
|
366
|
+
"required": [
|
367
|
+
"spaceName",
|
368
|
+
"projectName",
|
369
|
+
"name"
|
370
|
+
],
|
371
|
+
"members": {
|
372
|
+
"spaceName": {
|
373
|
+
"location": "uri",
|
374
|
+
"locationName": "spaceName"
|
375
|
+
},
|
376
|
+
"projectName": {
|
377
|
+
"location": "uri",
|
378
|
+
"locationName": "projectName"
|
379
|
+
},
|
380
|
+
"name": {
|
381
|
+
"location": "uri",
|
382
|
+
"locationName": "name"
|
383
|
+
}
|
384
|
+
}
|
385
|
+
},
|
386
|
+
"output": {
|
387
|
+
"type": "structure",
|
388
|
+
"required": [
|
389
|
+
"spaceName",
|
390
|
+
"projectName",
|
391
|
+
"name"
|
392
|
+
],
|
393
|
+
"members": {
|
394
|
+
"spaceName": {},
|
395
|
+
"projectName": {},
|
396
|
+
"name": {}
|
397
|
+
}
|
398
|
+
},
|
399
|
+
"idempotent": true
|
400
|
+
},
|
401
|
+
"DeleteSpace": {
|
402
|
+
"http": {
|
403
|
+
"method": "DELETE",
|
404
|
+
"requestUri": "/v1/spaces/{name}",
|
405
|
+
"responseCode": 200
|
406
|
+
},
|
407
|
+
"input": {
|
408
|
+
"type": "structure",
|
409
|
+
"required": [
|
410
|
+
"name"
|
411
|
+
],
|
412
|
+
"members": {
|
413
|
+
"name": {
|
414
|
+
"location": "uri",
|
415
|
+
"locationName": "name"
|
416
|
+
}
|
417
|
+
}
|
418
|
+
},
|
419
|
+
"output": {
|
420
|
+
"type": "structure",
|
421
|
+
"required": [
|
422
|
+
"name"
|
423
|
+
],
|
424
|
+
"members": {
|
425
|
+
"name": {},
|
426
|
+
"displayName": {}
|
427
|
+
}
|
428
|
+
},
|
429
|
+
"idempotent": true
|
430
|
+
},
|
276
431
|
"GetDevEnvironment": {
|
277
432
|
"http": {
|
278
433
|
"method": "GET",
|
@@ -326,18 +481,18 @@
|
|
326
481
|
"status": {},
|
327
482
|
"statusReason": {},
|
328
483
|
"repositories": {
|
329
|
-
"shape": "
|
484
|
+
"shape": "S1f"
|
330
485
|
},
|
331
486
|
"alias": {},
|
332
487
|
"ides": {
|
333
|
-
"shape": "
|
488
|
+
"shape": "S1i"
|
334
489
|
},
|
335
490
|
"instanceType": {},
|
336
491
|
"inactivityTimeoutMinutes": {
|
337
492
|
"type": "integer"
|
338
493
|
},
|
339
494
|
"persistentStorage": {
|
340
|
-
"shape": "
|
495
|
+
"shape": "S1m"
|
341
496
|
}
|
342
497
|
}
|
343
498
|
}
|
@@ -378,6 +533,57 @@
|
|
378
533
|
}
|
379
534
|
}
|
380
535
|
},
|
536
|
+
"GetSourceRepository": {
|
537
|
+
"http": {
|
538
|
+
"method": "GET",
|
539
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}",
|
540
|
+
"responseCode": 200
|
541
|
+
},
|
542
|
+
"input": {
|
543
|
+
"type": "structure",
|
544
|
+
"required": [
|
545
|
+
"spaceName",
|
546
|
+
"projectName",
|
547
|
+
"name"
|
548
|
+
],
|
549
|
+
"members": {
|
550
|
+
"spaceName": {
|
551
|
+
"location": "uri",
|
552
|
+
"locationName": "spaceName"
|
553
|
+
},
|
554
|
+
"projectName": {
|
555
|
+
"location": "uri",
|
556
|
+
"locationName": "projectName"
|
557
|
+
},
|
558
|
+
"name": {
|
559
|
+
"location": "uri",
|
560
|
+
"locationName": "name"
|
561
|
+
}
|
562
|
+
}
|
563
|
+
},
|
564
|
+
"output": {
|
565
|
+
"type": "structure",
|
566
|
+
"required": [
|
567
|
+
"spaceName",
|
568
|
+
"projectName",
|
569
|
+
"name",
|
570
|
+
"lastUpdatedTime",
|
571
|
+
"createdTime"
|
572
|
+
],
|
573
|
+
"members": {
|
574
|
+
"spaceName": {},
|
575
|
+
"projectName": {},
|
576
|
+
"name": {},
|
577
|
+
"description": {},
|
578
|
+
"lastUpdatedTime": {
|
579
|
+
"shape": "S1s"
|
580
|
+
},
|
581
|
+
"createdTime": {
|
582
|
+
"shape": "S1s"
|
583
|
+
}
|
584
|
+
}
|
585
|
+
}
|
586
|
+
},
|
381
587
|
"GetSourceRepositoryCloneUrls": {
|
382
588
|
"http": {
|
383
589
|
"method": "GET",
|
@@ -647,7 +853,7 @@
|
|
647
853
|
"members": {
|
648
854
|
"key": {},
|
649
855
|
"values": {
|
650
|
-
"shape": "
|
856
|
+
"shape": "S2m"
|
651
857
|
},
|
652
858
|
"comparisonOperator": {}
|
653
859
|
}
|
@@ -690,18 +896,18 @@
|
|
690
896
|
"status": {},
|
691
897
|
"statusReason": {},
|
692
898
|
"repositories": {
|
693
|
-
"shape": "
|
899
|
+
"shape": "S1f"
|
694
900
|
},
|
695
901
|
"alias": {},
|
696
902
|
"ides": {
|
697
|
-
"shape": "
|
903
|
+
"shape": "S1i"
|
698
904
|
},
|
699
905
|
"instanceType": {},
|
700
906
|
"inactivityTimeoutMinutes": {
|
701
907
|
"type": "integer"
|
702
908
|
},
|
703
909
|
"persistentStorage": {
|
704
|
-
"shape": "
|
910
|
+
"shape": "S1m"
|
705
911
|
}
|
706
912
|
}
|
707
913
|
}
|
@@ -793,10 +999,10 @@
|
|
793
999
|
},
|
794
1000
|
"requestId": {},
|
795
1001
|
"requestPayload": {
|
796
|
-
"shape": "
|
1002
|
+
"shape": "S34"
|
797
1003
|
},
|
798
1004
|
"responsePayload": {
|
799
|
-
"shape": "
|
1005
|
+
"shape": "S34"
|
800
1006
|
},
|
801
1007
|
"errorCode": {},
|
802
1008
|
"sourceIpAddress": {},
|
@@ -837,7 +1043,7 @@
|
|
837
1043
|
"members": {
|
838
1044
|
"key": {},
|
839
1045
|
"values": {
|
840
|
-
"shape": "
|
1046
|
+
"shape": "S2m"
|
841
1047
|
},
|
842
1048
|
"comparisonOperator": {}
|
843
1049
|
}
|
@@ -910,10 +1116,10 @@
|
|
910
1116
|
"name": {},
|
911
1117
|
"description": {},
|
912
1118
|
"lastUpdatedTime": {
|
913
|
-
"shape": "
|
1119
|
+
"shape": "S1s"
|
914
1120
|
},
|
915
1121
|
"createdTime": {
|
916
|
-
"shape": "
|
1122
|
+
"shape": "S1s"
|
917
1123
|
}
|
918
1124
|
}
|
919
1125
|
}
|
@@ -1131,10 +1337,10 @@
|
|
1131
1337
|
],
|
1132
1338
|
"members": {
|
1133
1339
|
"streamUrl": {
|
1134
|
-
"shape": "
|
1340
|
+
"shape": "S48"
|
1135
1341
|
},
|
1136
1342
|
"tokenValue": {
|
1137
|
-
"shape": "
|
1343
|
+
"shape": "S48"
|
1138
1344
|
}
|
1139
1345
|
},
|
1140
1346
|
"sensitive": true
|
@@ -1302,6 +1508,70 @@
|
|
1302
1508
|
},
|
1303
1509
|
"idempotent": true
|
1304
1510
|
},
|
1511
|
+
"UpdateProject": {
|
1512
|
+
"http": {
|
1513
|
+
"method": "PATCH",
|
1514
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{name}",
|
1515
|
+
"responseCode": 200
|
1516
|
+
},
|
1517
|
+
"input": {
|
1518
|
+
"type": "structure",
|
1519
|
+
"required": [
|
1520
|
+
"spaceName",
|
1521
|
+
"name"
|
1522
|
+
],
|
1523
|
+
"members": {
|
1524
|
+
"spaceName": {
|
1525
|
+
"location": "uri",
|
1526
|
+
"locationName": "spaceName"
|
1527
|
+
},
|
1528
|
+
"name": {
|
1529
|
+
"location": "uri",
|
1530
|
+
"locationName": "name"
|
1531
|
+
},
|
1532
|
+
"description": {}
|
1533
|
+
}
|
1534
|
+
},
|
1535
|
+
"output": {
|
1536
|
+
"type": "structure",
|
1537
|
+
"members": {
|
1538
|
+
"spaceName": {},
|
1539
|
+
"name": {},
|
1540
|
+
"displayName": {},
|
1541
|
+
"description": {}
|
1542
|
+
}
|
1543
|
+
},
|
1544
|
+
"idempotent": true
|
1545
|
+
},
|
1546
|
+
"UpdateSpace": {
|
1547
|
+
"http": {
|
1548
|
+
"method": "PATCH",
|
1549
|
+
"requestUri": "/v1/spaces/{name}",
|
1550
|
+
"responseCode": 200
|
1551
|
+
},
|
1552
|
+
"input": {
|
1553
|
+
"type": "structure",
|
1554
|
+
"required": [
|
1555
|
+
"name"
|
1556
|
+
],
|
1557
|
+
"members": {
|
1558
|
+
"name": {
|
1559
|
+
"location": "uri",
|
1560
|
+
"locationName": "name"
|
1561
|
+
},
|
1562
|
+
"description": {}
|
1563
|
+
}
|
1564
|
+
},
|
1565
|
+
"output": {
|
1566
|
+
"type": "structure",
|
1567
|
+
"members": {
|
1568
|
+
"name": {},
|
1569
|
+
"displayName": {},
|
1570
|
+
"description": {}
|
1571
|
+
}
|
1572
|
+
},
|
1573
|
+
"idempotent": true
|
1574
|
+
},
|
1305
1575
|
"VerifySession": {
|
1306
1576
|
"http": {
|
1307
1577
|
"method": "GET",
|
@@ -1331,7 +1601,7 @@
|
|
1331
1601
|
}
|
1332
1602
|
}
|
1333
1603
|
},
|
1334
|
-
"
|
1604
|
+
"S1f": {
|
1335
1605
|
"type": "list",
|
1336
1606
|
"member": {
|
1337
1607
|
"type": "structure",
|
@@ -1344,7 +1614,7 @@
|
|
1344
1614
|
}
|
1345
1615
|
}
|
1346
1616
|
},
|
1347
|
-
"
|
1617
|
+
"S1i": {
|
1348
1618
|
"type": "list",
|
1349
1619
|
"member": {
|
1350
1620
|
"type": "structure",
|
@@ -1354,7 +1624,7 @@
|
|
1354
1624
|
}
|
1355
1625
|
}
|
1356
1626
|
},
|
1357
|
-
"
|
1627
|
+
"S1m": {
|
1358
1628
|
"type": "structure",
|
1359
1629
|
"required": [
|
1360
1630
|
"sizeInGiB"
|
@@ -1365,22 +1635,22 @@
|
|
1365
1635
|
}
|
1366
1636
|
}
|
1367
1637
|
},
|
1368
|
-
"
|
1638
|
+
"S1s": {
|
1639
|
+
"type": "timestamp",
|
1640
|
+
"timestampFormat": "iso8601"
|
1641
|
+
},
|
1642
|
+
"S2m": {
|
1369
1643
|
"type": "list",
|
1370
1644
|
"member": {}
|
1371
1645
|
},
|
1372
|
-
"
|
1646
|
+
"S34": {
|
1373
1647
|
"type": "structure",
|
1374
1648
|
"members": {
|
1375
1649
|
"contentType": {},
|
1376
1650
|
"data": {}
|
1377
1651
|
}
|
1378
1652
|
},
|
1379
|
-
"
|
1380
|
-
"type": "timestamp",
|
1381
|
-
"timestampFormat": "iso8601"
|
1382
|
-
},
|
1383
|
-
"S3y": {
|
1653
|
+
"S48": {
|
1384
1654
|
"type": "string",
|
1385
1655
|
"sensitive": true
|
1386
1656
|
}
|
@@ -259,7 +259,7 @@
|
|
259
259
|
],
|
260
260
|
"members": {
|
261
261
|
"content": {
|
262
|
-
"shape": "
|
262
|
+
"shape": "S1b"
|
263
263
|
},
|
264
264
|
"domainId": {
|
265
265
|
"location": "uri",
|
@@ -302,7 +302,7 @@
|
|
302
302
|
"type": "structure",
|
303
303
|
"members": {
|
304
304
|
"comment": {
|
305
|
-
"shape": "
|
305
|
+
"shape": "S1q"
|
306
306
|
},
|
307
307
|
"contact": {
|
308
308
|
"type": "structure",
|
@@ -354,11 +354,11 @@
|
|
354
354
|
"locationName": "domainId"
|
355
355
|
},
|
356
356
|
"layoutConfiguration": {
|
357
|
-
"shape": "
|
357
|
+
"shape": "S21"
|
358
358
|
},
|
359
359
|
"name": {},
|
360
360
|
"requiredFields": {
|
361
|
-
"shape": "
|
361
|
+
"shape": "S23"
|
362
362
|
},
|
363
363
|
"status": {}
|
364
364
|
}
|
@@ -475,7 +475,7 @@
|
|
475
475
|
],
|
476
476
|
"members": {
|
477
477
|
"eventBridge": {
|
478
|
-
"shape": "
|
478
|
+
"shape": "S2h"
|
479
479
|
}
|
480
480
|
}
|
481
481
|
}
|
@@ -553,7 +553,7 @@
|
|
553
553
|
],
|
554
554
|
"members": {
|
555
555
|
"content": {
|
556
|
-
"shape": "
|
556
|
+
"shape": "S1b"
|
557
557
|
},
|
558
558
|
"layoutArn": {},
|
559
559
|
"layoutId": {},
|
@@ -597,11 +597,11 @@
|
|
597
597
|
"members": {
|
598
598
|
"description": {},
|
599
599
|
"layoutConfiguration": {
|
600
|
-
"shape": "
|
600
|
+
"shape": "S21"
|
601
601
|
},
|
602
602
|
"name": {},
|
603
603
|
"requiredFields": {
|
604
|
-
"shape": "
|
604
|
+
"shape": "S23"
|
605
605
|
},
|
606
606
|
"status": {},
|
607
607
|
"tags": {
|
@@ -971,7 +971,7 @@
|
|
971
971
|
"locationName": "domainId"
|
972
972
|
},
|
973
973
|
"eventBridge": {
|
974
|
-
"shape": "
|
974
|
+
"shape": "S2h"
|
975
975
|
}
|
976
976
|
}
|
977
977
|
},
|
@@ -1002,7 +1002,7 @@
|
|
1002
1002
|
}
|
1003
1003
|
},
|
1004
1004
|
"filter": {
|
1005
|
-
"shape": "
|
1005
|
+
"shape": "S3t"
|
1006
1006
|
},
|
1007
1007
|
"maxResults": {
|
1008
1008
|
"type": "integer"
|
@@ -1134,7 +1134,7 @@
|
|
1134
1134
|
"type": "structure",
|
1135
1135
|
"members": {
|
1136
1136
|
"comment": {
|
1137
|
-
"shape": "
|
1137
|
+
"shape": "S1q"
|
1138
1138
|
},
|
1139
1139
|
"contact": {
|
1140
1140
|
"type": "structure",
|
@@ -1296,7 +1296,7 @@
|
|
1296
1296
|
],
|
1297
1297
|
"members": {
|
1298
1298
|
"content": {
|
1299
|
-
"shape": "
|
1299
|
+
"shape": "S1b"
|
1300
1300
|
},
|
1301
1301
|
"domainId": {
|
1302
1302
|
"location": "uri",
|
@@ -1334,11 +1334,11 @@
|
|
1334
1334
|
"locationName": "domainId"
|
1335
1335
|
},
|
1336
1336
|
"layoutConfiguration": {
|
1337
|
-
"shape": "
|
1337
|
+
"shape": "S21"
|
1338
1338
|
},
|
1339
1339
|
"name": {},
|
1340
1340
|
"requiredFields": {
|
1341
|
-
"shape": "
|
1341
|
+
"shape": "S23"
|
1342
1342
|
},
|
1343
1343
|
"status": {},
|
1344
1344
|
"templateId": {
|
@@ -1401,30 +1401,34 @@
|
|
1401
1401
|
"doubleValue": {
|
1402
1402
|
"type": "double"
|
1403
1403
|
},
|
1404
|
+
"emptyValue": {
|
1405
|
+
"type": "structure",
|
1406
|
+
"members": {}
|
1407
|
+
},
|
1404
1408
|
"stringValue": {}
|
1405
1409
|
},
|
1406
1410
|
"union": true
|
1407
1411
|
}
|
1408
1412
|
}
|
1409
1413
|
},
|
1410
|
-
"
|
1414
|
+
"S1b": {
|
1411
1415
|
"type": "structure",
|
1412
1416
|
"members": {
|
1413
1417
|
"basic": {
|
1414
1418
|
"type": "structure",
|
1415
1419
|
"members": {
|
1416
1420
|
"moreInfo": {
|
1417
|
-
"shape": "
|
1421
|
+
"shape": "S1d"
|
1418
1422
|
},
|
1419
1423
|
"topPanel": {
|
1420
|
-
"shape": "
|
1424
|
+
"shape": "S1d"
|
1421
1425
|
}
|
1422
1426
|
}
|
1423
1427
|
}
|
1424
1428
|
},
|
1425
1429
|
"union": true
|
1426
1430
|
},
|
1427
|
-
"
|
1431
|
+
"S1d": {
|
1428
1432
|
"type": "structure",
|
1429
1433
|
"members": {
|
1430
1434
|
"sections": {
|
@@ -1459,7 +1463,7 @@
|
|
1459
1463
|
}
|
1460
1464
|
}
|
1461
1465
|
},
|
1462
|
-
"
|
1466
|
+
"S1q": {
|
1463
1467
|
"type": "structure",
|
1464
1468
|
"required": [
|
1465
1469
|
"body",
|
@@ -1470,13 +1474,13 @@
|
|
1470
1474
|
"contentType": {}
|
1471
1475
|
}
|
1472
1476
|
},
|
1473
|
-
"
|
1477
|
+
"S21": {
|
1474
1478
|
"type": "structure",
|
1475
1479
|
"members": {
|
1476
1480
|
"defaultLayout": {}
|
1477
1481
|
}
|
1478
1482
|
},
|
1479
|
-
"
|
1483
|
+
"S23": {
|
1480
1484
|
"type": "list",
|
1481
1485
|
"member": {
|
1482
1486
|
"type": "structure",
|
@@ -1488,7 +1492,7 @@
|
|
1488
1492
|
}
|
1489
1493
|
}
|
1490
1494
|
},
|
1491
|
-
"
|
1495
|
+
"S2h": {
|
1492
1496
|
"type": "structure",
|
1493
1497
|
"required": [
|
1494
1498
|
"enabled"
|
@@ -1529,13 +1533,13 @@
|
|
1529
1533
|
}
|
1530
1534
|
}
|
1531
1535
|
},
|
1532
|
-
"
|
1536
|
+
"S3t": {
|
1533
1537
|
"type": "structure",
|
1534
1538
|
"members": {
|
1535
1539
|
"andAll": {
|
1536
1540
|
"type": "list",
|
1537
1541
|
"member": {
|
1538
|
-
"shape": "
|
1542
|
+
"shape": "S3t"
|
1539
1543
|
}
|
1540
1544
|
},
|
1541
1545
|
"field": {
|
@@ -1563,7 +1567,13 @@
|
|
1563
1567
|
"union": true
|
1564
1568
|
},
|
1565
1569
|
"not": {
|
1566
|
-
"shape": "
|
1570
|
+
"shape": "S3t"
|
1571
|
+
},
|
1572
|
+
"orAll": {
|
1573
|
+
"type": "list",
|
1574
|
+
"member": {
|
1575
|
+
"shape": "S3t"
|
1576
|
+
}
|
1567
1577
|
}
|
1568
1578
|
},
|
1569
1579
|
"union": true
|