@aws-sdk/client-launch-wizard 3.587.0 → 3.590.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 (35) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +189 -1
  3. package/dist-es/LaunchWizard.js +8 -0
  4. package/dist-es/commands/GetWorkloadDeploymentPatternCommand.js +24 -0
  5. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  6. package/dist-es/commands/TagResourceCommand.js +24 -0
  7. package/dist-es/commands/UntagResourceCommand.js +24 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/protocols/Aws_restJson1.js +104 -0
  10. package/dist-types/LaunchWizard.d.ts +28 -0
  11. package/dist-types/LaunchWizardClient.d.ts +10 -6
  12. package/dist-types/commands/CreateDeploymentCommand.d.ts +3 -0
  13. package/dist-types/commands/DeleteDeploymentCommand.d.ts +4 -0
  14. package/dist-types/commands/GetDeploymentCommand.d.ts +4 -0
  15. package/dist-types/commands/GetWorkloadDeploymentPatternCommand.d.ts +98 -0
  16. package/dist-types/commands/ListTagsForResourceCommand.d.ts +71 -0
  17. package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListWorkloadsCommand.d.ts +1 -1
  19. package/dist-types/commands/TagResourceCommand.d.ts +70 -0
  20. package/dist-types/commands/UntagResourceCommand.d.ts +70 -0
  21. package/dist-types/commands/index.d.ts +4 -0
  22. package/dist-types/models/models_0.d.ts +241 -23
  23. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  24. package/dist-types/runtimeConfig.native.d.ts +1 -1
  25. package/dist-types/ts3.4/LaunchWizard.d.ts +68 -0
  26. package/dist-types/ts3.4/LaunchWizardClient.d.ts +27 -3
  27. package/dist-types/ts3.4/commands/GetWorkloadDeploymentPatternCommand.d.ts +39 -0
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  31. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  32. package/dist-types/ts3.4/models/models_0.d.ts +56 -8
  33. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  35. package/package.json +5 -5
@@ -5,8 +5,8 @@ import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardS
5
5
  */
