Skip to content

Commit 5b18eb2

Browse files
author
awstools
committed
feat(client-mgn): Added USE_SOURCE as default option to LaunchConfigurationTemplate bootMode parameter.
1 parent eca6f2c commit 5b18eb2

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

clients/client-mgn/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,26 @@
3333
"@aws-sdk/util-user-agent-browser": "*",
3434
"@aws-sdk/util-user-agent-node": "*",
3535
"@smithy/config-resolver": "^2.2.0",
36-
"@smithy/core": "^1.4.1",
36+
"@smithy/core": "^1.4.2",
3737
"@smithy/fetch-http-handler": "^2.5.0",
3838
"@smithy/hash-node": "^2.2.0",
3939
"@smithy/invalid-dependency": "^2.2.0",
4040
"@smithy/middleware-content-length": "^2.2.0",
41-
"@smithy/middleware-endpoint": "^2.5.0",
42-
"@smithy/middleware-retry": "^2.3.0",
41+
"@smithy/middleware-endpoint": "^2.5.1",
42+
"@smithy/middleware-retry": "^2.3.1",
4343
"@smithy/middleware-serde": "^2.3.0",
4444
"@smithy/middleware-stack": "^2.2.0",
4545
"@smithy/node-config-provider": "^2.3.0",
4646
"@smithy/node-http-handler": "^2.5.0",
4747
"@smithy/protocol-http": "^3.3.0",
48-
"@smithy/smithy-client": "^2.5.0",
48+
"@smithy/smithy-client": "^2.5.1",
4949
"@smithy/types": "^2.12.0",
5050
"@smithy/url-parser": "^2.2.0",
5151
"@smithy/util-base64": "^2.3.0",
5252
"@smithy/util-body-length-browser": "^2.2.0",
5353
"@smithy/util-body-length-node": "^2.3.0",
54-
"@smithy/util-defaults-mode-browser": "^2.2.0",
55-
"@smithy/util-defaults-mode-node": "^2.3.0",
54+
"@smithy/util-defaults-mode-browser": "^2.2.1",
55+
"@smithy/util-defaults-mode-node": "^2.3.1",
5656
"@smithy/util-endpoints": "^1.2.0",
5757
"@smithy/util-middleware": "^2.2.0",
5858
"@smithy/util-retry": "^2.2.0",

clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export interface UpdateLaunchConfigurationCommandOutput extends LaunchConfigurat
2828

2929
/**
3030
* <p>Updates multiple LaunchConfigurations by Source Server ID.</p>
31+
* <note>
32+
* <p>bootMode valid values are <code>LEGACY_BIOS | UEFI</code>
33+
* </p>
34+
* </note>
3135
* @example
3236
* Use a bare-bones client and the command you need to make an API call.
3337
* ```javascript

clients/client-mgn/src/models/models_0.ts

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export const ActionCategory = {
3838
OBSERVABILITY: "OBSERVABILITY",
3939
OPERATING_SYSTEM: "OPERATING_SYSTEM",
4040
OTHER: "OTHER",
41+
REFACTORING: "REFACTORING",
4142
SECURITY: "SECURITY",
4243
VALIDATION: "VALIDATION",
4344
} as const;
@@ -2081,6 +2082,7 @@ export interface DescribeJobsResponse {
20812082
export const BootMode = {
20822083
LEGACY_BIOS: "LEGACY_BIOS",
20832084
UEFI: "UEFI",
2085+
USE_SOURCE: "USE_SOURCE",
20842086
} as const;
20852087

20862088
/**

codegen/sdk-codegen/aws-models/mgn.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@
6969
"value": "OBSERVABILITY",
7070
"name": "OBSERVABILITY"
7171
},
72+
{
73+
"value": "REFACTORING",
74+
"name": "REFACTORING"
75+
},
7276
{
7377
"value": "SECURITY",
7478
"name": "SECURITY"
@@ -1617,6 +1621,10 @@
16171621
{
16181622
"name": "UEFI",
16191623
"value": "UEFI"
1624+
},
1625+
{
1626+
"name": "USE_SOURCE",
1627+
"value": "USE_SOURCE"
16201628
}
16211629
]
16221630
}
@@ -9722,7 +9730,7 @@
97229730
}
97239731
],
97249732
"traits": {
9725-
"smithy.api#documentation": "<p>Updates multiple LaunchConfigurations by Source Server ID.</p>",
9733+
"smithy.api#documentation": "<p>Updates multiple LaunchConfigurations by Source Server ID.</p>\n <note>\n <p>bootMode valid values are <code>LEGACY_BIOS | UEFI</code>\n </p>\n </note>",
97269734
"smithy.api#http": {
97279735
"uri": "/UpdateLaunchConfiguration",
97289736
"method": "POST",

0 commit comments

Comments
 (0)