@aws-sdk/client-launch-wizard 3.970.0 → 3.972.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.
Files changed (48) hide show
  1. package/README.md +22 -4
  2. package/dist-cjs/index.js +149 -11
  3. package/dist-es/LaunchWizard.js +6 -0
  4. package/dist-es/commands/GetDeploymentPatternVersionCommand.js +16 -0
  5. package/dist-es/commands/ListDeploymentPatternVersionsCommand.js +16 -0
  6. package/dist-es/commands/UpdateDeploymentCommand.js +16 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +8 -0
  9. package/dist-es/pagination/ListDeploymentPatternVersionsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +85 -11
  12. package/dist-types/LaunchWizard.d.ts +22 -4
  13. package/dist-types/LaunchWizardClient.d.ts +6 -6
  14. package/dist-types/commands/CreateDeploymentCommand.d.ts +27 -29
  15. package/dist-types/commands/DeleteDeploymentCommand.d.ts +3 -5
  16. package/dist-types/commands/GetDeploymentCommand.d.ts +3 -3
  17. package/dist-types/commands/GetDeploymentPatternVersionCommand.d.ts +88 -0
  18. package/dist-types/commands/GetWorkloadCommand.d.ts +2 -3
  19. package/dist-types/commands/GetWorkloadDeploymentPatternCommand.d.ts +5 -8
  20. package/dist-types/commands/ListDeploymentEventsCommand.d.ts +1 -2
  21. package/dist-types/commands/ListDeploymentPatternVersionsCommand.d.ts +165 -0
  22. package/dist-types/commands/ListDeploymentsCommand.d.ts +3 -3
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -2
  24. package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +6 -6
  25. package/dist-types/commands/ListWorkloadsCommand.d.ts +4 -2
  26. package/dist-types/commands/TagResourceCommand.d.ts +1 -2
  27. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  28. package/dist-types/commands/UpdateDeploymentCommand.d.ts +177 -0
  29. package/dist-types/commands/index.d.ts +3 -0
  30. package/dist-types/index.d.ts +1 -4
  31. package/dist-types/models/enums.d.ts +16 -0
  32. package/dist-types/models/errors.d.ts +2 -4
  33. package/dist-types/models/models_0.d.ts +220 -87
  34. package/dist-types/pagination/ListDeploymentPatternVersionsPaginator.d.ts +7 -0
  35. package/dist-types/pagination/index.d.ts +1 -0
  36. package/dist-types/schemas/schemas_0.d.ts +11 -0
  37. package/dist-types/ts3.4/LaunchWizard.d.ts +51 -0
  38. package/dist-types/ts3.4/LaunchWizardClient.d.ts +20 -2
  39. package/dist-types/ts3.4/commands/GetDeploymentPatternVersionCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/ListDeploymentPatternVersionsCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/UpdateDeploymentCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  43. package/dist-types/ts3.4/models/enums.d.ts +10 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +48 -1
  45. package/dist-types/ts3.4/pagination/ListDeploymentPatternVersionsPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
  48. package/package.json +14 -14
@@ -12,12 +12,19 @@ const _DEDS = "DeploymentEventDataSummary";
12
12
  const _DEDSL = "DeploymentEventDataSummaryList";
13
13
  const _DF = "DeploymentFilter";
14
14
  const _DFL = "DeploymentFilterList";
15
+ const _DPVDS = "DeploymentPatternVersionDataSummary";
16
+ const _DPVDSL = "DeploymentPatternVersionDataSummaryList";
17
+ const _DPVF = "DeploymentPatternVersionFilter";
15
18
  const _DS = "DeploymentSpecifications";
16
19
  const _DSD = "DeploymentSpecificationsData";
17
20
  const _DSF = "DeploymentSpecificationsField";
21
+ const _FL = "FilterList";
18
22
  const _GD = "GetDeployment";
19
23
  const _GDI = "GetDeploymentInput";
20
24
  const _GDO = "GetDeploymentOutput";
25
+ const _GDPV = "GetDeploymentPatternVersion";
26
+ const _GDPVI = "GetDeploymentPatternVersionInput";
27
+ const _GDPVO = "GetDeploymentPatternVersionOutput";
21
28
  const _GW = "GetWorkload";
22
29
  const _GWDP = "GetWorkloadDeploymentPattern";
23
30
  const _GWDPI = "GetWorkloadDeploymentPatternInput";
@@ -31,6 +38,9 @@ const _LDEI = "ListDeploymentEventsInput";
31
38
  const _LDEO = "ListDeploymentEventsOutput";
32
39
  const _LDI = "ListDeploymentsInput";
33
40
  const _LDO = "ListDeploymentsOutput";
41
+ const _LDPV = "ListDeploymentPatternVersions";
42
+ const _LDPVI = "ListDeploymentPatternVersionsInput";
43
+ const _LDPVO = "ListDeploymentPatternVersionsOutput";
34
44
  const _LTFR = "ListTagsForResource";
35
45
  const _LTFRI = "ListTagsForResourceInput";
36
46
  const _LTFRO = "ListTagsForResourceOutput";