6
6
  export interface CreateDeploymentInput {
7
7
  /**
8
- * <p>The name of the workload. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html">
9
- * <code>ListWorkloadDeploymentPatterns</code>
8
+ * <p>The name of the workload. You can use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html">
9
+ * <code>ListWorkloads</code>
10
10
  * </a> operation to discover supported
11
11
  * values for this parameter.</p>
12
12
  * @public
@@ -26,8 +26,13 @@ export interface CreateDeploymentInput {
26
26
  */
27
27
  name: string | undefined;
28
28
  /**
29
- * <p>The settings specified for the deployment. For more information on the specifications
30
- * required for creating a deployment, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html">Workload specifications</a>.</p>
29
+ * <p>The settings specified for the deployment. These settings define how to deploy and configure your
30
+ * resources created by the deployment. For more information about the specifications
31
+ * required for creating a deployment for a SAP workload, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html">SAP deployment
32
+ * specifications</a>. To retrieve the specifications required to create a deployment for other workloads,
33
+ * use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html">
34
+ * <code>GetWorkloadDeploymentPattern</code>
35
+ * </a> operation.</p>
31
36
  * @public
32
37
  */
33
38
  specifications: Record<string, string> | undefined;
@@ -39,6 +44,11 @@ export interface CreateDeploymentInput {
39
44
  * @public
40
45
  */
41
46
  dryRun?: boolean;
47
+ /**
48
+ * <p>The tags to add to the deployment.</p>
49
+ * @public
50
+ */
51
+ tags?: Record<string, string>;
42
52
  }
43
53
  /**
44
54
  * @public
@@ -277,8 +287,13 @@ export interface DeploymentData {
277
287
  */
278
288
  createdAt?: Date;
279
289
  /**
280
- * <p>The specifications of the deployment. For more information on specifications for each
281
- * deployment, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications.html">Workload specifications</a>.</p>
290
+ * <p>The settings specified for the deployment. These settings define how to deploy and configure your
291
+ * resources created by the deployment. For more information about the specifications
292
+ * required for creating a deployment for a SAP workload, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html">SAP deployment
293
+ * specifications</a>. To retrieve the specifications required to create a deployment for other workloads,
294
+ * use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html">
295
+ * <code>GetWorkloadDeploymentPattern</code>
296
+ * </a> operation.</p>
282
297
  * @public
283
298
  */
284
299
  specifications?: Record<string, string>;
@@ -292,6 +307,16 @@ export interface DeploymentData {
292
307
  * @public
293
308
  */
294
309
  deletedAt?: Date;
310
+ /**
311
+ * <p>Information about the tags attached to a deployment.</p>
312
+ * @public
313
+ */
314
+ tags?: Record<string, string>;
315
+ /**
316
+ * <p>The Amazon Resource Name (ARN) of the deployment.</p>
317
+ * @public
318
+ */
319
+ deploymentArn?: string;
295
320
  }
296
321
  /**
297
322
  * @public
@@ -344,12 +369,14 @@ export interface ListDeploymentsInput {
344
369
  * <ul>
345
370
  * <li>
346
371
  * <p>
347
- * <code>WORKLOAD_NAME</code>
348
- * </p>
372
+ * <code>WORKLOAD_NAME</code> - The name used in deployments.</p>
349
373
  * </li>
350
374
  * <li>
351
375
  * <p>
352
- * <code>DEPLOYMENT_STATUS</code>
376
+ * <code>DEPLOYMENT_STATUS</code> - <code>COMPLETED</code> | <code>CREATING</code> |
377
+ * <code>DELETE_IN_PROGRESS</code> | <code>DELETE_INITIATING</code> |
378
+ * <code>DELETE_FAILED</code> | <code>DELETED</code> | <code>FAILED</code> |
379
+ * <code>IN_PROGRESS</code> | <code>VALIDATING</code>
353
380
  * </p>
354
381
  * </li>
355
382
  * </ul>
@@ -421,6 +448,60 @@ export interface ListDeploymentsOutput {
421
448
  */
422
449
  nextToken?: string;
423
450
  }
451
+ /**
452
+ * <p>A field that details a condition of the specifications for a deployment.</p>
453
+ * @public
454
+ */
455
+ export interface DeploymentConditionalField {
456
+ /**
457
+ * <p>The name of the deployment condition.</p>
458
+ * @public
459
+ */
460
+ name?: string;
461
+ /**
462
+ * <p>The value of the condition.</p>
463
+ * @public
464
+ */
465
+ value?: string;
466
+ /**
467
+ * <p>The comparator of the condition.</p>
468
+ * <p>Valid values: <code>Equal | NotEqual</code>
469
+ * </p>
470
+ * @public
471
+ */
472
+ comparator?: string;
473
+ }
474
+ /**
475
+ * <p>A field that details a specification of a deployment pattern.</p>
476
+ * @public
477
+ */
478
+ export interface DeploymentSpecificationsField {
479
+ /**
480
+ * <p>The name of the deployment specification.</p>
481
+ * @public
482
+ */
483
+ name?: string;
484
+ /**
485
+ * <p>The description of the deployment specification.</p>
486
+ * @public
487
+ */
488
+ description?: string;
489
+ /**
490
+ * <p>The allowed values of the deployment specification.</p>
491
+ * @public
492
+ */
493
+ allowedValues?: string[];
494
+ /**
495
+ * <p>Indicates if the deployment specification is required.</p>
496
+ * @public
497
+ */
498
+ required?: string;
499
+ /**
500
+ * <p>The conditionals used for the deployment specification.</p>
501
+ * @public
502
+ */
503
+ conditionals?: DeploymentConditionalField[];
504
+ }
424
505
  /**
425
506
  * @public
426
507
  */
@@ -496,6 +577,157 @@ export interface GetWorkloadOutput {
496
577
  */
497
578
  workload?: WorkloadData;
498
579
  }
