@aws-sdk/client-drs 3.410.0 → 3.413.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/README.md +24 -0
- package/dist-cjs/Drs.js +6 -0
- package/dist-cjs/commands/DeleteLaunchActionCommand.js +46 -0
- package/dist-cjs/commands/ListLaunchActionsCommand.js +46 -0
- package/dist-cjs/commands/PutLaunchActionCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +22 -2
- package/dist-cjs/pagination/ListLaunchActionsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +233 -2
- package/dist-es/Drs.js +6 -0
- package/dist-es/commands/DeleteLaunchActionCommand.js +42 -0
- package/dist-es/commands/ListLaunchActionsCommand.js +42 -0
- package/dist-es/commands/PutLaunchActionCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListLaunchActionsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +226 -1
- package/dist-types/Drs.d.ts +21 -0
- package/dist-types/DrsClient.d.ts +5 -2
- package/dist-types/commands/AssociateSourceNetworkStackCommand.d.ts +28 -0
- package/dist-types/commands/CreateLaunchConfigurationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/DeleteLaunchActionCommand.d.ts +87 -0
- package/dist-types/commands/DescribeJobsCommand.d.ts +28 -0
- package/dist-types/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +1 -0
- package/dist-types/commands/GetLaunchConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/ListLaunchActionsCommand.d.ts +115 -0
- package/dist-types/commands/PutLaunchActionCommand.d.ts +122 -0
- package/dist-types/commands/StartFailbackLaunchCommand.d.ts +28 -0
- package/dist-types/commands/StartRecoveryCommand.d.ts +28 -0
- package/dist-types/commands/StartSourceNetworkRecoveryCommand.d.ts +28 -0
- package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +28 -0
- package/dist-types/commands/UpdateLaunchConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +397 -0
- package/dist-types/pagination/ListLaunchActionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/Drs.d.ts +51 -0
- package/dist-types/ts3.4/DrsClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteLaunchActionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListLaunchActionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PutLaunchActionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +106 -0
- package/dist-types/ts3.4/pagination/ListLaunchActionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +28 -28
|
@@ -119,6 +119,177 @@ export interface ParticipatingResource {
|
|
|
119
119
|
*/
|
|
120
120
|
launchStatus?: LaunchStatus | string;
|
|
121
121
|
}
|
|
122
|
+
/**
|
|
123
|
+
* @public
|
|
124
|
+
* @enum
|
|
125
|
+
*/
|
|
126
|
+
export declare const LaunchActionCategory: {
|
|
127
|
+
readonly CONFIGURATION: "CONFIGURATION";
|
|
128
|
+
readonly MONITORING: "MONITORING";
|
|
129
|
+
readonly OTHER: "OTHER";
|
|
130
|
+
readonly SECURITY: "SECURITY";
|
|
131
|
+
readonly VALIDATION: "VALIDATION";
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export type LaunchActionCategory = (typeof LaunchActionCategory)[keyof typeof LaunchActionCategory];
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
* @enum
|
|
140
|
+
*/
|
|
141
|
+
export declare const LaunchActionParameterType: {
|
|
142
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
143
|
+
readonly SSM_STORE: "SSM_STORE";
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
export type LaunchActionParameterType = (typeof LaunchActionParameterType)[keyof typeof LaunchActionParameterType];
|
|
149
|
+
/**
|
|
150
|
+
* @public
|
|
151
|
+
* <p>Launch action parameter.</p>
|
|
152
|
+
*/
|
|
153
|
+
export interface LaunchActionParameter {
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* <p>Value.</p>
|
|
157
|
+
*/
|
|
158
|
+
value?: string;
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
* <p>Type.</p>
|
|
162
|
+
*/
|
|
163
|
+
type?: LaunchActionParameterType | string;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
* @enum
|
|
168
|
+
*/
|
|
169
|
+
export declare const LaunchActionType: {
|
|
170
|
+
readonly SSM_AUTOMATION: "SSM_AUTOMATION";
|
|
171
|
+
readonly SSM_COMMAND: "SSM_COMMAND";
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
export type LaunchActionType = (typeof LaunchActionType)[keyof typeof LaunchActionType];
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* <p>Launch action.</p>
|
|
180
|
+
*/
|
|
181
|
+
export interface LaunchAction {
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
* <p>Launch action Id.</p>
|
|
185
|
+
*/
|
|
186
|
+
actionId?: string;
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* <p>Launch action code.</p>
|
|
190
|
+
*/
|
|
191
|
+
actionCode?: string;
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
* <p>Launch action type.</p>
|
|
195
|
+
*/
|
|
196
|
+
type?: LaunchActionType | string;
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
* <p>Launch action name.</p>
|
|
200
|
+
*/
|
|
201
|
+
name?: string;
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
* <p>Whether the launch action is active.</p>
|
|
205
|
+
*/
|
|
206
|
+
active?: boolean;
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
* <p>Launch action order.</p>
|
|
210
|
+
*/
|
|
211
|
+
order?: number;
|
|
212
|
+
/**
|
|
213
|
+
* @public
|
|
214
|
+
* <p>Launch action version.</p>
|
|
215
|
+
*/
|
|
216
|
+
actionVersion?: string;
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* <p>Whether the launch will not be marked as failed if this action fails.</p>
|
|
220
|
+
*/
|
|
221
|
+
optional?: boolean;
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
* <p>Launch action parameters.</p>
|
|
225
|
+
*/
|
|
226
|
+
parameters?: Record<string, LaunchActionParameter>;
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
* <p>Launch action description.</p>
|
|
230
|
+
*/
|
|
231
|
+
description?: string;
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
* <p>Launch action category.</p>
|
|
235
|
+
*/
|
|
236
|
+
category?: LaunchActionCategory | string;
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const LaunchActionRunStatus: {
|
|
243
|
+
readonly FAILED: "FAILED";
|
|
244
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
245
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export type LaunchActionRunStatus = (typeof LaunchActionRunStatus)[keyof typeof LaunchActionRunStatus];
|
|
251
|
+
/**
|
|
252
|
+
* @public
|
|
253
|
+
* <p>Launch action run.</p>
|
|
254
|
+
*/
|
|
255
|
+
export interface LaunchActionRun {
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
* <p>Action.</p>
|
|
259
|
+
*/
|
|
260
|
+
action?: LaunchAction;
|
|
261
|
+
/**
|
|
262
|
+
* @public
|
|
263
|
+
* <p>Run Id.</p>
|
|
264
|
+
*/
|
|
265
|
+
runId?: string;
|
|
266
|
+
/**
|
|
267
|
+
* @public
|
|
268
|
+
* <p>Run status.</p>
|
|
269
|
+
*/
|
|
270
|
+
status?: LaunchActionRunStatus | string;
|
|
271
|
+
/**
|
|
272
|
+
* @public
|
|
273
|
+
* <p>Failure reason.</p>
|
|
274
|
+
*/
|
|
275
|
+
failureReason?: string;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
* <p>Launch actions status.</p>
|
|
280
|
+
*/
|
|
281
|
+
export interface LaunchActionsStatus {
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
* <p>Time where the AWS Systems Manager was detected as running on the launched instance.</p>
|
|
285
|
+
*/
|
|
286
|
+
ssmAgentDiscoveryDatetime?: string;
|
|
287
|
+
/**
|
|
288
|
+
* @public
|
|
289
|
+
* <p>List of post launch action status.</p>
|
|
290
|
+
*/
|
|
291
|
+
runs?: LaunchActionRun[];
|
|
292
|
+
}
|
|
122
293
|
/**
|
|
123
294
|
* @public
|
|
124
295
|
* <p>Represents a server participating in an asynchronous Job.</p>
|
|
@@ -139,6 +310,11 @@ export interface ParticipatingServer {
|
|
|
139
310
|
* <p>The launch status of a participating server.</p>
|
|
140
311
|
*/
|
|
141
312
|
launchStatus?: LaunchStatus | string;
|
|
313
|
+
/**
|
|
314
|
+
* @public
|
|
315
|
+
* <p>The post-launch action runs of a participating server.</p>
|
|
316
|
+
*/
|
|
317
|
+
launchActionsStatus?: LaunchActionsStatus;
|
|
142
318
|
}
|
|
143
319
|
/**
|
|
144
320
|
* @public
|
|
@@ -1137,6 +1313,11 @@ export interface CreateLaunchConfigurationTemplateRequest {
|
|
|
1137
1313
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
1138
1314
|
*/
|
|
1139
1315
|
exportBucketArn?: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* @public
|
|
1318
|
+
* <p>Whether we want to activate post-launch actions.</p>
|
|
1319
|
+
*/
|
|
1320
|
+
postLaunchEnabled?: boolean;
|
|
1140
1321
|
}
|
|
1141
1322
|
/**
|
|
1142
1323
|
* @public
|
|
@@ -1188,6 +1369,11 @@ export interface LaunchConfigurationTemplate {
|
|
|
1188
1369
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
1189
1370
|
*/
|
|
1190
1371
|
exportBucketArn?: string;
|
|
1372
|
+
/**
|
|
1373
|
+
* @public
|
|
1374
|
+
* <p>Post-launch actions activated.</p>
|
|
1375
|
+
*/
|
|
1376
|
+
postLaunchEnabled?: boolean;
|
|
1191
1377
|
}
|
|
1192
1378
|
/**
|
|
1193
1379
|
* @public
|
|
@@ -1502,6 +1688,26 @@ export interface DeleteJobRequest {
|
|
|
1502
1688
|
*/
|
|
1503
1689
|
export interface DeleteJobResponse {
|
|
1504
1690
|
}
|
|
1691
|
+
/**
|
|
1692
|
+
* @public
|
|
1693
|
+
*/
|
|
1694
|
+
export interface DeleteLaunchActionRequest {
|
|
1695
|
+
/**
|
|
1696
|
+
* @public
|
|
1697
|
+
* <p>Launch configuration template Id or Source Server Id</p>
|
|
1698
|
+
*/
|
|
1699
|
+
resourceId: string | undefined;
|
|
1700
|
+
/**
|
|
1701
|
+
* @public
|
|
1702
|
+
* <p>Launch action Id.</p>
|
|
1703
|
+
*/
|
|
1704
|
+
actionId: string | undefined;
|
|
1705
|
+
}
|
|
1706
|
+
/**
|
|
1707
|
+
* @public
|
|
1708
|
+
*/
|
|
1709
|
+
export interface DeleteLaunchActionResponse {
|
|
1710
|
+
}
|
|
1505
1711
|
/**
|
|
1506
1712
|
* @public
|
|
1507
1713
|
*/
|
|
@@ -2804,6 +3010,11 @@ export interface UpdateLaunchConfigurationTemplateRequest {
|
|
|
2804
3010
|
* <p>S3 bucket ARN to export Source Network templates.</p>
|
|
2805
3011
|
*/
|
|
2806
3012
|
exportBucketArn?: string;
|
|
3013
|
+
/**
|
|
3014
|
+
* @public
|
|
3015
|
+
* <p>Whether we want to activate post-launch actions.</p>
|
|
3016
|
+
*/
|
|
3017
|
+
postLaunchEnabled?: boolean;
|
|
2807
3018
|
}
|
|
2808
3019
|
/**
|
|
2809
3020
|
* @public
|
|
@@ -2871,6 +3082,57 @@ export interface ListExtensibleSourceServersResponse {
|
|
|
2871
3082
|
*/
|
|
2872
3083
|
nextToken?: string;
|
|
2873
3084
|
}
|
|
3085
|
+
/**
|
|
3086
|
+
* @public
|
|
3087
|
+
* <p>Resource launch actions filter.</p>
|
|
3088
|
+
*/
|
|
3089
|
+
export interface LaunchActionsRequestFilters {
|
|
3090
|
+
/**
|
|
3091
|
+
* @public
|
|
3092
|
+
* <p>Launch actions Ids.</p>
|
|
3093
|
+
*/
|
|
3094
|
+
actionIds?: string[];
|
|
3095
|
+
}
|
|
3096
|
+
/**
|
|
3097
|
+
* @public
|
|
3098
|
+
*/
|
|
3099
|
+
export interface ListLaunchActionsRequest {
|
|
3100
|
+
/**
|
|
3101
|
+
* @public
|
|
3102
|
+
* <p>Launch configuration template Id or Source Server Id</p>
|
|
3103
|
+
*/
|
|
3104
|
+
resourceId: string | undefined;
|
|
3105
|
+
/**
|
|
3106
|
+
* @public
|
|
3107
|
+
* <p>Filters to apply when listing resource launch actions.</p>
|
|
3108
|
+
*/
|
|
3109
|
+
filters?: LaunchActionsRequestFilters;
|
|
3110
|
+
/**
|
|
3111
|
+
* @public
|
|
3112
|
+
* <p>Maximum amount of items to return when listing resource launch actions.</p>
|
|
3113
|
+
*/
|
|
3114
|
+
maxResults?: number;
|
|
3115
|
+
/**
|
|
3116
|
+
* @public
|
|
3117
|
+
* <p>Next token to use when listing resource launch actions.</p>
|
|
3118
|
+
*/
|
|
3119
|
+
nextToken?: string;
|
|
3120
|
+
}
|
|
3121
|
+
/**
|
|
3122
|
+
* @public
|
|
3123
|
+
*/
|
|
3124
|
+
export interface ListLaunchActionsResponse {
|
|
3125
|
+
/**
|
|
3126
|
+
* @public
|
|
3127
|
+
* <p>List of resource launch actions.</p>
|
|
3128
|
+
*/
|
|
3129
|
+
items?: LaunchAction[];
|
|
3130
|
+
/**
|
|
3131
|
+
* @public
|
|
3132
|
+
* <p>Next token returned when listing resource launch actions.</p>
|
|
3133
|
+
*/
|
|
3134
|
+
nextToken?: string;
|
|
3135
|
+
}
|
|
2874
3136
|
/**
|
|
2875
3137
|
* @public
|
|
2876
3138
|
*/
|
|
@@ -2921,6 +3183,131 @@ export interface ListTagsForResourceResponse {
|
|
|
2921
3183
|
*/
|
|
2922
3184
|
tags?: Record<string, string>;
|
|
2923
3185
|
}
|
|
3186
|
+
/**
|
|
3187
|
+
* @public
|
|
3188
|
+
*/
|
|
3189
|
+
export interface PutLaunchActionRequest {
|
|
3190
|
+
/**
|
|
3191
|
+
* @public
|
|
3192
|
+
* <p>Launch configuration template Id or Source Server Id</p>
|
|
3193
|
+
*/
|
|
3194
|
+
resourceId: string | undefined;
|
|
3195
|
+
/**
|
|
3196
|
+
* @public
|
|
3197
|
+
* <p>Launch action code.</p>
|
|
3198
|
+
*/
|
|
3199
|
+
actionCode: string | undefined;
|
|
3200
|
+
/**
|
|
3201
|
+
* @public
|
|
3202
|
+
* <p>Launch action order.</p>
|
|
3203
|
+
*/
|
|
3204
|
+
order: number | undefined;
|
|
3205
|
+
/**
|
|
3206
|
+
* @public
|
|
3207
|
+
* <p>Launch action Id.</p>
|
|
3208
|
+
*/
|
|
3209
|
+
actionId: string | undefined;
|
|
3210
|
+
/**
|
|
3211
|
+
* @public
|
|
3212
|
+
* <p>Whether the launch will not be marked as failed if this action fails.</p>
|
|
3213
|
+
*/
|
|
3214
|
+
optional: boolean | undefined;
|
|
3215
|
+
/**
|
|
3216
|
+
* @public
|
|
3217
|
+
* <p>Whether the launch action is active.</p>
|
|
3218
|
+
*/
|
|
3219
|
+
active: boolean | undefined;
|
|
3220
|
+
/**
|
|
3221
|
+
* @public
|
|
3222
|
+
* <p>Launch action name.</p>
|
|
3223
|
+
*/
|
|
3224
|
+
name: string | undefined;
|
|
3225
|
+
/**
|
|
3226
|
+
* @public
|
|
3227
|
+
* <p>Launch action version.</p>
|
|
3228
|
+
*/
|
|
3229
|
+
actionVersion: string | undefined;
|
|
3230
|
+
/**
|
|
3231
|
+
* @public
|
|
3232
|
+
* <p>Launch action category.</p>
|
|
3233
|
+
*/
|
|
3234
|
+
category: LaunchActionCategory | string | undefined;
|
|
3235
|
+
/**
|
|
3236
|
+
* @public
|
|
3237
|
+
* <p>Launch action parameters.</p>
|
|
3238
|
+
*/
|
|
3239
|
+
parameters?: Record<string, LaunchActionParameter>;
|
|
3240
|
+
/**
|
|
3241
|
+
* @public
|
|
3242
|
+
* <p>Launch action description.</p>
|
|
3243
|
+
*/
|
|
3244
|
+
description?: string;
|
|
3245
|
+
}
|
|
3246
|
+
/**
|
|
3247
|
+
* @public
|
|
3248
|
+
*/
|
|
3249
|
+
export interface PutLaunchActionResponse {
|
|
3250
|
+
/**
|
|
3251
|
+
* @public
|
|
3252
|
+
* <p>Launch configuration template Id or Source Server Id</p>
|
|
3253
|
+
*/
|
|
3254
|
+
resourceId?: string;
|
|
3255
|
+
/**
|
|
3256
|
+
* @public
|
|
3257
|
+
* <p>Launch action Id.</p>
|
|
3258
|
+
*/
|
|
3259
|
+
actionId?: string;
|
|
3260
|
+
/**
|
|
3261
|
+
* @public
|
|
3262
|
+
* <p>Launch action code.</p>
|
|
3263
|
+
*/
|
|
3264
|
+
actionCode?: string;
|
|
3265
|
+
/**
|
|
3266
|
+
* @public
|
|
3267
|
+
* <p>Launch action type.</p>
|
|
3268
|
+
*/
|
|
3269
|
+
type?: LaunchActionType | string;
|
|
3270
|
+
/**
|
|
3271
|
+
* @public
|
|
3272
|
+
* <p>Launch action name.</p>
|
|
3273
|
+
*/
|
|
3274
|
+
name?: string;
|
|
3275
|
+
/**
|
|
3276
|
+
* @public
|
|
3277
|
+
* <p>Whether the launch action is active.</p>
|
|
3278
|
+
*/
|
|
3279
|
+
active?: boolean;
|
|
3280
|
+
/**
|
|
3281
|
+
* @public
|
|
3282
|
+
* <p>Launch action order.</p>
|
|
3283
|
+
*/
|
|
3284
|
+
order?: number;
|
|
3285
|
+
/**
|
|
3286
|
+
* @public
|
|
3287
|
+
* <p>Launch action version.</p>
|
|
3288
|
+
*/
|
|
3289
|
+
actionVersion?: string;
|
|
3290
|
+
/**
|
|
3291
|
+
* @public
|
|
3292
|
+
* <p>Whether the launch will not be marked as failed if this action fails.</p>
|
|
3293
|
+
*/
|
|
3294
|
+
optional?: boolean;
|
|
3295
|
+
/**
|
|
3296
|
+
* @public
|
|
3297
|
+
* <p>Launch action parameters.</p>
|
|
3298
|
+
*/
|
|
3299
|
+
parameters?: Record<string, LaunchActionParameter>;
|
|
3300
|
+
/**
|
|
3301
|
+
* @public
|
|
3302
|
+
* <p>Launch action description.</p>
|
|
3303
|
+
*/
|
|
3304
|
+
description?: string;
|
|
3305
|
+
/**
|
|
3306
|
+
* @public
|
|
3307
|
+
* <p>Launch action category.</p>
|
|
3308
|
+
*/
|
|
3309
|
+
category?: LaunchActionCategory | string;
|
|
3310
|
+
}
|
|
2924
3311
|
/**
|
|
2925
3312
|
* @public
|
|
2926
3313
|
*/
|
|
@@ -3301,6 +3688,11 @@ export interface LaunchConfiguration {
|
|
|
3301
3688
|
* <p>The licensing configuration to be used for this launch configuration.</p>
|
|
3302
3689
|
*/
|
|
3303
3690
|
licensing?: Licensing;
|
|
3691
|
+
/**
|
|
3692
|
+
* @public
|
|
3693
|
+
* <p>Whether we want to activate post-launch actions for the Source Server.</p>
|
|
3694
|
+
*/
|
|
3695
|
+
postLaunchEnabled?: boolean;
|
|
3304
3696
|
}
|
|
3305
3697
|
/**
|
|
3306
3698
|
* @public
|
|
@@ -3590,6 +3982,11 @@ export interface UpdateLaunchConfigurationRequest {
|
|
|
3590
3982
|
* <p>The licensing configuration to be used for this launch configuration.</p>
|
|
3591
3983
|
*/
|
|
3592
3984
|
licensing?: Licensing;
|
|
3985
|
+
/**
|
|
3986
|
+
* @public
|
|
3987
|
+
* <p>Whether we want to enable post-launch actions for the Source Server.</p>
|
|
3988
|
+
*/
|
|
3989
|
+
postLaunchEnabled?: boolean;
|
|
3593
3990
|
}
|
|
3594
3991
|
/**
|
|
3595
3992
|
* @public
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListLaunchActionsCommandInput, ListLaunchActionsCommandOutput } from "../commands/ListLaunchActionsCommand";
|
|
3
|
+
import { DrsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListLaunchActions(config: DrsPaginationConfiguration, input: ListLaunchActionsCommandInput, ...additionalArguments: any): Paginator<ListLaunchActionsCommandOutput>;
|
|
@@ -8,4 +8,5 @@ export * from "./DescribeSourceNetworksPaginator";
|
|
|
8
8
|
export * from "./DescribeSourceServersPaginator";
|
|
9
9
|
export * from "./Interfaces";
|
|
10
10
|
export * from "./ListExtensibleSourceServersPaginator";
|
|
11
|
+
export * from "./ListLaunchActionsPaginator";
|
|
11
12
|
export * from "./ListStagingAccountsPaginator";
|
|
@@ -6,6 +6,7 @@ import { CreateLaunchConfigurationTemplateCommandInput, CreateLaunchConfiguratio
|
|
|
6
6
|
import { CreateReplicationConfigurationTemplateCommandInput, CreateReplicationConfigurationTemplateCommandOutput } from "../commands/CreateReplicationConfigurationTemplateCommand";
|
|
7
7
|
import { CreateSourceNetworkCommandInput, CreateSourceNetworkCommandOutput } from "../commands/CreateSourceNetworkCommand";
|
|
8
8
|
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "../commands/DeleteJobCommand";
|
|
9
|
+
import { DeleteLaunchActionCommandInput, DeleteLaunchActionCommandOutput } from "../commands/DeleteLaunchActionCommand";
|
|
9
10
|
import { DeleteLaunchConfigurationTemplateCommandInput, DeleteLaunchConfigurationTemplateCommandOutput } from "../commands/DeleteLaunchConfigurationTemplateCommand";
|
|
10
11
|
import { DeleteRecoveryInstanceCommandInput, DeleteRecoveryInstanceCommandOutput } from "../commands/DeleteRecoveryInstanceCommand";
|
|
11
12
|
import { DeleteReplicationConfigurationTemplateCommandInput, DeleteReplicationConfigurationTemplateCommandOutput } from "../commands/DeleteReplicationConfigurationTemplateCommand";
|
|
@@ -27,8 +28,10 @@ import { GetLaunchConfigurationCommandInput, GetLaunchConfigurationCommandOutput
|
|
|
27
28
|
import { GetReplicationConfigurationCommandInput, GetReplicationConfigurationCommandOutput } from "../commands/GetReplicationConfigurationCommand";
|
|
28
29
|
import { InitializeServiceCommandInput, InitializeServiceCommandOutput } from "../commands/InitializeServiceCommand";
|
|
29
30
|
import { ListExtensibleSourceServersCommandInput, ListExtensibleSourceServersCommandOutput } from "../commands/ListExtensibleSourceServersCommand";
|
|
31
|
+
import { ListLaunchActionsCommandInput, ListLaunchActionsCommandOutput } from "../commands/ListLaunchActionsCommand";
|
|
30
32
|
import { ListStagingAccountsCommandInput, ListStagingAccountsCommandOutput } from "../commands/ListStagingAccountsCommand";
|
|
31
33
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
34
|
+
import { PutLaunchActionCommandInput, PutLaunchActionCommandOutput } from "../commands/PutLaunchActionCommand";
|
|
32
35
|
import { RetryDataReplicationCommandInput, RetryDataReplicationCommandOutput } from "../commands/RetryDataReplicationCommand";
|
|
33
36
|
import { ReverseReplicationCommandInput, ReverseReplicationCommandOutput } from "../commands/ReverseReplicationCommand";
|
|
34
37
|
import { StartFailbackLaunchCommandInput, StartFailbackLaunchCommandOutput } from "../commands/StartFailbackLaunchCommand";
|
|
@@ -71,6 +74,10 @@ export declare const se_CreateSourceNetworkCommand: (input: CreateSourceNetworkC
|
|
|
71
74
|
* serializeAws_restJson1DeleteJobCommand
|
|
72
75
|
*/
|
|
73
76
|
export declare const se_DeleteJobCommand: (input: DeleteJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
77
|
+
/**
|
|
78
|
+
* serializeAws_restJson1DeleteLaunchActionCommand
|
|
79
|
+
*/
|
|
80
|
+
export declare const se_DeleteLaunchActionCommand: (input: DeleteLaunchActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
81
|
/**
|
|
75
82
|
* serializeAws_restJson1DeleteLaunchConfigurationTemplateCommand
|
|
76
83
|
*/
|
|
@@ -155,6 +162,10 @@ export declare const se_InitializeServiceCommand: (input: InitializeServiceComma
|
|
|
155
162
|
* serializeAws_restJson1ListExtensibleSourceServersCommand
|
|
156
163
|
*/
|
|
157
164
|
export declare const se_ListExtensibleSourceServersCommand: (input: ListExtensibleSourceServersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
|
+
/**
|
|
166
|
+
* serializeAws_restJson1ListLaunchActionsCommand
|
|
167
|
+
*/
|
|
168
|
+
export declare const se_ListLaunchActionsCommand: (input: ListLaunchActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
158
169
|
/**
|
|
159
170
|
* serializeAws_restJson1ListStagingAccountsCommand
|
|
160
171
|
*/
|
|
@@ -163,6 +174,10 @@ export declare const se_ListStagingAccountsCommand: (input: ListStagingAccountsC
|
|
|
163
174
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
164
175
|
*/
|
|
165
176
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
|
+
/**
|
|
178
|
+
* serializeAws_restJson1PutLaunchActionCommand
|
|
179
|
+
*/
|
|
180
|
+
export declare const se_PutLaunchActionCommand: (input: PutLaunchActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
166
181
|
/**
|
|
167
182
|
* serializeAws_restJson1RetryDataReplicationCommand
|
|
168
183
|
*/
|
|
@@ -259,6 +274,10 @@ export declare const de_CreateSourceNetworkCommand: (output: __HttpResponse, con
|
|
|
259
274
|
* deserializeAws_restJson1DeleteJobCommand
|
|
260
275
|
*/
|
|
261
276
|
export declare const de_DeleteJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobCommandOutput>;
|
|
277
|
+
/**
|
|
278
|
+
* deserializeAws_restJson1DeleteLaunchActionCommand
|
|
279
|
+
*/
|
|
280
|
+
export declare const de_DeleteLaunchActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLaunchActionCommandOutput>;
|
|
262
281
|
/**
|
|
263
282
|
* deserializeAws_restJson1DeleteLaunchConfigurationTemplateCommand
|
|
264
283
|
*/
|
|
@@ -343,6 +362,10 @@ export declare const de_InitializeServiceCommand: (output: __HttpResponse, conte
|
|
|
343
362
|
* deserializeAws_restJson1ListExtensibleSourceServersCommand
|
|
344
363
|
*/
|
|
345
364
|
export declare const de_ListExtensibleSourceServersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExtensibleSourceServersCommandOutput>;
|
|
365
|
+
/**
|
|
366
|
+
* deserializeAws_restJson1ListLaunchActionsCommand
|
|
367
|
+
*/
|
|
368
|
+
export declare const de_ListLaunchActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLaunchActionsCommandOutput>;
|
|
346
369
|
/**
|
|
347
370
|
* deserializeAws_restJson1ListStagingAccountsCommand
|
|
348
371
|
*/
|
|
@@ -351,6 +374,10 @@ export declare const de_ListStagingAccountsCommand: (output: __HttpResponse, con
|
|
|
351
374
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
352
375
|
*/
|
|
353
376
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
377
|
+
/**
|
|
378
|
+
* deserializeAws_restJson1PutLaunchActionCommand
|
|
379
|
+
*/
|
|
380
|
+
export declare const de_PutLaunchActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutLaunchActionCommandOutput>;
|
|
354
381
|
/**
|
|
355
382
|
* deserializeAws_restJson1RetryDataReplicationCommand
|
|
356
383
|
*/
|
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
DeleteJobCommandInput,
|
|
24
24
|
DeleteJobCommandOutput,
|
|
25
25
|
} from "./commands/DeleteJobCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteLaunchActionCommandInput,
|
|
28
|
+
DeleteLaunchActionCommandOutput,
|
|
29
|
+
} from "./commands/DeleteLaunchActionCommand";
|
|
26
30
|
import {
|
|
27
31
|
DeleteLaunchConfigurationTemplateCommandInput,
|
|
28
32
|
DeleteLaunchConfigurationTemplateCommandOutput,
|
|
@@ -107,6 +111,10 @@ import {
|
|
|
107
111
|
ListExtensibleSourceServersCommandInput,
|
|
108
112
|
ListExtensibleSourceServersCommandOutput,
|
|
109
113
|
} from "./commands/ListExtensibleSourceServersCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListLaunchActionsCommandInput,
|
|
116
|
+
ListLaunchActionsCommandOutput,
|
|
117
|
+
} from "./commands/ListLaunchActionsCommand";
|
|
110
118
|
import {
|
|
111
119
|
ListStagingAccountsCommandInput,
|
|
112
120
|
ListStagingAccountsCommandOutput,
|
|
@@ -115,6 +123,10 @@ import {
|
|
|
115
123
|
ListTagsForResourceCommandInput,
|
|
116
124
|
ListTagsForResourceCommandOutput,
|
|
117
125
|
} from "./commands/ListTagsForResourceCommand";
|
|
126
|
+
import {
|
|
127
|
+
PutLaunchActionCommandInput,
|
|
128
|
+
PutLaunchActionCommandOutput,
|
|
129
|
+
} from "./commands/PutLaunchActionCommand";
|
|
118
130
|
import {
|
|
119
131
|
RetryDataReplicationCommandInput,
|
|
120
132
|
RetryDataReplicationCommandOutput,
|
|
@@ -279,6 +291,19 @@ export interface Drs {
|
|
|
279
291
|
options: __HttpHandlerOptions,
|
|
280
292
|
cb: (err: any, data?: DeleteJobCommandOutput) => void
|
|
281
293
|
): void;
|
|
294
|
+
deleteLaunchAction(
|
|
295
|
+
args: DeleteLaunchActionCommandInput,
|
|
296
|
+
options?: __HttpHandlerOptions
|
|
297
|
+
): Promise<DeleteLaunchActionCommandOutput>;
|
|
298
|
+
deleteLaunchAction(
|
|
299
|
+
args: DeleteLaunchActionCommandInput,
|
|
300
|
+
cb: (err: any, data?: DeleteLaunchActionCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
deleteLaunchAction(
|
|
303
|
+
args: DeleteLaunchActionCommandInput,
|
|
304
|
+
options: __HttpHandlerOptions,
|
|
305
|
+
cb: (err: any, data?: DeleteLaunchActionCommandOutput) => void
|
|
306
|
+
): void;
|
|
282
307
|
deleteLaunchConfigurationTemplate(
|
|
283
308
|
args: DeleteLaunchConfigurationTemplateCommandInput,
|
|
284
309
|
options?: __HttpHandlerOptions
|
|
@@ -582,6 +607,19 @@ export interface Drs {
|
|
|
582
607
|
options: __HttpHandlerOptions,
|
|
583
608
|
cb: (err: any, data?: ListExtensibleSourceServersCommandOutput) => void
|
|
584
609
|
): void;
|
|
610
|
+
listLaunchActions(
|
|
611
|
+
args: ListLaunchActionsCommandInput,
|
|
612
|
+
options?: __HttpHandlerOptions
|
|
613
|
+
): Promise<ListLaunchActionsCommandOutput>;
|
|
614
|
+
listLaunchActions(
|
|
615
|
+
args: ListLaunchActionsCommandInput,
|
|
616
|
+
cb: (err: any, data?: ListLaunchActionsCommandOutput) => void
|
|
617
|
+
): void;
|
|
618
|
+
listLaunchActions(
|
|
619
|
+
args: ListLaunchActionsCommandInput,
|
|
620
|
+
options: __HttpHandlerOptions,
|
|
621
|
+
cb: (err: any, data?: ListLaunchActionsCommandOutput) => void
|
|
622
|
+
): void;
|
|
585
623
|
listStagingAccounts(
|
|
586
624
|
args: ListStagingAccountsCommandInput,
|
|
587
625
|
options?: __HttpHandlerOptions
|
|
@@ -608,6 +646,19 @@ export interface Drs {
|
|
|
608
646
|
options: __HttpHandlerOptions,
|
|
609
647
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
610
648
|
): void;
|
|
649
|
+
putLaunchAction(
|
|
650
|
+
args: PutLaunchActionCommandInput,
|
|
651
|
+
options?: __HttpHandlerOptions
|
|
652
|
+
): Promise<PutLaunchActionCommandOutput>;
|
|
653
|
+
putLaunchAction(
|
|
654
|
+
args: PutLaunchActionCommandInput,
|
|
655
|
+
cb: (err: any, data?: PutLaunchActionCommandOutput) => void
|
|
656
|
+
): void;
|
|
657
|
+
putLaunchAction(
|
|
658
|
+
args: PutLaunchActionCommandInput,
|
|
659
|
+
options: __HttpHandlerOptions,
|
|
660
|
+
cb: (err: any, data?: PutLaunchActionCommandOutput) => void
|
|
661
|
+
): void;
|
|
611
662
|
retryDataReplication(
|
|
612
663
|
args: RetryDataReplicationCommandInput,
|
|
613
664
|
options?: __HttpHandlerOptions
|