@@ -46,6 +56,9 @@ const _SCD = "SpecificationsConditionalData";
46
56
  const _TR = "TagResource";
47
57
  const _TRI = "TagResourceInput";
48
58
  const _TRO = "TagResourceOutput";
59
+ const _UD = "UpdateDeployment";
60
+ const _UDI = "UpdateDeploymentInput";
61
+ const _UDO = "UpdateDeploymentOutput";
49
62
  const _UR = "UntagResource";
50
63
  const _URI = "UntagResourceInput";
51
64
  const _URO = "UntagResourceOutput";
@@ -68,18 +81,23 @@ const _dE = "deploymentEvents";
68
81
  const _dI = "deploymentId";
69
82
  const _dN = "displayName";
70
83
  const _dPN = "deploymentPatternName";
84
+ const _dPV = "deploymentPatternVersion";
85
+ const _dPVN = "deploymentPatternVersionName";
86
+ const _dPVe = "deploymentPatternVersions";
71
87
  const _dR = "dryRun";
72
88
  const _dU = "documentationUrl";
73
89
  const _de = "deployment";
74
90
  const _dep = "deployments";
75
91
  const _e = "error";
76
92
  const _f = "filters";
93
+ const _fo = "force";
77
94
  const _h = "http";
78
95
  const _hE = "httpError";
79
96
  const _hQ = "httpQuery";
80
97
  const _i = "id";
81
98
  const _iU = "iconUrl";
82
99
  const _m = "message";
100
+ const _mA = "modifiedAt";
83
101
  const _mR = "maxResults";
84
102
  const _n = "name";
85
103
  const _nT = "nextToken";
@@ -135,13 +153,13 @@ export var DeploymentConditionalField$ = [3, n0, _DCF,
135
153
  ];
136
154
  export var DeploymentData$ = [3, n0, _DD,
137
155
  0,
138
- [_n, _i, _wN, _pN, _st, _cA, _s, _rG, _dA, _t, _dAe],
139
- [0, 0, 0, 0, 0, 4, [() => DeploymentSpecifications, 0], 0, 4, 128 | 0, 0]
156
+ [_n, _i, _wN, _pN, _st, _cA, _mA, _s, _rG, _dA, _t, _dAe],
157
+ [0, 0, 0, 0, 0, 4, 4, [() => DeploymentSpecifications, 0], 0, 4, 128 | 0, 0]
140
158
  ];
141
159
  export var DeploymentDataSummary$ = [3, n0, _DDS,
142
160
  0,
143
- [_n, _i, _wN, _pN, _st, _cA],
144
- [0, 0, 0, 0, 0, 4]
161
+ [_n, _i, _wN, _pN, _st, _cA, _mA],
162
+ [0, 0, 0, 0, 0, 4, 4]
145
163
  ];
