@aws-sdk/client-launch-wizard 3.443.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 (127) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +272 -0
  3. package/dist-cjs/LaunchWizard.js +27 -0
  4. package/dist-cjs/LaunchWizardClient.js +43 -0
  5. package/dist-cjs/commands/CreateDeploymentCommand.js +52 -0
  6. package/dist-cjs/commands/DeleteDeploymentCommand.js +51 -0
  7. package/dist-cjs/commands/GetDeploymentCommand.js +52 -0
  8. package/dist-cjs/commands/GetWorkloadCommand.js +51 -0
  9. package/dist-cjs/commands/ListDeploymentEventsCommand.js +51 -0
  10. package/dist-cjs/commands/ListDeploymentsCommand.js +51 -0
  11. package/dist-cjs/commands/ListWorkloadDeploymentPatternsCommand.js +51 -0
  12. package/dist-cjs/commands/ListWorkloadsCommand.js +51 -0
  13. package/dist-cjs/commands/index.js +11 -0
  14. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  15. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  16. package/dist-cjs/endpoint/ruleset.js +7 -0
  17. package/dist-cjs/extensionConfiguration.js +2 -0
  18. package/dist-cjs/index.js +12 -0
  19. package/dist-cjs/models/LaunchWizardServiceException.js +12 -0
  20. package/dist-cjs/models/index.js +4 -0
  21. package/dist-cjs/models/models_0.js +109 -0
  22. package/dist-cjs/pagination/Interfaces.js +2 -0
  23. package/dist-cjs/pagination/ListDeploymentEventsPaginator.js +29 -0
  24. package/dist-cjs/pagination/ListDeploymentsPaginator.js +29 -0
  25. package/dist-cjs/pagination/ListWorkloadDeploymentPatternsPaginator.js +29 -0
  26. package/dist-cjs/pagination/ListWorkloadsPaginator.js +29 -0
  27. package/dist-cjs/pagination/index.js +8 -0
  28. package/dist-cjs/protocols/Aws_restJson1.js +661 -0
  29. package/dist-cjs/runtimeConfig.browser.js +39 -0
  30. package/dist-cjs/runtimeConfig.js +50 -0
  31. package/dist-cjs/runtimeConfig.native.js +15 -0
  32. package/dist-cjs/runtimeConfig.shared.js +24 -0
  33. package/dist-cjs/runtimeExtensions.js +22 -0
  34. package/dist-es/LaunchWizard.js +23 -0
  35. package/dist-es/LaunchWizardClient.js +39 -0
  36. package/dist-es/commands/CreateDeploymentCommand.js +48 -0
  37. package/dist-es/commands/DeleteDeploymentCommand.js +47 -0
  38. package/dist-es/commands/GetDeploymentCommand.js +48 -0
  39. package/dist-es/commands/GetWorkloadCommand.js +47 -0
  40. package/dist-es/commands/ListDeploymentEventsCommand.js +47 -0
  41. package/dist-es/commands/ListDeploymentsCommand.js +47 -0
  42. package/dist-es/commands/ListWorkloadDeploymentPatternsCommand.js +47 -0
  43. package/dist-es/commands/ListWorkloadsCommand.js +47 -0
  44. package/dist-es/commands/index.js +8 -0
  45. package/dist-es/endpoint/EndpointParameters.js +8 -0
  46. package/dist-es/endpoint/endpointResolver.js +8 -0
  47. package/dist-es/endpoint/ruleset.js +4 -0
  48. package/dist-es/extensionConfiguration.js +1 -0
  49. package/dist-es/index.js +7 -0
  50. package/dist-es/models/LaunchWizardServiceException.js +8 -0
  51. package/dist-es/models/index.js +1 -0
  52. package/dist-es/models/models_0.js +99 -0
  53. package/dist-es/pagination/Interfaces.js +1 -0
  54. package/dist-es/pagination/ListDeploymentEventsPaginator.js +25 -0
  55. package/dist-es/pagination/ListDeploymentsPaginator.js +25 -0
  56. package/dist-es/pagination/ListWorkloadDeploymentPatternsPaginator.js +25 -0
  57. package/dist-es/pagination/ListWorkloadsPaginator.js +25 -0
  58. package/dist-es/pagination/index.js +5 -0
  59. package/dist-es/protocols/Aws_restJson1.js +642 -0
  60. package/dist-es/runtimeConfig.browser.js +34 -0
  61. package/dist-es/runtimeConfig.js +45 -0
  62. package/dist-es/runtimeConfig.native.js +11 -0
  63. package/dist-es/runtimeConfig.shared.js +20 -0
  64. package/dist-es/runtimeExtensions.js +18 -0
  65. package/dist-types/LaunchWizard.d.ts +69 -0
  66. package/dist-types/LaunchWizardClient.d.ts +180 -0
  67. package/dist-types/commands/CreateDeploymentCommand.d.ts +95 -0
  68. package/dist-types/commands/DeleteDeploymentCommand.d.ts +84 -0
  69. package/dist-types/commands/GetDeploymentCommand.d.ts +95 -0
  70. package/dist-types/commands/GetWorkloadCommand.d.ts +91 -0
  71. package/dist-types/commands/ListDeploymentEventsCommand.d.ts +94 -0
  72. package/dist-types/commands/ListDeploymentsCommand.d.ts +99 -0
  73. package/dist-types/commands/ListWorkloadDeploymentPatternsCommand.d.ts +96 -0
  74. package/dist-types/commands/ListWorkloadsCommand.d.ts +87 -0
  75. package/dist-types/commands/index.d.ts +8 -0
  76. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  77. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  78. package/dist-types/endpoint/ruleset.d.ts +2 -0
  79. package/dist-types/extensionConfiguration.d.ts +8 -0
  80. package/dist-types/index.d.ts +16 -0
  81. package/dist-types/models/LaunchWizardServiceException.d.ts +13 -0
  82. package/dist-types/models/index.d.ts +1 -0
  83. package/dist-types/models/models_0.d.ts +652 -0
  84. package/dist-types/pagination/Interfaces.d.ts +8 -0
  85. package/dist-types/pagination/ListDeploymentEventsPaginator.d.ts +7 -0
  86. package/dist-types/pagination/ListDeploymentsPaginator.d.ts +7 -0
  87. package/dist-types/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +7 -0
  88. package/dist-types/pagination/ListWorkloadsPaginator.d.ts +7 -0
  89. package/dist-types/pagination/index.d.ts +5 -0
  90. package/dist-types/protocols/Aws_restJson1.d.ts +74 -0
  91. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  92. package/dist-types/runtimeConfig.d.ts +46 -0
  93. package/dist-types/runtimeConfig.native.d.ts +45 -0
  94. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  95. package/dist-types/runtimeExtensions.d.ts +17 -0
  96. package/dist-types/ts3.4/LaunchWizard.d.ts +143 -0
  97. package/dist-types/ts3.4/LaunchWizardClient.d.ts +167 -0
  98. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +38 -0
  99. package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +38 -0
  100. package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +35 -0
  101. package/dist-types/ts3.4/commands/GetWorkloadCommand.d.ts +35 -0
  102. package/dist-types/ts3.4/commands/ListDeploymentEventsCommand.d.ts +42 -0
  103. package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +38 -0
  104. package/dist-types/ts3.4/commands/ListWorkloadDeploymentPatternsCommand.d.ts +42 -0
  105. package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +35 -0
  106. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  107. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  108. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  109. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  110. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  111. package/dist-types/ts3.4/index.d.ts +8 -0
  112. package/dist-types/ts3.4/models/LaunchWizardServiceException.d.ts +8 -0
  113. package/dist-types/ts3.4/models/index.d.ts +1 -0
  114. package/dist-types/ts3.4/models/models_0.d.ts +201 -0
  115. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  116. package/dist-types/ts3.4/pagination/ListDeploymentEventsPaginator.d.ts +11 -0
  117. package/dist-types/ts3.4/pagination/ListDeploymentsPaginator.d.ts +11 -0
  118. package/dist-types/ts3.4/pagination/ListWorkloadDeploymentPatternsPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListWorkloadsPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  121. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
  122. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  123. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  124. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  125. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  126. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  127. package/package.json +102 -0