580
+ /**
581
+ * @public
582
+ */
583
+ export interface GetWorkloadDeploymentPatternInput {
584
+ /**
585
+ * <p>The name of the workload.</p>
586
+ * @public
587
+ */
588
+ workloadName: string | undefined;
589
+ /**
590
+ * <p>The name of the deployment pattern.</p>
591
+ * @public
592
+ */
593
+ deploymentPatternName: string | undefined;
594
+ }
595
+ /**
596
+ * @public
597
+ * @enum
598
+ */
599
+ export declare const WorkloadDeploymentPatternStatus: {
600
+ readonly ACTIVE: "ACTIVE";
601
+ readonly DELETED: "DELETED";
602
+ readonly DISABLED: "DISABLED";
603
+ readonly INACTIVE: "INACTIVE";
604
+ };
605
+ /**
606
+ * @public
607
+ */
608
+ export type WorkloadDeploymentPatternStatus = (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
609
+ /**
610
+ * <p>The data that details a workload deployment pattern.</p>
611
+ * @public
612
+ */
613
+ export interface WorkloadDeploymentPatternData {
614
+ /**
615
+ * <p>The workload name of the deployment pattern.</p>
616
+ * @public
617
+ */
618
+ workloadName?: string;
619
+ /**
620
+ * <p>The name of the deployment pattern.</p>
621
+ * @public
622
+ */
623
+ deploymentPatternName?: string;
624
+ /**
625
+ * <p>The workload version name of the deployment pattern.</p>
626
+ * @public
627
+ */
628
+ workloadVersionName?: string;
629
+ /**
630
+ * <p>The display name of the deployment pattern.</p>
631
+ * @public
632
+ */
633
+ displayName?: string;
634
+ /**
635
+ * <p>The description of the deployment pattern.</p>
636
+ * @public
637
+ */
638
+ description?: string;
639
+ /**
640
+ * <p>The status of the deployment pattern.</p>
641
+ * @public
642
+ */
643
+ status?: WorkloadDeploymentPatternStatus;
644
+ /**
645
+ * <p>The status message of the deployment pattern.</p>
646
+ * @public
647
+ */
648
+ statusMessage?: string;
649
+ /**
650
+ * <p>The settings specified for the deployment. These settings define how to deploy and configure your
651
+ * resources created by the deployment. For more information about the specifications
652
+ * required for creating a deployment for a SAP workload, see <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html">SAP deployment
653
+ * specifications</a>. To retrieve the specifications required to create a deployment for other workloads,
654
+ * use the <a href="https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html">
655
+ * <code>GetWorkloadDeploymentPattern</code>
656
+ * </a> operation.</p>
657
+ * @public
658
+ */
659
+ specifications?: DeploymentSpecificationsField[];
660
+ }
661
+ /**
662
+ * @public
663
+ */
664
+ export interface GetWorkloadDeploymentPatternOutput {
665
+ /**
666
+ * <p>Details about the workload deployment pattern.</p>
667
+ * @public
668
+ */
669
+ workloadDeploymentPattern?: WorkloadDeploymentPatternData;
670
+ }
671
+ /**
672
+ * @public
673
+ */
674
+ export interface ListTagsForResourceInput {
675
+ /**
676
+ * <p>The Amazon Resource Name (ARN) of the resource.</p>
677
+ * @public
678
+ */
679
+ resourceArn: string | undefined;
680
+ }
681
+ /**
682
+ * @public
683
+ */
684
+ export interface ListTagsForResourceOutput {
685
+ /**
686
+ * <p>Information about the tags.</p>
687
+ * @public
688
+ */
689
+ tags?: Record<string, string>;
690
+ }
691
+ /**
692
+ * @public
693
+ */
694
+ export interface TagResourceInput {
695
+ /**
696
+ * <p>The Amazon Resource Name (ARN) of the resource.</p>
697
+ * @public
698
+ */
699
+ resourceArn: string | undefined;
700
+ /**
701
+ * <p>One or more tags to attach to the resource.</p>
702
+ * @public
703
+ */
704
+ tags: Record<string, string> | undefined;
705
+ }
706
+ /**
707
+ * @public
708
+ */
709
+ export interface TagResourceOutput {
710
+ }
711
+ /**
712
+ * @public
713
+ */
714
+ export interface UntagResourceInput {
715
+ /**
716
+ * <p>The Amazon Resource Name (ARN) of the resource.</p>
717
+ * @public
718
+ */
719
+ resourceArn: string | undefined;
720
+ /**
721
+ * <p>Keys identifying the tags to remove.</p>
722
+ * @public
723
+ */
724
+ tagKeys: string[] | undefined;
725
+ }
726
+ /**
727
+ * @public
728
+ */
729
+ export interface UntagResourceOutput {
730
+ }
499
731
  /**
500
732
  * @public
501
733
  */
@@ -567,20 +799,6 @@ export interface ListWorkloadDeploymentPatternsInput {
567
799
  */
568
800
  nextToken?: string;
569
801
  }
570
- /**
571
- * @public
572
- * @enum
573
- */
574
- export declare const WorkloadDeploymentPatternStatus: {
575
- readonly ACTIVE: "ACTIVE";
576
- readonly DELETED: "DELETED";
577
- readonly DISABLED: "DISABLED";
578
- readonly INACTIVE: "INACTIVE";
579
- };
580
- /**
581
- * @public
582
- */
583
- export type WorkloadDeploymentPatternStatus = (typeof WorkloadDeploymentPatternStatus)[keyof typeof WorkloadDeploymentPatternStatus];
584
802
  /**
585
803
  * <p>Describes a workload deployment pattern.</p>
586
804
  * @public
@@ -4,10 +4,14 @@ import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "../
4
4
  import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "../commands/DeleteDeploymentCommand";
5
5
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
6
6
  import { GetWorkloadCommandInput, GetWorkloadCommandOutput } from "../commands/GetWorkloadCommand";
7
+ import { GetWorkloadDeploymentPatternCommandInput, GetWorkloadDeploymentPatternCommandOutput } from "../commands/GetWorkloadDeploymentPatternCommand";
7
8
  import { ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput } from "../commands/ListDeploymentEventsCommand";
8
9
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
10
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
9
11
  import { ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput } from "../commands/ListWorkloadDeploymentPatternsCommand";
10
12
  import { ListWorkloadsCommandInput, ListWorkloadsCommandOutput } from "../commands/ListWorkloadsCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
11
15
  /**
12
16
  * serializeAws_restJson1CreateDeploymentCommand
13
17
  */
@@ -24,6 +28,10 @@ export declare const se_GetDeploymentCommand: (input: GetDeploymentCommandInput,
24
28
  * serializeAws_restJson1GetWorkloadCommand
25
29
  */
26
30
  export declare const se_GetWorkloadCommand: (input: GetWorkloadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1GetWorkloadDeploymentPatternCommand
33
+ */
34
+ export declare const se_GetWorkloadDeploymentPatternCommand: (input: GetWorkloadDeploymentPatternCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
35
  /**
28
36
  * serializeAws_restJson1ListDeploymentEventsCommand
29
37
  */
@@ -32,6 +40,10 @@ export declare const se_ListDeploymentEventsCommand: (input: ListDeploymentEvent
32
40
  * serializeAws_restJson1ListDeploymentsCommand
33
41
  */
34
42
  export declare const se_ListDeploymentsCommand: (input: ListDeploymentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1ListTagsForResourceCommand
45
+ */
46
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
47
  /**
36
48
  * serializeAws_restJson1ListWorkloadDeploymentPatternsCommand
37
49
  */
@@ -40,6 +52,14 @@ export declare const se_ListWorkloadDeploymentPatternsCommand: (input: ListWorkl
40
52
  * serializeAws_restJson1ListWorkloadsCommand
41
53
  */
42
54
  export declare const se_ListWorkloadsCommand: (input: ListWorkloadsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1TagResourceCommand
57
+ */
58
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1UntagResourceCommand
61
+ */
62
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
63
  /**
44
64
  * deserializeAws_restJson1CreateDeploymentCommand
45
65
  */
@@ -56,6 +76,10 @@ export declare const de_GetDeploymentCommand: (output: __HttpResponse, context:
56
76
  * deserializeAws_restJson1GetWorkloadCommand
57
77
  */
58
78
  export declare const de_GetWorkloadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkloadCommandOutput>;
79
+ /**
80
+ * deserializeAws_restJson1GetWorkloadDeploymentPatternCommand
81
+ */
82
+ export declare const de_GetWorkloadDeploymentPatternCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkloadDeploymentPatternCommandOutput>;
59
83
  /**
60
84
  * deserializeAws_restJson1ListDeploymentEventsCommand
61
85
  */
@@ -64,6 +88,10 @@ export declare const de_ListDeploymentEventsCommand: (output: __HttpResponse, co
64
88
  * deserializeAws_restJson1ListDeploymentsCommand
65
89
  */
66
90
  export declare const de_ListDeploymentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentsCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1ListTagsForResourceCommand
93
+ */
94
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
67
95
  /**
68
96
  * deserializeAws_restJson1ListWorkloadDeploymentPatternsCommand
69
97
  */
@@ -72,3 +100,11 @@ export declare const de_ListWorkloadDeploymentPatternsCommand: (output: __HttpRe
72
100
  * deserializeAws_restJson1ListWorkloadsCommand
73
101
  */
74
102
  export declare const de_ListWorkloadsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkloadsCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1TagResourceCommand
105
+ */
106
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1UntagResourceCommand
109
+ */
110
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -18,8 +18,8 @@ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
18
18
  serviceId: string;
19
19
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
22
21
  region: string | import("@smithy/types").Provider<any>;
22
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
23
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
24
24
  maxAttempts: number | import("@smithy/types").Provider<number>;
25
25
  retryMode: string | import("@smithy/types").Provider<string>;
@@ -15,6 +15,10 @@ import {
15
15
  GetWorkloadCommandInput,
16
16
  GetWorkloadCommandOutput,
17
17
  } from "./commands/GetWorkloadCommand";
18
+ import {
19
+ GetWorkloadDeploymentPatternCommandInput,
20
+ GetWorkloadDeploymentPatternCommandOutput,
21
+ } from "./commands/GetWorkloadDeploymentPatternCommand";
18
22
  import {
19
23
  ListDeploymentEventsCommandInput,
20
24
  ListDeploymentEventsCommandOutput,
@@ -23,6 +27,10 @@ import {
23
27
  ListDeploymentsCommandInput,
24
28
  ListDeploymentsCommandOutput,
25
29
  } from "./commands/ListDeploymentsCommand";
30
+ import {
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ } from "./commands/ListTagsForResourceCommand";
26
34
  import {
27
35
  ListWorkloadDeploymentPatternsCommandInput,
28
36
  ListWorkloadDeploymentPatternsCommandOutput,
@@ -31,6 +39,14 @@ import {
31
39
  ListWorkloadsCommandInput,
32
40
  ListWorkloadsCommandOutput,
33
41
  } from "./commands/ListWorkloadsCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "./commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "./commands/UntagResourceCommand";
34
50
  import { LaunchWizardClient } from "./LaunchWizardClient";
35
51
  export interface LaunchWizard {
36
52
  createDeployment(
@@ -85,6 +101,19 @@ export interface LaunchWizard {
85
101
  options: __HttpHandlerOptions,
86
102
  cb: (err: any, data?: GetWorkloadCommandOutput) => void
87
103
  ): void;
104
+ getWorkloadDeploymentPattern(
105
+ args: GetWorkloadDeploymentPatternCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<GetWorkloadDeploymentPatternCommandOutput>;
108
+ getWorkloadDeploymentPattern(
109
+ args: GetWorkloadDeploymentPatternCommandInput,
110
+ cb: (err: any, data?: GetWorkloadDeploymentPatternCommandOutput) => void
111
+ ): void;
112
+ getWorkloadDeploymentPattern(
113
+ args: GetWorkloadDeploymentPatternCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: GetWorkloadDeploymentPatternCommandOutput) => void
116
+ ): void;
88
117
  listDeploymentEvents(
89
118
  args: ListDeploymentEventsCommandInput,
90
119
  options?: __HttpHandlerOptions
@@ -112,6 +141,19 @@ export interface LaunchWizard {
112
141
  options: __HttpHandlerOptions,
113
142
  cb: (err: any, data?: ListDeploymentsCommandOutput) => void
114
143
  ): void;
144
+ listTagsForResource(
145
+ args: ListTagsForResourceCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<ListTagsForResourceCommandOutput>;
148
+ listTagsForResource(
149
+ args: ListTagsForResourceCommandInput,
150
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
151
+ ): void;
152
+ listTagsForResource(
153
+ args: ListTagsForResourceCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
156
+ ): void;
115
157
  listWorkloadDeploymentPatterns(
116
158
  args: ListWorkloadDeploymentPatternsCommandInput,
117
159
  options?: __HttpHandlerOptions
@@ -139,6 +181,32 @@ export interface LaunchWizard {
139
181
  options: __HttpHandlerOptions,
140
182
  cb: (err: any, data?: ListWorkloadsCommandOutput) => void
141
183
  ): void;
184
+ tagResource(
185
+ args: TagResourceCommandInput,
186
+ options?: __HttpHandlerOptions
187
+ ): Promise<TagResourceCommandOutput>;
188
+ tagResource(
189
+ args: TagResourceCommandInput,
190
+ cb: (err: any, data?: TagResourceCommandOutput) => void
191
+ ): void;
192
+ tagResource(
193
+ args: TagResourceCommandInput,
194
+ options: __HttpHandlerOptions,
195
+ cb: (err: any, data?: TagResourceCommandOutput) => void
196
+ ): void;
197
+ untagResource(
198
+ args: UntagResourceCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<UntagResourceCommandOutput>;
201
+ untagResource(
202
+ args: UntagResourceCommandInput,
203
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
204
+ ): void;
205
+ untagResource(
206
+ args: UntagResourceCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
209
+ ): void;
142
210
  }
143
211
  export declare class LaunchWizard
144
212
  extends LaunchWizardClient
@@ -61,6 +61,10 @@ import {
61
61
  GetWorkloadCommandInput,
62
62
  GetWorkloadCommandOutput,
63
63
  } from "./commands/GetWorkloadCommand";
64
+ import {
65
+ GetWorkloadDeploymentPatternCommandInput,
66
+ GetWorkloadDeploymentPatternCommandOutput,
67
+ } from "./commands/GetWorkloadDeploymentPatternCommand";
64
68
  import {
65
69
  ListDeploymentEventsCommandInput,
66
70
  ListDeploymentEventsCommandOutput,
@@ -69,6 +73,10 @@ import {
69
73
  ListDeploymentsCommandInput,
70
74
  ListDeploymentsCommandOutput,
71
75
  } from "./commands/ListDeploymentsCommand";
76
+ import {
77
+ ListTagsForResourceCommandInput,
78
+ ListTagsForResourceCommandOutput,
79
+ } from "./commands/ListTagsForResourceCommand";
72
80
  import {
73
81
  ListWorkloadDeploymentPatternsCommandInput,
74
82
  ListWorkloadDeploymentPatternsCommandOutput,
@@ -77,6 +85,14 @@ import {
77
85
  ListWorkloadsCommandInput,
78
86
  ListWorkloadsCommandOutput,
79
87
  } from "./commands/ListWorkloadsCommand";
88
+ import {
89
+ TagResourceCommandInput,
90
+ TagResourceCommandOutput,
91
+ } from "./commands/TagResourceCommand";
92
+ import {
93
+ UntagResourceCommandInput,
94
+ UntagResourceCommandOutput,
95
+ } from "./commands/UntagResourceCommand";
80
96
  import {
81
97
  ClientInputEndpointParameters,
82
98
  ClientResolvedEndpointParameters,
@@ -89,19 +105,27 @@ export type ServiceInputTypes =
89
105
  | DeleteDeploymentCommandInput
90
106
  | GetDeploymentCommandInput
91
107
  | GetWorkloadCommandInput
108
+ | GetWorkloadDeploymentPatternCommandInput
92
109
  | ListDeploymentEventsCommandInput
93
110
  | ListDeploymentsCommandInput
111
+ | ListTagsForResourceCommandInput
94
112
  | ListWorkloadDeploymentPatternsCommandInput
95
- | ListWorkloadsCommandInput;
113
+ | ListWorkloadsCommandInput
114
+ | TagResourceCommandInput
115
+ | UntagResourceCommandInput;
96
116
  export type ServiceOutputTypes =
97
117
  | CreateDeploymentCommandOutput
98
118
  | DeleteDeploymentCommandOutput
99
119
  | GetDeploymentCommandOutput
100
120
  | GetWorkloadCommandOutput
121
+ | GetWorkloadDeploymentPatternCommandOutput
101
122
  | ListDeploymentEventsCommandOutput
102
123
  | ListDeploymentsCommandOutput
124
+ | ListTagsForResourceCommandOutput
103
125
  | ListWorkloadDeploymentPatternsCommandOutput
104
- | ListWorkloadsCommandOutput;
126
+ | ListWorkloadsCommandOutput
127
+ | TagResourceCommandOutput
128
+ | UntagResourceCommandOutput;
105
129
  export interface ClientDefaults
106
130
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
107
131
  requestHandler?: __HttpHandlerUserInput;
@@ -118,8 +142,8 @@ export interface ClientDefaults
118
142
  serviceId?: string;
119
143
  useDualstackEndpoint?: boolean | __Provider<boolean>;
120
144
  useFipsEndpoint?: boolean | __Provider<boolean>;
121
- defaultUserAgentProvider?: Provider<__UserAgent>;
122
145
  region?: string | __Provider<string>;
146
+ defaultUserAgentProvider?: Provider<__UserAgent>;
123
147
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
124
148
  maxAttempts?: number | __Provider<number>;
125
149
  retryMode?: string | __Provider<string>;
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LaunchWizardClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LaunchWizardClient";
8
+ import {
9
+ GetWorkloadDeploymentPatternInput,
10
+ GetWorkloadDeploymentPatternOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetWorkloadDeploymentPatternCommandInput
14
+ extends GetWorkloadDeploymentPatternInput {}
15
+ export interface GetWorkloadDeploymentPatternCommandOutput
16
+ extends GetWorkloadDeploymentPatternOutput,
17
+ __MetadataBearer {}
18
+ declare const GetWorkloadDeploymentPatternCommand_base: {
19
+ new (
20
+ input: GetWorkloadDeploymentPatternCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetWorkloadDeploymentPatternCommandInput,
23
+ GetWorkloadDeploymentPatternCommandOutput,
24
+ LaunchWizardClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetWorkloadDeploymentPatternCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetWorkloadDeploymentPatternCommandInput,
32
+ GetWorkloadDeploymentPatternCommandOutput,
33
+ LaunchWizardClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetWorkloadDeploymentPatternCommand extends GetWorkloadDeploymentPatternCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ LaunchWizardClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../LaunchWizardClient";
8
+ import {
9
+ ListTagsForResourceInput,
10
+ ListTagsForResourceOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListTagsForResourceCommandInput
14
+ extends ListTagsForResourceInput {}
15
+ export interface ListTagsForResourceCommandOutput
16
+ extends ListTagsForResourceOutput,
17
+ __MetadataBearer {}
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ LaunchWizardClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListTagsForResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ LaunchWizardClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}