146
164
  export var DeploymentEventDataSummary$ = [3, n0, _DEDS,
147
165
  0,
@@ -153,6 +171,16 @@ export var DeploymentFilter$ = [3, n0, _DF,
153
171
  [_n, _va],
154
172
  [0, 64 | 0]
155
173
  ];
174
+ export var DeploymentPatternVersionDataSummary$ = [3, n0, _DPVDS,
175
+ 0,
176
+ [_dPVN, _d, _dU, _wN, _dPN],
177
+ [0, 0, 0, 0, 0]
178
+ ];
179
+ export var DeploymentPatternVersionFilter$ = [3, n0, _DPVF,
180
+ 0,
181
+ [_n, _va],
182
+ [0, 64 | 0], 2
183
+ ];
156
184
  export var DeploymentSpecificationsField$ = [3, n0, _DSF,
157
185
  0,
158
186
  [_n, _d, _aV, _r, _co],
@@ -168,6 +196,16 @@ export var GetDeploymentOutput$ = [3, n0, _GDO,
168
196
  [_de],
169
197
  [[() => DeploymentData$, 0]]
170
198
  ];
199
+ export var GetDeploymentPatternVersionInput$ = [3, n0, _GDPVI,
200
+ 0,
201
+ [_wN, _dPN, _dPVN],
202
+ [0, 0, 0], 3
203
+ ];
204
+ export var GetDeploymentPatternVersionOutput$ = [3, n0, _GDPVO,
205
+ 0,
206
+ [_dPV],
207
+ [() => DeploymentPatternVersionDataSummary$]
208
+ ];
171
209
  export var GetWorkloadDeploymentPatternInput$ = [3, n0, _GWDPI,
172
210
  0,
173
211
  [_wN, _dPN],
@@ -204,6 +242,16 @@ export var ListDeploymentEventsOutput$ = [3, n0, _LDEO,
204
242
  [_dE, _nT],
205
243
  [() => DeploymentEventDataSummaryList, 0]
206
244
  ];
245
+ export var ListDeploymentPatternVersionsInput$ = [3, n0, _LDPVI,
246
+ 0,
247
+ [_wN, _dPN, _mR, _nT, _f],
248
+ [0, 0, 1, 0, () => FilterList], 2
249
+ ];
250
+ export var ListDeploymentPatternVersionsOutput$ = [3, n0, _LDPVO,
251
+ 0,
252
+ [_dPVe, _nT],
253
+ [() => DeploymentPatternVersionDataSummaryList, 0]
254
+ ];
207
255
  export var ListDeploymentsInput$ = [3, n0, _LDI,
208
256
  0,
209
257
  [_f, _mR, _nT],
@@ -276,6 +324,16 @@ export var UntagResourceOutput$ = [3, n0, _URO,
276
324
  [],
277
325
  []
278
326
  ];
327
+ export var UpdateDeploymentInput$ = [3, n0, _UDI,
328
+ 0,
329
+ [_dI, _s, _wVN, _dPVN, _dR, _fo],
330
+ [0, [() => DeploymentSpecifications, 0], 0, 0, 2, 2], 2
331
+ ];
332
+ export var UpdateDeploymentOutput$ = [3, n0, _UDO,
333
+ 0,
334
+ [_de],
335
+ [() => DeploymentDataSummary$]
336
+ ];
279
337
  export var ValidationException$ = [-3, n0, _VE,
280
338
  { [_e]: _cl, [_hE]: 400 },
281
339
  [_m],
@@ -284,23 +342,23 @@ export var ValidationException$ = [-3, n0, _VE,
284
342
  TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
285
343
  export var WorkloadData$ = [3, n0, _WD,
286
344
  0,
287
- [_wN, _dN, _d, _dU, _iU, _st, _sM],
345
+ [_wN, _dN, _st, _d, _dU, _iU, _sM],
288
346
  [0, 0, 0, 0, 0, 0, 0]
289
347
  ];
290
348
  export var WorkloadDataSummary$ = [3, n0, _WDS,
291
349
  0,
292
- [_wN, _dN],
293
- [0, 0]
350
+ [_wN, _dN, _st],
351
+ [0, 0, 0]
294
352
  ];
295
353
  export var WorkloadDeploymentPatternData$ = [3, n0, _WDPD,
296
354
  0,
297
- [_wN, _dPN, _wVN, _dN, _d, _st, _sM, _s],
298
- [0, 0, 0, 0, 0, 0, 0, () => DeploymentSpecificationsData]
355
+ [_wN, _dPN, _wVN, _dPVN, _dN, _d, _st, _sM, _s],
356
+ [0, 0, 0, 0, 0, 0, 0, 0, () => DeploymentSpecificationsData]
299
357
  ];
300
358
  export var WorkloadDeploymentPatternDataSummary$ = [3, n0, _WDPDS,
301
359
  0,
302
- [_wN, _dPN, _wVN, _dN, _d, _st, _sM],
303
- [0, 0, 0, 0, 0, 0, 0]
360
+ [_wN, _dPN, _wVN, _dPVN, _dN, _d, _st, _sM],
361
+ [0, 0, 0, 0, 0, 0, 0, 0]
304
362
  ];
305
363
  export var LaunchWizardServiceException$ = [-3, _sm, "LaunchWizardServiceException", 0, [], []];
306
364
  TypeRegistry.for(_sm).registerError(LaunchWizardServiceException$, LaunchWizardServiceException);
@@ -315,9 +373,16 @@ var DeploymentFilterList = [1, n0, _DFL,
315
373
  0, () => DeploymentFilter$
316
374
  ];
317
375
  var DeploymentFilterValues = 64 | 0;
376
+ var DeploymentPatternVersionDataSummaryList = [1, n0, _DPVDSL,
377
+ 0, () => DeploymentPatternVersionDataSummary$
378
+ ];
379
+ var DeploymentPatternVersionFilterValues = 64 | 0;
318
380
  var DeploymentSpecificationsData = [1, n0, _DSD,
319
381
  0, () => DeploymentSpecificationsField$
320
382
  ];
383
+ var FilterList = [1, n0, _FL,
384
+ 0, () => DeploymentPatternVersionFilter$
385
+ ];
321
386
  var SpecificationsConditionalData = [1, n0, _SCD,
322
387
  0, () => DeploymentConditionalField$
323
388
  ];
@@ -341,6 +406,9 @@ export var DeleteDeployment$ = [9, n0, _DDe,
341
406
  export var GetDeployment$ = [9, n0, _GD,
342
407
  { [_h]: ["POST", "/getDeployment", 200] }, () => GetDeploymentInput$, () => GetDeploymentOutput$
343
408
  ];
409
+ export var GetDeploymentPatternVersion$ = [9, n0, _GDPV,
410
+ { [_h]: ["POST", "/getDeploymentPatternVersion", 200] }, () => GetDeploymentPatternVersionInput$, () => GetDeploymentPatternVersionOutput$
411
+ ];
344
412
  export var GetWorkload$ = [9, n0, _GW,
345
413
  { [_h]: ["POST", "/getWorkload", 200] }, () => GetWorkloadInput$, () => GetWorkloadOutput$
346
414
  ];
@@ -350,6 +418,9 @@ export var GetWorkloadDeploymentPattern$ = [9, n0, _GWDP,
350
418
  export var ListDeploymentEvents$ = [9, n0, _LDE,
351
419
  { [_h]: ["POST", "/listDeploymentEvents", 200] }, () => ListDeploymentEventsInput$, () => ListDeploymentEventsOutput$
352
420
  ];
421
+ export var ListDeploymentPatternVersions$ = [9, n0, _LDPV,
422
+ { [_h]: ["POST", "/listDeploymentPatternVersions", 200] }, () => ListDeploymentPatternVersionsInput$, () => ListDeploymentPatternVersionsOutput$
423
+ ];
353
424
  export var ListDeployments$ = [9, n0, _LD,
354
425
  { [_h]: ["POST", "/listDeployments", 200] }, () => ListDeploymentsInput$, () => ListDeploymentsOutput$
355
426
  ];
@@ -368,3 +439,6 @@ export var TagResource$ = [9, n0, _TR,
368
439
  export var UntagResource$ = [9, n0, _UR,
369
440
  { [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
370
441
  ];
442
+ export var UpdateDeployment$ = [9, n0, _UD,
443
+ { [_h]: ["POST", "/updateDeployment", 200] }, () => UpdateDeploymentInput$, () => UpdateDeploymentOutput$
444
+ ];
@@ -2,15 +2,18 @@ import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
2
  import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand";
3
3
  import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "./commands/DeleteDeploymentCommand";
4
4
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
5
+ import { GetDeploymentPatternVersionCommandInput, GetDeploymentPatternVersionCommandOutput } from "./commands/GetDeploymentPatternVersionCommand";
5
6
  import { GetWorkloadCommandInput, GetWorkloadCommandOutput } from "./commands/GetWorkloadCommand";
6
7
  import { GetWorkloadDeploymentPatternCommandInput, GetWorkloadDeploymentPatternCommandOutput } from "./commands/GetWorkloadDeploymentPatternCommand";
7
8
  import { ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput } from "./commands/ListDeploymentEventsCommand";
9
+ import { ListDeploymentPatternVersionsCommandInput, ListDeploymentPatternVersionsCommandOutput } from "./commands/ListDeploymentPatternVersionsCommand";
8
10
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
9
11
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
10
12
  import { ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput } from "./commands/ListWorkloadDeploymentPatternsCommand";
11
13
  import { ListWorkloadsCommandInput, ListWorkloadsCommandOutput } from "./commands/ListWorkloadsCommand";
12
14
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
13
15
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
16
+ import { UpdateDeploymentCommandInput, UpdateDeploymentCommandOutput } from "./commands/UpdateDeploymentCommand";
14
17
  import { LaunchWizardClient } from "./LaunchWizardClient";
15
18
  export interface LaunchWizard {
16
19
  /**
@@ -31,6 +34,12 @@ export interface LaunchWizard {
31
34
  getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
32
35
  getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
33
36
  getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
37
+ /**
38
+ * @see {@link GetDeploymentPatternVersionCommand}
39
+ */
40
+ getDeploymentPatternVersion(args: GetDeploymentPatternVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentPatternVersionCommandOutput>;
41
+ getDeploymentPatternVersion(args: GetDeploymentPatternVersionCommandInput, cb: (err: any, data?: GetDeploymentPatternVersionCommandOutput) => void): void;
42
+ getDeploymentPatternVersion(args: GetDeploymentPatternVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentPatternVersionCommandOutput) => void): void;
34
43
  /**
35
44
  * @see {@link GetWorkloadCommand}
36
45
  */
@@ -49,6 +58,12 @@ export interface LaunchWizard {
49
58
  listDeploymentEvents(args: ListDeploymentEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentEventsCommandOutput>;
50
59
  listDeploymentEvents(args: ListDeploymentEventsCommandInput, cb: (err: any, data?: ListDeploymentEventsCommandOutput) => void): void;
51
60
  listDeploymentEvents(args: ListDeploymentEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentEventsCommandOutput) => void): void;
61
+ /**
62
+ * @see {@link ListDeploymentPatternVersionsCommand}
63
+ */
64
+ listDeploymentPatternVersions(args: ListDeploymentPatternVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentPatternVersionsCommandOutput>;
65
+ listDeploymentPatternVersions(args: ListDeploymentPatternVersionsCommandInput, cb: (err: any, data?: ListDeploymentPatternVersionsCommandOutput) => void): void;
66
+ listDeploymentPatternVersions(args: ListDeploymentPatternVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentPatternVersionsCommandOutput) => void): void;
52
67
  /**
53
68
  * @see {@link ListDeploymentsCommand}
54
69
  */
@@ -87,12 +102,15 @@ export interface LaunchWizard {
87
102
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
88
103
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
89
104
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
105
+ /**
106
+ * @see {@link UpdateDeploymentCommand}
107
+ */
108
+ updateDeployment(args: UpdateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeploymentCommandOutput>;
109
+ updateDeployment(args: UpdateDeploymentCommandInput, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
110
+ updateDeployment(args: UpdateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeploymentCommandOutput) => void): void;
90
111
  }
91
112
  /**
92
- * <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for
93
- * third party applications, such as Microsoft SQL Server Always On and HANA based SAP
94
- * systems, without the need to manually identify and provision individual Amazon Web Services
95
- * resources.</p>
113
+ * <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for third party applications, such as Microsoft SQL Server Always On and HANA based SAP systems, without the need to manually identify and provision individual Amazon Web Services resources.</p>
96
114
  * @public
97
115
  */
98
116
  export declare class LaunchWizard extends LaunchWizardClient implements LaunchWizard {
@@ -10,26 +10,29 @@ import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } fro
10
10
  import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand";
11
11
  import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "./commands/DeleteDeploymentCommand";
12
12
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
13
+ import { GetDeploymentPatternVersionCommandInput, GetDeploymentPatternVersionCommandOutput } from "./commands/GetDeploymentPatternVersionCommand";
13
14
  import { GetWorkloadCommandInput, GetWorkloadCommandOutput } from "./commands/GetWorkloadCommand";
14
15
  import { GetWorkloadDeploymentPatternCommandInput, GetWorkloadDeploymentPatternCommandOutput } from "./commands/GetWorkloadDeploymentPatternCommand";
15
16
  import { ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput } from "./commands/ListDeploymentEventsCommand";
17
+ import { ListDeploymentPatternVersionsCommandInput, ListDeploymentPatternVersionsCommandOutput } from "./commands/ListDeploymentPatternVersionsCommand";
16
18
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
17
19
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
20
  import { ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput } from "./commands/ListWorkloadDeploymentPatternsCommand";
19
21
  import { ListWorkloadsCommandInput, ListWorkloadsCommandOutput } from "./commands/ListWorkloadsCommand";
20
22
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
23
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
24
+ import { UpdateDeploymentCommandInput, UpdateDeploymentCommandOutput } from "./commands/UpdateDeploymentCommand";
22
25
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
23
26
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
24
27
  export { __Client };
25
28
  /**
26
29
  * @public
27
30
  */
28
- export type ServiceInputTypes = CreateDeploymentCommandInput | DeleteDeploymentCommandInput | GetDeploymentCommandInput | GetWorkloadCommandInput | GetWorkloadDeploymentPatternCommandInput | ListDeploymentEventsCommandInput | ListDeploymentsCommandInput | ListTagsForResourceCommandInput | ListWorkloadDeploymentPatternsCommandInput | ListWorkloadsCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
31
+ export type ServiceInputTypes = CreateDeploymentCommandInput | DeleteDeploymentCommandInput | GetDeploymentCommandInput | GetDeploymentPatternVersionCommandInput | GetWorkloadCommandInput | GetWorkloadDeploymentPatternCommandInput | ListDeploymentEventsCommandInput | ListDeploymentPatternVersionsCommandInput | ListDeploymentsCommandInput | ListTagsForResourceCommandInput | ListWorkloadDeploymentPatternsCommandInput | ListWorkloadsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDeploymentCommandInput;
29
32
  /**
30
33
  * @public
31
34
  */
32
- export type ServiceOutputTypes = CreateDeploymentCommandOutput | DeleteDeploymentCommandOutput | GetDeploymentCommandOutput | GetWorkloadCommandOutput | GetWorkloadDeploymentPatternCommandOutput | ListDeploymentEventsCommandOutput | ListDeploymentsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadDeploymentPatternsCommandOutput | ListWorkloadsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
35
+ export type ServiceOutputTypes = CreateDeploymentCommandOutput | DeleteDeploymentCommandOutput | GetDeploymentCommandOutput | GetDeploymentPatternVersionCommandOutput | GetWorkloadCommandOutput | GetWorkloadDeploymentPatternCommandOutput | ListDeploymentEventsCommandOutput | ListDeploymentPatternVersionsCommandOutput | ListDeploymentsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadDeploymentPatternsCommandOutput | ListWorkloadsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDeploymentCommandOutput;
33
36
  /**
34
37
  * @public
35
38
  */
@@ -181,10 +184,7 @@ export type LaunchWizardClientResolvedConfigType = __SmithyResolvedConfiguration
181
184
  export interface LaunchWizardClientResolvedConfig extends LaunchWizardClientResolvedConfigType {
182
185
  }
183
186
  /**
184
- * <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for
185
- * third party applications, such as Microsoft SQL Server Always On and HANA based SAP
186
- * systems, without the need to manually identify and provision individual Amazon Web Services
187
- * resources.</p>
187
+ * <p>Launch Wizard offers a guided way of sizing, configuring, and deploying Amazon Web Services resources for third party applications, such as Microsoft SQL Server Always On and HANA based SAP systems, without the need to manually identify and provision individual Amazon Web Services resources.</p>
188
188
  * @public
189
189
  */
190
190
  export declare class LaunchWizardClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, LaunchWizardClientResolvedConfig> {
@@ -27,9 +27,7 @@ declare const CreateDeploymentCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a deployment for the given workload. Deployments created by this operation are
31
- * not available in the Launch Wizard console to use the <code>Clone deployment</code> action
32
- * on.</p>
30
+ * <p>Creates a deployment for the given workload. Deployments created by this operation are not available in the Launch Wizard console to use the <code>Clone deployment</code> action on.</p>
33
31
  * @example
34
32
  * Use a bare-bones client and the command you need to make an API call.
35
33
  * ```javascript
@@ -65,12 +63,10 @@ declare const CreateDeploymentCommand_base: {
65
63
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
66
64
  *
67
65
  * @throws {@link InternalServerException} (server fault)
68
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
69
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
66
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
70
67
  *
71
68
  * @throws {@link ResourceLimitException} (client fault)
72
- * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many
73
- * deployments in progress.</p>
69
+ * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many deployments in progress.</p>
74
70
  *
75
71
  * @throws {@link ResourceNotFoundException} (client fault)
76
72
  * <p>The specified workload or deployment resource can't be found.</p>
@@ -88,18 +84,19 @@ declare const CreateDeploymentCommand_base: {
88
84
  * const input = {
89
85
  * deploymentPatternName: "SapHanaSingle",
90
86
  * dryRun: false,
91
- * name: "SapHanaSingleForTest",
87
+ * name: "TestDeployment1",
92
88
  * specifications: {
93
- * DisableDeploymentRollback: "true",
94
- * Encryption: "Yes",
95
- * KeyName: "testLinuxInstance",
96
- * SAPTZ: "America/Vancouver",
97
- * VPCID: "vpc-1234567",
98
- * applicationName: "SapHanaSingleForTest",
99
- * deploymentScenario: "SapHanaSingle",
100
- * environmentType: "production",
101
- * saveArtifactsS3Uri: "s3://testbucket",
102
- * saveDeploymentArtifacts: "Yes"
89
+ * CreateSecurityGroup: "No",
90
+ * DisableDeploymentRollback: "Yes",
91
+ * EnableEbsVolumeEncryption: "Yes",
92
+ * KeyPairName: "keyName",
93
+ * ProxyServerAddress: "http://xyz.abc.com:8080",
94
+ * SapSysGroupId: "5003",
95
+ * SapVirtualIPOptIn: "No",
96
+ * SaveDeploymentArtifacts: "No",
97
+ * SnsTopicArn: "arn:aws:sns:us-east-1:111111222222:snsNameUsEast1.fifo",
98
+ * Timezone: "Pacific/Wake",
99
+ * VpcId: "vpc-1234566"
103
100
  * },
104
101
  * workloadName: "SAP"
105
102
  * };
@@ -118,18 +115,19 @@ declare const CreateDeploymentCommand_base: {
118
115
  * const input = {
119
116
  * deploymentPatternName: "SapHanaSingle",
120
117
  * dryRun: false,
121
- * name: "SapHanaSingleForTest",
118
+ * name: "TestDeployment2",
122
119
  * specifications: {
123
- * DisableDeploymentRollback: "true",
124
- * Encryption: "Yes",
125
- * KeyName: "testLinuxInstance",
126
- * SAPTZ: "America/Vancouver",
127
- * VPCID: "vpc-1234567",
128
- * applicationName: "SapHanaSingleForTest",
129
- * deploymentScenario: "SapHanaSingle",
130
- * environmentType: "production",
131
- * saveArtifactsS3Uri: "s3://testbucket",
132
- * saveDeploymentArtifacts: "Yes"
120
+ * CreateSecurityGroup: "No",
121
+ * DisableDeploymentRollback: "Yes",
122
+ * EnableEbsVolumeEncryption: "Yes",
123
+ * KeyPairName: "keyName",
124
+ * ProxyServerAddress: "http://xyz.abc.com:8080",
125
+ * SapSysGroupId: "5003",
126
+ * SapVirtualIPOptIn: "No",
127
+ * SaveDeploymentArtifacts: "No",
128
+ * SnsTopicArn: "arn:aws:sns:us-east-1:111111222222:snsNameUsEast1.fifo",
129
+ * Timezone: "Pacific/Wake",
130
+ * VpcId: "vpc-1234566"
133
131
  * },
134
132
  * tags: {
135
133
  * key1: "val1",
@@ -42,7 +42,7 @@ declare const DeleteDeploymentCommand_base: {
42
42
  * const command = new DeleteDeploymentCommand(input);
43
43
  * const response = await client.send(command);
44
44
  * // { // DeleteDeploymentOutput
45
- * // status: "COMPLETED" || "CREATING" || "DELETE_IN_PROGRESS" || "DELETE_INITIATING" || "DELETE_FAILED" || "DELETED" || "FAILED" || "IN_PROGRESS" || "VALIDATING",
45
+ * // status: "COMPLETED" || "CREATING" || "DELETE_IN_PROGRESS" || "DELETE_INITIATING" || "DELETE_FAILED" || "DELETED" || "FAILED" || "IN_PROGRESS" || "VALIDATING" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETED" || "UPDATE_FAILED" || "UPDATE_ROLLBACK_COMPLETED" || "UPDATE_ROLLBACK_FAILED",
46
46
  * // statusReason: "STRING_VALUE",
47
47
  * // };
48
48
  *
@@ -55,12 +55,10 @@ declare const DeleteDeploymentCommand_base: {
55
55
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
56
56
  *
57
57
  * @throws {@link InternalServerException} (server fault)
58
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
59
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
58
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
60
59
  *
61
60
  * @throws {@link ResourceLimitException} (client fault)
62
- * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many
63
- * deployments in progress.</p>
61
+ * <p>You have exceeded an Launch Wizard resource limit. For example, you might have too many deployments in progress.</p>
64
62
  *
65
63
  * @throws {@link ResourceNotFoundException} (client fault)
66
64
  * <p>The specified workload or deployment resource can't be found.</p>
@@ -47,8 +47,9 @@ declare const GetDeploymentCommand_base: {
47
47
  * // id: "STRING_VALUE",
48
48
  * // workloadName: "STRING_VALUE",
49
49
  * // patternName: "STRING_VALUE",
50
- * // status: "COMPLETED" || "CREATING" || "DELETE_IN_PROGRESS" || "DELETE_INITIATING" || "DELETE_FAILED" || "DELETED" || "FAILED" || "IN_PROGRESS" || "VALIDATING",
50
+ * // status: "COMPLETED" || "CREATING" || "DELETE_IN_PROGRESS" || "DELETE_INITIATING" || "DELETE_FAILED" || "DELETED" || "FAILED" || "IN_PROGRESS" || "VALIDATING" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETED" || "UPDATE_FAILED" || "UPDATE_ROLLBACK_COMPLETED" || "UPDATE_ROLLBACK_FAILED",
51
51
  * // createdAt: new Date("TIMESTAMP"),
52
+ * // modifiedAt: new Date("TIMESTAMP"),
52
53
  * // specifications: { // DeploymentSpecifications
53
54
  * // "<keys>": "STRING_VALUE",
54
55
  * // },
@@ -70,8 +71,7 @@ declare const GetDeploymentCommand_base: {
70
71
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
71
72
  *
72
73
  * @throws {@link InternalServerException} (server fault)
73
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
74
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
74
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
75
75
  *
76
76
  * @throws {@link ResourceNotFoundException} (client fault)
77
77
  * <p>The specified workload or deployment resource can't be found.</p>
@@ -0,0 +1,88 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient";
4
+ import type { GetDeploymentPatternVersionInput, GetDeploymentPatternVersionOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetDeploymentPatternVersionCommand}.
14
+ */
15
+ export interface GetDeploymentPatternVersionCommandInput extends GetDeploymentPatternVersionInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetDeploymentPatternVersionCommand}.
21
+ */
22
+ export interface GetDeploymentPatternVersionCommandOutput extends GetDeploymentPatternVersionOutput, __MetadataBearer {
23
+ }
24
+ declare const GetDeploymentPatternVersionCommand_base: {
25
+ new (input: GetDeploymentPatternVersionCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeploymentPatternVersionCommandInput, GetDeploymentPatternVersionCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetDeploymentPatternVersionCommandInput): import("@smithy/smithy-client").CommandImpl<GetDeploymentPatternVersionCommandInput, GetDeploymentPatternVersionCommandOutput, LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns information about a deployment pattern version.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { LaunchWizardClient, GetDeploymentPatternVersionCommand } from "@aws-sdk/client-launch-wizard"; // ES Modules import
35
+ * // const { LaunchWizardClient, GetDeploymentPatternVersionCommand } = require("@aws-sdk/client-launch-wizard"); // CommonJS import
36
+ * // import type { LaunchWizardClientConfig } from "@aws-sdk/client-launch-wizard";
37
+ * const config = {}; // type is LaunchWizardClientConfig
38
+ * const client = new LaunchWizardClient(config);
39
+ * const input = { // GetDeploymentPatternVersionInput
40
+ * workloadName: "STRING_VALUE", // required
41
+ * deploymentPatternName: "STRING_VALUE", // required
42
+ * deploymentPatternVersionName: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new GetDeploymentPatternVersionCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // GetDeploymentPatternVersionOutput
47
+ * // deploymentPatternVersion: { // DeploymentPatternVersionDataSummary
48
+ * // deploymentPatternVersionName: "STRING_VALUE",
49
+ * // description: "STRING_VALUE",
50
+ * // documentationUrl: "STRING_VALUE",
51
+ * // workloadName: "STRING_VALUE",
52
+ * // deploymentPatternName: "STRING_VALUE",
53
+ * // },
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param GetDeploymentPatternVersionCommandInput - {@link GetDeploymentPatternVersionCommandInput}
59
+ * @returns {@link GetDeploymentPatternVersionCommandOutput}
60
+ * @see {@link GetDeploymentPatternVersionCommandInput} for command's `input` shape.
61
+ * @see {@link GetDeploymentPatternVersionCommandOutput} for command's `response` shape.
62
+ * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
63
+ *
64
+ * @throws {@link InternalServerException} (server fault)
65
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
66
+ *
67
+ * @throws {@link ResourceNotFoundException} (client fault)
68
+ * <p>The specified workload or deployment resource can't be found.</p>
69
+ *
70
+ * @throws {@link LaunchWizardServiceException}
71
+ * <p>Base exception class for all service exceptions from LaunchWizard service.</p>
72
+ *
73
+ *
74
+ * @public
75
+ */
76
+ export declare class GetDeploymentPatternVersionCommand extends GetDeploymentPatternVersionCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: GetDeploymentPatternVersionInput;
81
+ output: GetDeploymentPatternVersionOutput;
82
+ };
83
+ sdk: {
84
+ input: GetDeploymentPatternVersionCommandInput;
85
+ output: GetDeploymentPatternVersionCommandOutput;
86
+ };
87
+ };
88
+ }
@@ -45,10 +45,10 @@ declare const GetWorkloadCommand_base: {
45
45
  * // workload: { // WorkloadData
46
46
  * // workloadName: "STRING_VALUE",
47
47
  * // displayName: "STRING_VALUE",
48
+ * // status: "ACTIVE" || "INACTIVE" || "DISABLED" || "DELETED",
48
49
  * // description: "STRING_VALUE",
49
50
  * // documentationUrl: "STRING_VALUE",
50
51
  * // iconUrl: "STRING_VALUE",
51
- * // status: "ACTIVE" || "INACTIVE" || "DISABLED" || "DELETED",
52
52
  * // statusMessage: "STRING_VALUE",
53
53
  * // },
54
54
  * // };
@@ -62,8 +62,7 @@ declare const GetWorkloadCommand_base: {
62
62
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
63
63
  *
64
64
  * @throws {@link InternalServerException} (server fault)
65
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
66
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
65
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
67
66
  *
68
67
  * @throws {@link ResourceNotFoundException} (client fault)
69
68
  * <p>The specified workload or deployment resource can't be found.</p>
@@ -27,10 +27,7 @@ declare const GetWorkloadDeploymentPatternCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Returns details for a given workload and deployment pattern, including the available
31
- * specifications. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html">ListWorkloads</a>
32
- * operation to discover the available workload names and the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html">ListWorkloadDeploymentPatterns</a> operation to discover the available deployment
33
- * pattern names of a given workload.</p>
30
+ * <p>Returns details for a given workload and deployment pattern, including the available specifications. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html">ListWorkloads</a> operation to discover the available workload names and the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html">ListWorkloadDeploymentPatterns</a> operation to discover the available deployment pattern names of a given workload.</p>
34
31
  * @example
35
32
  * Use a bare-bones client and the command you need to make an API call.
36
33
  * ```javascript
@@ -50,6 +47,7 @@ declare const GetWorkloadDeploymentPatternCommand_base: {
50
47
  * // workloadName: "STRING_VALUE",
51
48
  * // deploymentPatternName: "STRING_VALUE",
52
49
  * // workloadVersionName: "STRING_VALUE",
50
+ * // deploymentPatternVersionName: "STRING_VALUE",
53
51
  * // displayName: "STRING_VALUE",
54
52
  * // description: "STRING_VALUE",
55
53
  * // status: "ACTIVE" || "INACTIVE" || "DISABLED" || "DELETED",
@@ -83,8 +81,7 @@ declare const GetWorkloadDeploymentPatternCommand_base: {
83
81
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
84
82
  *
85
83
  * @throws {@link InternalServerException} (server fault)
86
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
87
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
84
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
88
85
  *
89
86
  * @throws {@link ResourceNotFoundException} (client fault)
90
87
  * <p>The specified workload or deployment resource can't be found.</p>
@@ -109,6 +106,7 @@ declare const GetWorkloadDeploymentPatternCommand_base: {
109
106
  * {
110
107
  * workloadDeploymentPattern: {
111
108
  * deploymentPatternName: "adSelfManagedNewVpc",
109
+ * deploymentPatternVersionName: "2024-03-19-14-00-09",
112
110
  * description: "Builds a new AWS environment (VPC and other components), and deploys AD DS into this new VPC.",
113
111
  * displayName: "Self-managed AD - new VPC",
114
112
  * specifications: [
@@ -129,8 +127,7 @@ declare const GetWorkloadDeploymentPatternCommand_base: {
129
127
  * }
130
128
  * ],
131
129
  * status: "ACTIVE",
132
- * workloadName: "MicrosoftActiveDirectory",
133
- * workloadVersionName: "2024-03-19-14-00-09"
130
+ * workloadName: "MicrosoftActiveDirectory"
134
131
  * }
135
132
  * }
136
133
  * *\/
@@ -65,8 +65,7 @@ declare const ListDeploymentEventsCommand_base: {
65
65
  * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape.
66
66
  *
67
67
  * @throws {@link InternalServerException} (server fault)
68
- * <p>An internal error has occurred. Retry your request, but if the problem persists, contact
69
- * us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
68
+ * <p>An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on <a href="https://repost.aws/">re:Post</a>.</p>
70
69
  *
71
70
  * @throws {@link ResourceNotFoundException} (client fault)
72
71
  * <p>The specified workload or deployment resource can't be found.</p>