@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,101 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateDeploymentCommandInput,
8
+ CreateDeploymentCommandOutput,
9
+ } from "../commands/CreateDeploymentCommand";
10
+ import {
11
+ DeleteDeploymentCommandInput,
12
+ DeleteDeploymentCommandOutput,
13
+ } from "../commands/DeleteDeploymentCommand";
14
+ import {
15
+ GetDeploymentCommandInput,
16
+ GetDeploymentCommandOutput,
17
+ } from "../commands/GetDeploymentCommand";
18
+ import {
19
+ GetWorkloadCommandInput,
20
+ GetWorkloadCommandOutput,
21
+ } from "../commands/GetWorkloadCommand";
22
+ import {
23
+ ListDeploymentEventsCommandInput,
24
+ ListDeploymentEventsCommandOutput,
25
+ } from "../commands/ListDeploymentEventsCommand";
26
+ import {
27
+ ListDeploymentsCommandInput,
28
+ ListDeploymentsCommandOutput,
29
+ } from "../commands/ListDeploymentsCommand";
30
+ import {
31
+ ListWorkloadDeploymentPatternsCommandInput,
32
+ ListWorkloadDeploymentPatternsCommandOutput,
33
+ } from "../commands/ListWorkloadDeploymentPatternsCommand";
34
+ import {
35
+ ListWorkloadsCommandInput,
36
+ ListWorkloadsCommandOutput,
37
+ } from "../commands/ListWorkloadsCommand";
38
+ export declare const se_CreateDeploymentCommand: (
39
+ input: CreateDeploymentCommandInput,
40
+ context: __SerdeContext
41
+ ) => Promise<__HttpRequest>;
42
+ export declare const se_DeleteDeploymentCommand: (
43
+ input: DeleteDeploymentCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const se_GetDeploymentCommand: (
47
+ input: GetDeploymentCommandInput,
48
+ context: __SerdeContext
49
+ ) => Promise<__HttpRequest>;
50
+ export declare const se_GetWorkloadCommand: (
51
+ input: GetWorkloadCommandInput,
52
+ context: __SerdeContext
53
+ ) => Promise<__HttpRequest>;
54
+ export declare const se_ListDeploymentEventsCommand: (
55
+ input: ListDeploymentEventsCommandInput,
56
+ context: __SerdeContext
57
+ ) => Promise<__HttpRequest>;
58
+ export declare const se_ListDeploymentsCommand: (
59
+ input: ListDeploymentsCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const se_ListWorkloadDeploymentPatternsCommand: (
63
+ input: ListWorkloadDeploymentPatternsCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const se_ListWorkloadsCommand: (
67
+ input: ListWorkloadsCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const de_CreateDeploymentCommand: (
71
+ output: __HttpResponse,
72
+ context: __SerdeContext
73
+ ) => Promise<CreateDeploymentCommandOutput>;
74
+ export declare const de_DeleteDeploymentCommand: (
75
+ output: __HttpResponse,
76
+ context: __SerdeContext
77
+ ) => Promise<DeleteDeploymentCommandOutput>;
78
+ export declare const de_GetDeploymentCommand: (
79
+ output: __HttpResponse,
80
+ context: __SerdeContext
81
+ ) => Promise<GetDeploymentCommandOutput>;
82
+ export declare const de_GetWorkloadCommand: (
83
+ output: __HttpResponse,
84
+ context: __SerdeContext
85
+ ) => Promise<GetWorkloadCommandOutput>;
86
+ export declare const de_ListDeploymentEventsCommand: (
87
+ output: __HttpResponse,
88
+ context: __SerdeContext
89
+ ) => Promise<ListDeploymentEventsCommandOutput>;
90
+ export declare const de_ListDeploymentsCommand: (
91
+ output: __HttpResponse,
92
+ context: __SerdeContext
93
+ ) => Promise<ListDeploymentsCommandOutput>;
94
+ export declare const de_ListWorkloadDeploymentPatternsCommand: (
95
+ output: __HttpResponse,
96
+ context: __SerdeContext
97
+ ) => Promise<ListWorkloadDeploymentPatternsCommandOutput>;
98
+ export declare const de_ListWorkloadsCommand: (
99
+ output: __HttpResponse,
100
+ context: __SerdeContext
101
+ ) => Promise<ListWorkloadsCommandOutput>;
@@ -0,0 +1,97 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
3
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/types").RequestHandler<
24
+ import("@smithy/protocol-http").HttpRequest,
25
+ import("@smithy/protocol-http").HttpResponse,
26
+ import("@smithy/types").HttpHandlerOptions
27
+ > & {
28
+ updateHttpClientConfig(key: never, value: never): void;
29
+ httpHandlerConfigs(): {};
30
+ })
31
+ | RequestHandler;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ sha256: import("@smithy/types").HashConstructor;
34
+ streamCollector: import("@smithy/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ apiVersion: string;
38
+ urlParser: import("@smithy/types").UrlParser;
39
+ base64Decoder: import("@smithy/types").Decoder;
40
+ base64Encoder: import("@smithy/types").Encoder;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: import("@smithy/types").Encoder;
43
+ disableHostPrefix: boolean;
44
+ serviceId: string;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ retryStrategy?:
72
+ | import("@smithy/types").RetryStrategy
73
+ | import("@smithy/types").RetryStrategyV2
74
+ | undefined;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").Provider<
78
+ import("@smithy/types").AwsCredentialIdentity
79
+ >
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
97
+ };
@@ -0,0 +1,97 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
3
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@smithy/types").Provider<
13
+ import("@smithy/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<string>;
17
+ requestHandler:
18
+ | (import("@smithy/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@smithy/types").HttpHandlerOptions
22
+ > &
23
+ import("@smithy/types").RequestHandler<
24
+ import("@smithy/protocol-http").HttpRequest,
25
+ import("@smithy/protocol-http").HttpResponse,
26
+ import("@smithy/types").HttpHandlerOptions
27
+ > & {
28
+ updateHttpClientConfig(key: never, value: never): void;
29
+ httpHandlerConfigs(): {};
30
+ })
31
+ | RequestHandler;
32
+ retryMode: string | import("@smithy/types").Provider<string>;
33
+ sha256: import("@smithy/types").HashConstructor;
34
+ streamCollector: import("@smithy/types").StreamCollector;
35
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
36
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ apiVersion: string;
38
+ urlParser: import("@smithy/types").UrlParser;
39
+ base64Decoder: import("@smithy/types").Decoder;
40
+ base64Encoder: import("@smithy/types").Encoder;
41
+ utf8Decoder: import("@smithy/types").Decoder;
42
+ utf8Encoder: import("@smithy/types").Encoder;
43
+ disableHostPrefix: boolean;
44
+ serviceId: string;
45
+ logger: import("@smithy/types").Logger;
46
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger | undefined;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean | undefined;
71
+ retryStrategy?:
72
+ | import("@smithy/types").RetryStrategy
73
+ | import("@smithy/types").RetryStrategyV2
74
+ | undefined;
75
+ credentials?:
76
+ | import("@smithy/types").AwsCredentialIdentity
77
+ | import("@smithy/types").Provider<
78
+ import("@smithy/types").AwsCredentialIdentity
79
+ >
80
+ | undefined;
81
+ signer?:
82
+ | import("@smithy/types").RequestSigner
83
+ | ((
84
+ authScheme?: import("@smithy/types").AuthScheme | undefined
85
+ ) => Promise<import("@smithy/types").RequestSigner>)
86
+ | undefined;
87
+ signingEscapePath?: boolean | undefined;
88
+ systemClockOffset?: number | undefined;
89
+ signingRegion?: string | undefined;
90
+ signerConstructor?:
91
+ | (new (
92
+ options: import("@smithy/signature-v4").SignatureV4Init &
93
+ import("@smithy/signature-v4").SignatureV4CryptoInit
94
+ ) => import("@smithy/types").RequestSigner)
95
+ | undefined;
96
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
97
+ };
@@ -0,0 +1,88 @@
1
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
2
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | (import("@smithy/types").RequestHandler<
7
+ any,
8
+ any,
9
+ import("@smithy/types").HttpHandlerOptions
10
+ > &
11
+ import("@smithy/types").RequestHandler<
12
+ import("@smithy/protocol-http").HttpRequest,
13
+ import("@smithy/protocol-http").HttpResponse,
14
+ import("@smithy/types").HttpHandlerOptions
15
+ > & {
16
+ updateHttpClientConfig(key: never, value: never): void;
17
+ httpHandlerConfigs(): {};
18
+ })
19
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
+ streamCollector: import("@smithy/types").StreamCollector;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: import("@smithy/types").Encoder;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: import("@smithy/types").Encoder;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ region: string | import("@smithy/types").Provider<any>;
33
+ credentialDefaultProvider: (
34
+ input: any
35
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
36
+ defaultUserAgentProvider: import("@smithy/types").Provider<
37
+ import("@smithy/types").UserAgent
38
+ >;
39
+ maxAttempts: number | import("@smithy/types").Provider<number>;
40
+ retryMode: string | import("@smithy/types").Provider<string>;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ defaultsMode:
44
+ | import("@smithy/smithy-client").DefaultsMode
45
+ | import("@smithy/types").Provider<
46
+ import("@smithy/smithy-client").DefaultsMode
47
+ >;
48
+ endpoint?:
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ | undefined;
55
+ endpointProvider: (
56
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
57
+ context?: {
58
+ logger?: import("@smithy/types").Logger | undefined;
59
+ }
60
+ ) => import("@smithy/types").EndpointV2;
61
+ tls?: boolean | undefined;
62
+ retryStrategy?:
63
+ | import("@smithy/types").RetryStrategy
64
+ | import("@smithy/types").RetryStrategyV2
65
+ | undefined;
66
+ credentials?:
67
+ | import("@smithy/types").AwsCredentialIdentity
68
+ | import("@smithy/types").Provider<
69
+ import("@smithy/types").AwsCredentialIdentity
70
+ >
71
+ | undefined;
72
+ signer?:
73
+ | import("@smithy/types").RequestSigner
74
+ | ((
75
+ authScheme?: import("@smithy/types").AuthScheme | undefined
76
+ ) => Promise<import("@smithy/types").RequestSigner>)
77
+ | undefined;
78
+ signingEscapePath?: boolean | undefined;
79
+ systemClockOffset?: number | undefined;
80
+ signingRegion?: string | undefined;
81
+ signerConstructor?:
82
+ | (new (
83
+ options: import("@smithy/signature-v4").SignatureV4Init &
84
+ import("@smithy/signature-v4").SignatureV4CryptoInit
85
+ ) => import("@smithy/types").RequestSigner)
86
+ | undefined;
87
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
88
+ };
@@ -0,0 +1,19 @@
1
+ import { LaunchWizardClientConfig } from "./LaunchWizardClient";
2
+ export declare const getRuntimeConfig: (config: LaunchWizardClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: import("@smithy/types").Encoder;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger | undefined;
11
+ }
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,11 @@
1
+ import { LaunchWizardExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: LaunchWizardExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@aws-sdk/client-launch-wizard",
3
+ "description": "AWS SDK for JavaScript Launch Wizard Client for Node.js, Browser and React Native",
4
+ "version": "3.443.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
+ "build:es": "tsc -p tsconfig.es.json",
10
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
11
+ "build:types": "tsc -p tsconfig.types.json",
12
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
15
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo launch-wizard"
16
+ },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
20
+ "sideEffects": false,
21
+ "dependencies": {
22
+ "@aws-crypto/sha256-browser": "3.0.0",
23
+ "@aws-crypto/sha256-js": "3.0.0",
24
+ "@aws-sdk/client-sts": "3.441.0",
25
+ "@aws-sdk/core": "3.441.0",
26
+ "@aws-sdk/credential-provider-node": "3.441.0",
27
+ "@aws-sdk/middleware-host-header": "3.433.0",
28
+ "@aws-sdk/middleware-logger": "3.433.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.433.0",
30
+ "@aws-sdk/middleware-signing": "3.433.0",
31
+ "@aws-sdk/middleware-user-agent": "3.438.0",
32
+ "@aws-sdk/region-config-resolver": "3.433.0",
33
+ "@aws-sdk/types": "3.433.0",
34
+ "@aws-sdk/util-endpoints": "3.438.0",
35
+ "@aws-sdk/util-user-agent-browser": "3.433.0",
36
+ "@aws-sdk/util-user-agent-node": "3.437.0",
37
+ "@smithy/config-resolver": "^2.0.16",
38
+ "@smithy/fetch-http-handler": "^2.2.4",
39
+ "@smithy/hash-node": "^2.0.12",
40
+ "@smithy/invalid-dependency": "^2.0.12",
41
+ "@smithy/middleware-content-length": "^2.0.14",
42
+ "@smithy/middleware-endpoint": "^2.1.3",
43
+ "@smithy/middleware-retry": "^2.0.18",
44
+ "@smithy/middleware-serde": "^2.0.12",
45
+ "@smithy/middleware-stack": "^2.0.6",
46
+ "@smithy/node-config-provider": "^2.1.3",
47
+ "@smithy/node-http-handler": "^2.1.8",
48
+ "@smithy/protocol-http": "^3.0.8",
49
+ "@smithy/smithy-client": "^2.1.12",
50
+ "@smithy/types": "^2.4.0",
51
+ "@smithy/url-parser": "^2.0.12",
52
+ "@smithy/util-base64": "^2.0.0",
53
+ "@smithy/util-body-length-browser": "^2.0.0",
54
+ "@smithy/util-body-length-node": "^2.1.0",
55
+ "@smithy/util-defaults-mode-browser": "^2.0.16",
56
+ "@smithy/util-defaults-mode-node": "^2.0.21",
57
+ "@smithy/util-endpoints": "^1.0.2",
58
+ "@smithy/util-retry": "^2.0.5",
59
+ "@smithy/util-utf8": "^2.0.0",
60
+ "tslib": "^2.5.0"
61
+ },
62
+ "devDependencies": {
63
+ "@smithy/service-client-documentation-generator": "^2.0.0",
64
+ "@tsconfig/node14": "1.0.3",
65
+ "@types/node": "^14.14.31",
66
+ "concurrently": "7.0.0",
67
+ "downlevel-dts": "0.10.1",
68
+ "rimraf": "3.0.2",
69
+ "typedoc": "0.23.23",
70
+ "typescript": "~4.9.5"
71
+ },
72
+ "engines": {
73
+ "node": ">=14.0.0"
74
+ },
75
+ "typesVersions": {
76
+ "<4.0": {
77
+ "dist-types/*": [
78
+ "dist-types/ts3.4/*"
79
+ ]
80
+ }
81
+ },
82
+ "files": [
83
+ "dist-*/**"
84
+ ],
85
+ "author": {
86
+ "name": "AWS SDK for JavaScript Team",
87
+ "url": "https://aws.amazon.com/javascript/"
88
+ },
89
+ "license": "Apache-2.0",
90
+ "browser": {
91
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
92
+ },
93
+ "react-native": {
94
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
95
+ },
96
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-launch-wizard",
97
+ "repository": {
98
+ "type": "git",
99
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
100
+ "directory": "clients/client-launch-wizard"
101
+ }
102
+ }