Skip to content

Commit ec10ec5

Browse files
author
AWS
committed
AWS DataSync Update: This release adds 13 new APIs to support AWS DataSync Discovery GA.
1 parent 3352194 commit ec10ec5

File tree

4 files changed

+1371
-15
lines changed

4 files changed

+1371
-15
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS DataSync",
4+
"contributor": "",
5+
"description": "This release adds 13 new APIs to support AWS DataSync Discovery GA."
6+
}

services/datasync/src/main/resources/codegen-resources/endpoint-tests.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,17 @@
507507
"UseDualStack": true
508508
}
509509
},
510+
{
511+
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack enabled",
512+
"expect": {
513+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
514+
},
515+
"params": {
516+
"Region": "us-iso-east-1",
517+
"UseFIPS": true,
518+
"UseDualStack": true
519+
}
520+
},
510521
{
511522
"documentation": "For region us-iso-east-1 with FIPS enabled and DualStack disabled",
512523
"expect": {
@@ -520,6 +531,17 @@
520531
"UseDualStack": false
521532
}
522533
},
534+
{
535+
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack enabled",
536+
"expect": {
537+
"error": "DualStack is enabled but this partition does not support DualStack"
538+
},
539+
"params": {
540+
"Region": "us-iso-east-1",
541+
"UseFIPS": false,
542+
"UseDualStack": true
543+
}
544+
},
523545
{
524546
"documentation": "For region us-iso-east-1 with FIPS disabled and DualStack disabled",
525547
"expect": {
@@ -533,6 +555,17 @@
533555
"UseDualStack": false
534556
}
535557
},
558+
{
559+
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack enabled",
560+
"expect": {
561+
"error": "FIPS and DualStack are enabled, but this partition does not support one or both"
562+
},
563+
"params": {
564+
"Region": "us-isob-east-1",
565+
"UseFIPS": true,
566+
"UseDualStack": true
567+
}
568+
},
536569
{
537570
"documentation": "For region us-isob-east-1 with FIPS enabled and DualStack disabled",
538571
"expect": {
@@ -546,6 +579,17 @@
546579
"UseDualStack": false
547580
}
548581
},
582+
{
583+
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack enabled",
584+
"expect": {
585+
"error": "DualStack is enabled but this partition does not support DualStack"
586+
},
587+
"params": {
588+
"Region": "us-isob-east-1",
589+
"UseFIPS": false,
590+
"UseDualStack": true
591+
}
592+
},
549593
{
550594
"documentation": "For region us-isob-east-1 with FIPS disabled and DualStack disabled",
551595
"expect": {
@@ -609,6 +653,12 @@
609653
"UseDualStack": true,
610654
"Endpoint": "https://example.com"
611655
}
656+
},
657+
{
658+
"documentation": "Missing region",
659+
"expect": {
660+
"error": "Invalid Configuration: Missing Region"
661+
}
612662
}
613663
],
614664
"version": "1.0"

services/datasync/src/main/resources/codegen-resources/paginators-1.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,40 @@
11
{
22
"pagination": {
3+
"DescribeStorageSystemResourceMetrics": {
4+
"input_token": "NextToken",
5+
"output_token": "NextToken",
6+
"limit_key": "MaxResults",
7+
"result_key": "Metrics"
8+
},
9+
"DescribeStorageSystemResources": {
10+
"input_token": "NextToken",
11+
"output_token": "NextToken",
12+
"limit_key": "MaxResults"
13+
},
314
"ListAgents": {
415
"input_token": "NextToken",
516
"output_token": "NextToken",
617
"limit_key": "MaxResults",
718
"result_key": "Agents"
819
},
20+
"ListDiscoveryJobs": {
21+
"input_token": "NextToken",
22+
"output_token": "NextToken",
23+
"limit_key": "MaxResults",
24+
"result_key": "DiscoveryJobs"
25+
},
926
"ListLocations": {
1027
"input_token": "NextToken",
1128
"output_token": "NextToken",
1229
"limit_key": "MaxResults",
1330
"result_key": "Locations"
1431
},
32+
"ListStorageSystems": {
33+
"input_token": "NextToken",
34+
"output_token": "NextToken",
35+
"limit_key": "MaxResults",
36+
"result_key": "StorageSystems"
37+
},
1538
"ListTagsForResource": {
1639
"input_token": "NextToken",
1740
"output_token": "NextToken",

0 commit comments

Comments
 (0)