@@ -0,0 +1,74 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "../commands/CreateDeploymentCommand";
4
+ import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "../commands/DeleteDeploymentCommand";
5
+ import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "../commands/GetDeploymentCommand";
6
+ import { GetWorkloadCommandInput, GetWorkloadCommandOutput } from "../commands/GetWorkloadCommand";
7
+ import { ListDeploymentEventsCommandInput, ListDeploymentEventsCommandOutput } from "../commands/ListDeploymentEventsCommand";
8
+ import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "../commands/ListDeploymentsCommand";
9
+ import { ListWorkloadDeploymentPatternsCommandInput, ListWorkloadDeploymentPatternsCommandOutput } from "../commands/ListWorkloadDeploymentPatternsCommand";
10
+ import { ListWorkloadsCommandInput, ListWorkloadsCommandOutput } from "../commands/ListWorkloadsCommand";
11
+ /**
12
+ * serializeAws_restJson1CreateDeploymentCommand
13
+ */
14
+ export declare const se_CreateDeploymentCommand: (input: CreateDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ /**
16
+ * serializeAws_restJson1DeleteDeploymentCommand
17
+ */
18
+ export declare const se_DeleteDeploymentCommand: (input: DeleteDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_restJson1GetDeploymentCommand
21
+ */
22
+ export declare const se_GetDeploymentCommand: (input: GetDeploymentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1GetWorkloadCommand
25
+ */
26
+ export declare const se_GetWorkloadCommand: (input: GetWorkloadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1ListDeploymentEventsCommand
29
+ */
30
+ export declare const se_ListDeploymentEventsCommand: (input: ListDeploymentEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1ListDeploymentsCommand
33
+ */
34
+ export declare const se_ListDeploymentsCommand: (input: ListDeploymentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1ListWorkloadDeploymentPatternsCommand
37
+ */
38
+ export declare const se_ListWorkloadDeploymentPatternsCommand: (input: ListWorkloadDeploymentPatternsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1ListWorkloadsCommand
41
+ */
42
+ export declare const se_ListWorkloadsCommand: (input: ListWorkloadsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * deserializeAws_restJson1CreateDeploymentCommand
45
+ */
46
+ export declare const de_CreateDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDeploymentCommandOutput>;
47
+ /**
48
+ * deserializeAws_restJson1DeleteDeploymentCommand
49
+ */
50
+ export declare const de_DeleteDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDeploymentCommandOutput>;
51
+ /**
52
+ * deserializeAws_restJson1GetDeploymentCommand
53
+ */
54
+ export declare const de_GetDeploymentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDeploymentCommandOutput>;
55
+ /**
56
+ * deserializeAws_restJson1GetWorkloadCommand
57
+ */
58
+ export declare const de_GetWorkloadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkloadCommandOutput>;
59
+ /**
60
+ * deserializeAws_restJson1ListDeploymentEventsCommand
61
+ */
62
+ export declare const de_ListDeploymentEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentEventsCommandOutput>;
63
+ /**
64
+ * deserializeAws_restJson1ListDeploymentsCommand
65
+ */
66
+ export declare const de_ListDeploymentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeploymentsCommandOutput>;
67
+ /**
68
+ * deserializeAws_restJson1ListWorkloadDeploymentPatternsCommand
69
+ */
70
+ export declare const de_ListWorkloadDeploymentPatternsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkloadDeploymentPatternsCommandOutput>;
71
+ /**
72
+ * deserializeAws_restJson1ListWorkloadsCommand
73
+ */
74
+ export declare const de_ListWorkloadsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkloadsCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,46 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,45 @@
1
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
+ updateHttpClientConfig(key: never, value: never): void;
10
+ httpHandlerConfigs(): {};
11
+ }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
12
+ apiVersion: string;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: import("@smithy/types").Encoder;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: import("@smithy/types").Encoder;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
27
+ maxAttempts: number | import("@smithy/types").Provider<number>;
28
+ retryMode: string | import("@smithy/types").Provider<string>;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
45
+ };
@@ -0,0 +1,19 @@
1
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,17 @@
1
+ import { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: LaunchWizardExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,143 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateDeploymentCommandInput,
4
+ CreateDeploymentCommandOutput,
5
+ } from "./commands/CreateDeploymentCommand";
6
+ import {
7
+ DeleteDeploymentCommandInput,
8
+ DeleteDeploymentCommandOutput,
9
+ } from "./commands/DeleteDeploymentCommand";
10
+ import {
11
+ GetDeploymentCommandInput,
12
+ GetDeploymentCommandOutput,
13
+ } from "./commands/GetDeploymentCommand";
14
+ import {
15
+ GetWorkloadCommandInput,
16
+ GetWorkloadCommandOutput,
17
+ } from "./commands/GetWorkloadCommand";
18
+ import {
19
+ ListDeploymentEventsCommandInput,
20
+ ListDeploymentEventsCommandOutput,
21
+ } from "./commands/ListDeploymentEventsCommand";
22
+ import {
23
+ ListDeploymentsCommandInput,
24
+ ListDeploymentsCommandOutput,
25
+ } from "./commands/ListDeploymentsCommand";
26
+ import {
27
+ ListWorkloadDeploymentPatternsCommandInput,
28
+ ListWorkloadDeploymentPatternsCommandOutput,
29
+ } from "./commands/ListWorkloadDeploymentPatternsCommand";
30
+ import {
31
+ ListWorkloadsCommandInput,
32
+ ListWorkloadsCommandOutput,
33
+ } from "./commands/ListWorkloadsCommand";
34
+ import { LaunchWizardClient } from "./LaunchWizardClient";
35
+ export interface LaunchWizard {
36
+ createDeployment(
37
+ args: CreateDeploymentCommandInput,
38
+ options?: __HttpHandlerOptions
39
+ ): Promise<CreateDeploymentCommandOutput>;
40
+ createDeployment(
41
+ args: CreateDeploymentCommandInput,
42
+ cb: (err: any, data?: CreateDeploymentCommandOutput) => void
43
+ ): void;
44
+ createDeployment(
45
+ args: CreateDeploymentCommandInput,
46
+ options: __HttpHandlerOptions,
47
+ cb: (err: any, data?: CreateDeploymentCommandOutput) => void
48
+ ): void;
49
+ deleteDeployment(
50
+ args: DeleteDeploymentCommandInput,
51
+ options?: __HttpHandlerOptions
52
+ ): Promise<DeleteDeploymentCommandOutput>;
53
+ deleteDeployment(
54
+ args: DeleteDeploymentCommandInput,
55
+ cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
56
+ ): void;
57
+ deleteDeployment(
58
+ args: DeleteDeploymentCommandInput,
59
+ options: __HttpHandlerOptions,
60
+ cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
61
+ ): void;
62
+ getDeployment(
63
+ args: GetDeploymentCommandInput,
64
+ options?: __HttpHandlerOptions
65
+ ): Promise<GetDeploymentCommandOutput>;
66
+ getDeployment(
67
+ args: GetDeploymentCommandInput,
68
+ cb: (err: any, data?: GetDeploymentCommandOutput) => void
69
+ ): void;
70
+ getDeployment(
71
+ args: GetDeploymentCommandInput,
72
+ options: __HttpHandlerOptions,
73
+ cb: (err: any, data?: GetDeploymentCommandOutput) => void
74
+ ): void;
75
+ getWorkload(
76
+ args: GetWorkloadCommandInput,
77
+ options?: __HttpHandlerOptions
78
+ ): Promise<GetWorkloadCommandOutput>;
79
+ getWorkload(
80
+ args: GetWorkloadCommandInput,
81
+ cb: (err: any, data?: GetWorkloadCommandOutput) => void
82
+ ): void;
83
+ getWorkload(
84
+ args: GetWorkloadCommandInput,
85
+ options: __HttpHandlerOptions,
86
+ cb: (err: any, data?: GetWorkloadCommandOutput) => void
87
+ ): void;
88
+ listDeploymentEvents(
89
+ args: ListDeploymentEventsCommandInput,
90
+ options?: __HttpHandlerOptions
91
+ ): Promise<ListDeploymentEventsCommandOutput>;
92
+ listDeploymentEvents(
93
+ args: ListDeploymentEventsCommandInput,
94
+ cb: (err: any, data?: ListDeploymentEventsCommandOutput) => void
95
+ ): void;
96
+ listDeploymentEvents(
97
+ args: ListDeploymentEventsCommandInput,
98
+ options: __HttpHandlerOptions,
99
+ cb: (err: any, data?: ListDeploymentEventsCommandOutput) => void
100
+ ): void;
101
+ listDeployments(
102
+ args: ListDeploymentsCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<ListDeploymentsCommandOutput>;
105
+ listDeployments(
106
+ args: ListDeploymentsCommandInput,
107
+ cb: (err: any, data?: ListDeploymentsCommandOutput) => void
108
+ ): void;
109
+ listDeployments(
110
+ args: ListDeploymentsCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: ListDeploymentsCommandOutput) => void
113
+ ): void;
114
+ listWorkloadDeploymentPatterns(
115
+ args: ListWorkloadDeploymentPatternsCommandInput,
116
+ options?: __HttpHandlerOptions
117
+ ): Promise<ListWorkloadDeploymentPatternsCommandOutput>;
118
+ listWorkloadDeploymentPatterns(
119
+ args: ListWorkloadDeploymentPatternsCommandInput,
120
+ cb: (err: any, data?: ListWorkloadDeploymentPatternsCommandOutput) => void
121
+ ): void;
122
+ listWorkloadDeploymentPatterns(
123
+ args: ListWorkloadDeploymentPatternsCommandInput,
124
+ options: __HttpHandlerOptions,
125
+ cb: (err: any, data?: ListWorkloadDeploymentPatternsCommandOutput) => void
126
+ ): void;
127
+ listWorkloads(
128
+ args: ListWorkloadsCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<ListWorkloadsCommandOutput>;
131
+ listWorkloads(
132
+ args: ListWorkloadsCommandInput,
133
+ cb: (err: any, data?: ListWorkloadsCommandOutput) => void
134
+ ): void;
135
+ listWorkloads(
136
+ args: ListWorkloadsCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: ListWorkloadsCommandOutput) => void
139
+ ): void;
140
+ }
141
+ export declare class LaunchWizard
142
+ extends LaunchWizardClient
143
+ implements LaunchWizard {}
@@ -0,0 +1,167 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ AwsAuthInputConfig,
7
+ AwsAuthResolvedConfig,
8
+ } from "@aws-sdk/middleware-signing";
9
+ import {
10
+ UserAgentInputConfig,
11
+ UserAgentResolvedConfig,
12
+ } from "@aws-sdk/middleware-user-agent";
13
+ import { Credentials as __Credentials } from "@aws-sdk/types";
14
+ import {
15
+ RegionInputConfig,
16
+ RegionResolvedConfig,
17
+ } from "@smithy/config-resolver";
18
+ import {
19
+ EndpointInputConfig,
20
+ EndpointResolvedConfig,
21
+ } from "@smithy/middleware-endpoint";
22
+ import {
23
+ RetryInputConfig,
24
+ RetryResolvedConfig,
25
+ } from "@smithy/middleware-retry";
26
+ import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
27
+ import {
28
+ Client as __Client,
29
+ DefaultsMode as __DefaultsMode,
30
+ SmithyConfiguration as __SmithyConfiguration,
31
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
32
+ } from "@smithy/smithy-client";
33
+ import {
34
+ BodyLengthCalculator as __BodyLengthCalculator,
35
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
36
+ ChecksumConstructor as __ChecksumConstructor,
37
+ Decoder as __Decoder,
38
+ Encoder as __Encoder,
39
+ HashConstructor as __HashConstructor,
40
+ HttpHandlerOptions as __HttpHandlerOptions,
41
+ Logger as __Logger,
42
+ Provider as __Provider,
43
+ Provider,
44
+ StreamCollector as __StreamCollector,
45
+ UrlParser as __UrlParser,
46
+ UserAgent as __UserAgent,
47
+ } from "@smithy/types";
48
+ import {
49
+ CreateDeploymentCommandInput,
50
+ CreateDeploymentCommandOutput,
51
+ } from "./commands/CreateDeploymentCommand";
52
+ import {
53
+ DeleteDeploymentCommandInput,
54
+ DeleteDeploymentCommandOutput,
55
+ } from "./commands/DeleteDeploymentCommand";
56
+ import {
57
+ GetDeploymentCommandInput,
58
+ GetDeploymentCommandOutput,
59
+ } from "./commands/GetDeploymentCommand";
60
+ import {
61
+ GetWorkloadCommandInput,
62
+ GetWorkloadCommandOutput,
63
+ } from "./commands/GetWorkloadCommand";
64
+ import {
65
+ ListDeploymentEventsCommandInput,
66
+ ListDeploymentEventsCommandOutput,
67
+ } from "./commands/ListDeploymentEventsCommand";
68
+ import {
69
+ ListDeploymentsCommandInput,
70
+ ListDeploymentsCommandOutput,
71
+ } from "./commands/ListDeploymentsCommand";
72
+ import {
73
+ ListWorkloadDeploymentPatternsCommandInput,
74
+ ListWorkloadDeploymentPatternsCommandOutput,
75
+ } from "./commands/ListWorkloadDeploymentPatternsCommand";
76
+ import {
77
+ ListWorkloadsCommandInput,
78
+ ListWorkloadsCommandOutput,
79
+ } from "./commands/ListWorkloadsCommand";
80
+ import {
81
+ ClientInputEndpointParameters,
82
+ ClientResolvedEndpointParameters,
83
+ EndpointParameters,
84
+ } from "./endpoint/EndpointParameters";
85
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
86
+ export { __Client };
87
+ export type ServiceInputTypes =
88
+ | CreateDeploymentCommandInput
89
+ | DeleteDeploymentCommandInput
90
+ | GetDeploymentCommandInput
91
+ | GetWorkloadCommandInput
92
+ | ListDeploymentEventsCommandInput
93
+ | ListDeploymentsCommandInput
94
+ | ListWorkloadDeploymentPatternsCommandInput
95
+ | ListWorkloadsCommandInput;
96
+ export type ServiceOutputTypes =
97
+ | CreateDeploymentCommandOutput
98
+ | DeleteDeploymentCommandOutput
99
+ | GetDeploymentCommandOutput
100
+ | GetWorkloadCommandOutput
101
+ | ListDeploymentEventsCommandOutput
102
+ | ListDeploymentsCommandOutput
103
+ | ListWorkloadDeploymentPatternsCommandOutput
104
+ | ListWorkloadsCommandOutput;
105
+ export interface ClientDefaults
106
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
107
+ requestHandler?: __HttpHandler;
108
+ sha256?: __ChecksumConstructor | __HashConstructor;
109
+ urlParser?: __UrlParser;
110
+ bodyLengthChecker?: __BodyLengthCalculator;
111
+ streamCollector?: __StreamCollector;
112
+ base64Decoder?: __Decoder;
113
+ base64Encoder?: __Encoder;
114
+ utf8Decoder?: __Decoder;
115
+ utf8Encoder?: __Encoder;
116
+ runtime?: string;
117
+ disableHostPrefix?: boolean;
118
+ serviceId?: string;
119
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
120
+ useFipsEndpoint?: boolean | __Provider<boolean>;
121
+ region?: string | __Provider<string>;
122
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
123
+ defaultUserAgentProvider?: Provider<__UserAgent>;
124
+ maxAttempts?: number | __Provider<number>;
125
+ retryMode?: string | __Provider<string>;
126
+ logger?: __Logger;
127
+ extensions?: RuntimeExtension[];
128
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
129
+ }
130
+ export type LaunchWizardClientConfigType = Partial<
131
+ __SmithyConfiguration<__HttpHandlerOptions>
132
+ > &
133
+ ClientDefaults &
134
+ RegionInputConfig &
135
+ EndpointInputConfig<EndpointParameters> &
136
+ RetryInputConfig &
137
+ HostHeaderInputConfig &
138
+ AwsAuthInputConfig &
139
+ UserAgentInputConfig &
140
+ ClientInputEndpointParameters;
141
+ export interface LaunchWizardClientConfig
142
+ extends LaunchWizardClientConfigType {}
143
+ export type LaunchWizardClientResolvedConfigType =
144
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
145
+ Required<ClientDefaults> &
146
+ RuntimeExtensionsConfig &
147
+ RegionResolvedConfig &
148
+ EndpointResolvedConfig<EndpointParameters> &
149
+ RetryResolvedConfig &
150
+ HostHeaderResolvedConfig &
151
+ AwsAuthResolvedConfig &
152
+ UserAgentResolvedConfig &
153
+ ClientResolvedEndpointParameters;
154
+ export interface LaunchWizardClientResolvedConfig
155
+ extends LaunchWizardClientResolvedConfigType {}
156
+ export declare class LaunchWizardClient extends __Client<
157
+ __HttpHandlerOptions,
158
+ ServiceInputTypes,
159
+ ServiceOutputTypes,
160
+ LaunchWizardClientResolvedConfig
161
+ > {
162
+ readonly config: LaunchWizardClientResolvedConfig;
163
+ constructor(
164
+ ...[configuration]: __CheckOptionalClientConfig<LaunchWizardClientConfig>
165
+ );
166
+ destroy(): void;
167
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ LaunchWizardClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../LaunchWizardClient";
14
+ import {
15
+ CreateDeploymentInput,
16
+ CreateDeploymentOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateDeploymentCommandInput extends CreateDeploymentInput {}
20
+ export interface CreateDeploymentCommandOutput
21
+ extends CreateDeploymentOutput,
22
+ __MetadataBearer {}
23
+ export declare class CreateDeploymentCommand extends $Command<
24
+ CreateDeploymentCommandInput,
25
+ CreateDeploymentCommandOutput,
26
+ LaunchWizardClientResolvedConfig
27
+ > {
28
+ readonly input: CreateDeploymentCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateDeploymentCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: LaunchWizardClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ LaunchWizardClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../LaunchWizardClient";
14
+ import {
15
+ DeleteDeploymentInput,
16
+ DeleteDeploymentOutput,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteDeploymentCommandInput extends DeleteDeploymentInput {}
20
+ export interface DeleteDeploymentCommandOutput
21
+ extends DeleteDeploymentOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeleteDeploymentCommand extends $Command<
24
+ DeleteDeploymentCommandInput,
25
+ DeleteDeploymentCommandOutput,
26
+ LaunchWizardClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteDeploymentCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteDeploymentCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: LaunchWizardClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }