Skip to content

Commit cd68bc5

Browse files
author
AWS
committed
AWS Migration Hub Refactor Spaces Update: This release adds support for creating environments with a network fabric type of NONE
1 parent f9b2507 commit cd68bc5

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-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 Migration Hub Refactor Spaces",
4+
"contributor": "",
5+
"description": "This release adds support for creating environments with a network fabric type of NONE"
6+
}

services/migrationhubrefactorspaces/src/main/resources/codegen-resources/endpoint-rule-set.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"parameters": {
44
"Region": {
55
"builtIn": "AWS::Region",
6-
"required": false,
6+
"required": true,
77
"documentation": "The AWS region used to dispatch the request.",
88
"type": "String"
99
},
@@ -52,15 +52,6 @@
5252
"ref": "Endpoint"
5353
}
5454
]
55-
},
56-
{
57-
"fn": "parseURL",
58-
"argv": [
59-
{
60-
"ref": "Endpoint"
61-
}
62-
],
63-
"assign": "url"
6455
}
6556
],
6657
"type": "tree",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
}
99
},
1010
"params": {
11-
"UseFIPS": false,
1211
"Region": "us-east-1",
1312
"UseDualStack": false,
13+
"UseFIPS": false,
1414
"Endpoint": "https://example.com"
1515
}
1616
},
@@ -20,9 +20,9 @@
2020
"error": "Invalid Configuration: FIPS and custom endpoint are not supported"
2121
},
2222
"params": {
23-
"UseFIPS": true,
2423
"Region": "us-east-1",
2524
"UseDualStack": false,
25+
"UseFIPS": true,
2626
"Endpoint": "https://example.com"
2727
}
2828
},
@@ -32,9 +32,9 @@
3232
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
3333
},
3434
"params": {
35-
"UseFIPS": false,
3635
"Region": "us-east-1",
3736
"UseDualStack": true,
37+
"UseFIPS": false,
3838
"Endpoint": "https://example.com"
3939
}
4040
}

services/migrationhubrefactorspaces/src/main/resources/codegen-resources/service-2.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
{"shape":"ThrottlingException"},
5151
{"shape":"AccessDeniedException"}
5252
],
53-
"documentation":"<p>Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the <i>environment owner</i>. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with. When creating an environment, Refactor Spaces provisions a transit gateway in your account.</p>"
53+
"documentation":"<p>Creates an Amazon Web Services Migration Hub Refactor Spaces environment. The caller owns the environment resource, and all Refactor Spaces applications, services, and routes created within the environment. They are referred to as the <i>environment owner</i>. The environment owner has cross-account visibility and control of Refactor Spaces resources that are added to the environment by other accounts that the environment is shared with.</p> <p>When creating an environment with a network fabric type of <code>TRANSIT_GATEWAY</code>, Refactor Spaces provisions a transit gateway in your account.</p>"
5454
},
5555
"CreateRoute":{
5656
"name":"CreateRoute",
@@ -2234,7 +2234,10 @@
22342234
},
22352235
"NetworkFabricType":{
22362236
"type":"string",
2237-
"enum":["TRANSIT_GATEWAY"]
2237+
"enum":[
2238+
"TRANSIT_GATEWAY",
2239+
"NONE"
2240+
]
22382241
},
22392242
"NextToken":{
22402243
"type":"string",

0 commit comments

Comments
 (0)