@aws-sdk/client-marketplace-deployment 3.463.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 (87) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +237 -0
  3. package/dist-cjs/MarketplaceDeployment.js +19 -0
  4. package/dist-cjs/MarketplaceDeploymentClient.js +43 -0
  5. package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
  6. package/dist-cjs/commands/PutDeploymentParameterCommand.js +52 -0
  7. package/dist-cjs/commands/TagResourceCommand.js +51 -0
  8. package/dist-cjs/commands/UntagResourceCommand.js +51 -0
  9. package/dist-cjs/commands/index.js +7 -0
  10. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  11. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  12. package/dist-cjs/endpoint/ruleset.js +7 -0
  13. package/dist-cjs/extensionConfiguration.js +2 -0
  14. package/dist-cjs/index.js +11 -0
  15. package/dist-cjs/models/MarketplaceDeploymentServiceException.js +12 -0
  16. package/dist-cjs/models/index.js +4 -0
  17. package/dist-cjs/models/models_0.js +114 -0
  18. package/dist-cjs/protocols/Aws_restJson1.js +436 -0
  19. package/dist-cjs/runtimeConfig.browser.js +39 -0
  20. package/dist-cjs/runtimeConfig.js +50 -0
  21. package/dist-cjs/runtimeConfig.native.js +15 -0
  22. package/dist-cjs/runtimeConfig.shared.js +24 -0
  23. package/dist-cjs/runtimeExtensions.js +22 -0
  24. package/dist-es/MarketplaceDeployment.js +15 -0
  25. package/dist-es/MarketplaceDeploymentClient.js +39 -0
  26. package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
  27. package/dist-es/commands/PutDeploymentParameterCommand.js +48 -0
  28. package/dist-es/commands/TagResourceCommand.js +47 -0
  29. package/dist-es/commands/UntagResourceCommand.js +47 -0
  30. package/dist-es/commands/index.js +4 -0
  31. package/dist-es/endpoint/EndpointParameters.js +8 -0
  32. package/dist-es/endpoint/endpointResolver.js +8 -0
  33. package/dist-es/endpoint/ruleset.js +4 -0
  34. package/dist-es/extensionConfiguration.js +1 -0
  35. package/dist-es/index.js +6 -0
  36. package/dist-es/models/MarketplaceDeploymentServiceException.js +8 -0
  37. package/dist-es/models/index.js +1 -0
  38. package/dist-es/models/models_0.js +102 -0
  39. package/dist-es/protocols/Aws_restJson1.js +425 -0
  40. package/dist-es/runtimeConfig.browser.js +34 -0
  41. package/dist-es/runtimeConfig.js +45 -0
  42. package/dist-es/runtimeConfig.native.js +11 -0
  43. package/dist-es/runtimeConfig.shared.js +20 -0
  44. package/dist-es/runtimeExtensions.js +18 -0
  45. package/dist-types/MarketplaceDeployment.d.ts +38 -0
  46. package/dist-types/MarketplaceDeploymentClient.d.ts +173 -0
  47. package/dist-types/commands/ListTagsForResourceCommand.d.ts +90 -0
  48. package/dist-types/commands/PutDeploymentParameterCommand.d.ts +110 -0
  49. package/dist-types/commands/TagResourceCommand.d.ts +92 -0
  50. package/dist-types/commands/UntagResourceCommand.d.ts +92 -0
  51. package/dist-types/commands/index.d.ts +4 -0
  52. package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
  53. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  54. package/dist-types/endpoint/ruleset.d.ts +2 -0
  55. package/dist-types/extensionConfiguration.d.ts +8 -0
  56. package/dist-types/index.d.ts +14 -0
  57. package/dist-types/models/MarketplaceDeploymentServiceException.d.ts +13 -0
  58. package/dist-types/models/index.d.ts +1 -0
  59. package/dist-types/models/models_0.d.ts +250 -0
  60. package/dist-types/protocols/Aws_restJson1.d.ts +38 -0
  61. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  62. package/dist-types/runtimeConfig.d.ts +46 -0
  63. package/dist-types/runtimeConfig.native.d.ts +45 -0
  64. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  65. package/dist-types/runtimeExtensions.d.ts +17 -0
  66. package/dist-types/ts3.4/MarketplaceDeployment.d.ts +75 -0
  67. package/dist-types/ts3.4/MarketplaceDeploymentClient.d.ts +145 -0
  68. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  69. package/dist-types/ts3.4/commands/PutDeploymentParameterCommand.d.ts +42 -0
  70. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  71. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  73. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  74. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  75. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  76. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  77. package/dist-types/ts3.4/index.d.ts +9 -0
  78. package/dist-types/ts3.4/models/MarketplaceDeploymentServiceException.d.ts +8 -0
  79. package/dist-types/ts3.4/models/index.d.ts +1 -0
  80. package/dist-types/ts3.4/models/models_0.d.ts +96 -0
  81. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -0
  82. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
  83. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  84. package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
  85. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  86. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  87. package/package.json +104 -0
@@ -0,0 +1,250 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
3
+ /**
4
+ * @public
5
+ * <p>You do not have sufficient access to perform this action.</p>
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * @public
17
+ * <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
18
+ */
19
+ export declare class ConflictException extends __BaseException {
20
+ readonly name: "ConflictException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @public
24
+ * <p>The unique identifier for the resource associated with the error.</p>
25
+ */
26
+ resourceId: string | undefined;
27
+ /**
28
+ * @internal
29
+ */
30
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
31
+ }
32
+ /**
33
+ * @public
34
+ * <p>There was an internal service exception.</p>
35
+ */
36
+ export declare class InternalServerException extends __BaseException {
37
+ readonly name: "InternalServerException";
38
+ readonly $fault: "server";
39
+ $retryable: {};
40
+ /**
41
+ * @internal
42
+ */
43
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
44
+ }
45
+ /**
46
+ * @public
47
+ * <p>The shape containing the requested deployment parameter name and secretString.</p>
48
+ */
49
+ export interface DeploymentParameterInput {
50
+ /**
51
+ * @public
52
+ * <p>The desired name of the deployment parameter. This is the identifier on which deployment parameters are keyed for a given buyer and product. If this name matches an existing deployment parameter, this request will update the existing resource.</p>
53
+ */
54
+ name: string | undefined;
55
+ /**
56
+ * @public
57
+ * <p>The text to encrypt and store in the secret.</p>
58
+ */
59
+ secretString: string | undefined;
60
+ }
61
+ /**
62
+ * @public
63
+ */
64
+ export interface PutDeploymentParameterRequest {
65
+ /**
66
+ * @public
67
+ * <p>The catalog related to the request. Fixed value: <code>AWS Marketplace</code>
68
+ * </p>
69
+ */
70
+ catalog: string | undefined;
71
+ /**
72
+ * @public
73
+ * <p>The product for which AWS Marketplace will save secrets for the buyer’s account.</p>
74
+ */
75
+ productId: string | undefined;
76
+ /**
77
+ * @public
78
+ * <p>The unique identifier of the agreement.</p>
79
+ */
80
+ agreementId: string | undefined;
81
+ /**
82
+ * @public
83
+ * <p>The deployment parameter targeted to the acceptor of an agreement for which to create the AWS Secret Manager resource.</p>
84
+ */
85
+ deploymentParameter: DeploymentParameterInput | undefined;
86
+ /**
87
+ * @public
88
+ * <p>A map of key-value pairs, where each pair represents a tag saved to the resource. Tags will only be applied for create operations, and they'll be ignored if the resource already exists.</p>
89
+ */
90
+ tags?: Record<string, string>;
91
+ /**
92
+ * @public
93
+ * <p>The date when deployment parameters expire and are scheduled for deletion.</p>
94
+ */
95
+ expirationDate?: Date;
96
+ /**
97
+ * @public
98
+ * <p>The idempotency token for deployment parameters. A unique identifier for the new version.</p>
99
+ */
100
+ clientToken?: string;
101
+ }
102
+ /**
103
+ * @public
104
+ */
105
+ export interface PutDeploymentParameterResponse {
106
+ /**
107
+ * @public
108
+ * <p>The Amazon Resource Name (ARN) associated with the deployment parameter resource you want to create or update.</p>
109
+ */
110
+ resourceArn: string | undefined;
111
+ /**
112
+ * @public
113
+ * <p>The unique identifier of the agreement.</p>
114
+ */
115
+ agreementId: string | undefined;
116
+ /**
117
+ * @public
118
+ * <p>The unique identifier of the deployment parameter.</p>
119
+ */
120
+ deploymentParameterId: string | undefined;
121
+ /**
122
+ * @public
123
+ * <p>A map of key-value pairs, where each pair represents a tag saved to the resource. Tags will only be applied for create operations, and they'll be ignored if the resource already exists.</p>
124
+ */
125
+ tags?: Record<string, string>;
126
+ }
127
+ /**
128
+ * @public
129
+ * <p>The specified resource wasn't found.</p>
130
+ */
131
+ export declare class ResourceNotFoundException extends __BaseException {
132
+ readonly name: "ResourceNotFoundException";
133
+ readonly $fault: "client";
134
+ /**
135
+ * @internal
136
+ */
137
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
138
+ }
139
+ /**
140
+ * @public
141
+ * <p>The maximum number of requests per account has been exceeded.</p>
142
+ */
143
+ export declare class ServiceQuotaExceededException extends __BaseException {
144
+ readonly name: "ServiceQuotaExceededException";
145
+ readonly $fault: "client";
146
+ /**
147
+ * @internal
148
+ */
149
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
150
+ }
151
+ /**
152
+ * @public
153
+ * <p>Too many requests.</p>
154
+ */
155
+ export declare class ThrottlingException extends __BaseException {
156
+ readonly name: "ThrottlingException";
157
+ readonly $fault: "client";
158
+ $retryable: {
159
+ throttling: boolean;
160
+ };
161
+ /**
162
+ * @internal
163
+ */
164
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
165
+ }
166
+ /**
167
+ * @public
168
+ * <p>An error occurred during validation.</p>
169
+ */
170
+ export declare class ValidationException extends __BaseException {
171
+ readonly name: "ValidationException";
172
+ readonly $fault: "client";
173
+ /**
174
+ * @public
175
+ * <p>The field name associated with the error.</p>
176
+ */
177
+ fieldName: string | undefined;
178
+ /**
179
+ * @internal
180
+ */
181
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
182
+ }
183
+ /**
184
+ * @public
185
+ */
186
+ export interface ListTagsForResourceRequest {
187
+ /**
188
+ * @public
189
+ * <p>The Amazon Resource Name (ARN) associated with the deployment parameter resource you want to list tags on.</p>
190
+ */
191
+ resourceArn: string | undefined;
192
+ }
193
+ /**
194
+ * @public
195
+ */
196
+ export interface ListTagsForResourceResponse {
197
+ /**
198
+ * @public
199
+ * <p>A map of key-value pairs, where each pair represents a tag present on the resource.</p>
200
+ */
201
+ tags?: Record<string, string>;
202
+ }
203
+ /**
204
+ * @public
205
+ */
206
+ export interface TagResourceRequest {
207
+ /**
208
+ * @public
209
+ * <p>The Amazon Resource Name (ARN) associated with the resource you want to tag.</p>
210
+ */
211
+ resourceArn: string | undefined;
212
+ /**
213
+ * @public
214
+ * <p>A map of key-value pairs, where each pair represents a tag present on the resource.</p>
215
+ */
216
+ tags?: Record<string, string>;
217
+ }
218
+ /**
219
+ * @public
220
+ */
221
+ export interface TagResourceResponse {
222
+ }
223
+ /**
224
+ * @public
225
+ */
226
+ export interface UntagResourceRequest {
227
+ /**
228
+ * @public
229
+ * <p>The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.</p>
230
+ */
231
+ resourceArn: string | undefined;
232
+ /**
233
+ * @public
234
+ * <p>A list of key names of tags to be removed.</p>
235
+ */
236
+ tagKeys: string[] | undefined;
237
+ }
238
+ /**
239
+ * @public
240
+ */
241
+ export interface UntagResourceResponse {
242
+ }
243
+ /**
244
+ * @internal
245
+ */
246
+ export declare const DeploymentParameterInputFilterSensitiveLog: (obj: DeploymentParameterInput) => any;
247
+ /**
248
+ * @internal
249
+ */
250
+ export declare const PutDeploymentParameterRequestFilterSensitiveLog: (obj: PutDeploymentParameterRequest) => any;
@@ -0,0 +1,38 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
4
+ import { PutDeploymentParameterCommandInput, PutDeploymentParameterCommandOutput } from "../commands/PutDeploymentParameterCommand";
5
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
6
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
7
+ /**
8
+ * serializeAws_restJson1ListTagsForResourceCommand
9
+ */
10
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
+ /**
12
+ * serializeAws_restJson1PutDeploymentParameterCommand
13
+ */
14
+ export declare const se_PutDeploymentParameterCommand: (input: PutDeploymentParameterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
15
+ /**
16
+ * serializeAws_restJson1TagResourceCommand
17
+ */
18
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_restJson1UntagResourceCommand
21
+ */
22
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * deserializeAws_restJson1ListTagsForResourceCommand
25
+ */
26
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
27
+ /**
28
+ * deserializeAws_restJson1PutDeploymentParameterCommand
29
+ */
30
+ export declare const de_PutDeploymentParameterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutDeploymentParameterCommandOutput>;
31
+ /**
32
+ * deserializeAws_restJson1TagResourceCommand
33
+ */
34
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
35
+ /**
36
+ * deserializeAws_restJson1UntagResourceCommand
37
+ */
38
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfig) => {
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 { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfig) => {
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 { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfig) => {
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 { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfig) => {
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 { MarketplaceDeploymentExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: MarketplaceDeploymentExtensionConfiguration): 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,75 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ ListTagsForResourceCommandInput,
4
+ ListTagsForResourceCommandOutput,
5
+ } from "./commands/ListTagsForResourceCommand";
6
+ import {
7
+ PutDeploymentParameterCommandInput,
8
+ PutDeploymentParameterCommandOutput,
9
+ } from "./commands/PutDeploymentParameterCommand";
10
+ import {
11
+ TagResourceCommandInput,
12
+ TagResourceCommandOutput,
13
+ } from "./commands/TagResourceCommand";
14
+ import {
15
+ UntagResourceCommandInput,
16
+ UntagResourceCommandOutput,
17
+ } from "./commands/UntagResourceCommand";
18
+ import { MarketplaceDeploymentClient } from "./MarketplaceDeploymentClient";
19
+ export interface MarketplaceDeployment {
20
+ listTagsForResource(
21
+ args: ListTagsForResourceCommandInput,
22
+ options?: __HttpHandlerOptions
23
+ ): Promise<ListTagsForResourceCommandOutput>;
24
+ listTagsForResource(
25
+ args: ListTagsForResourceCommandInput,
26
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
27
+ ): void;
28
+ listTagsForResource(
29
+ args: ListTagsForResourceCommandInput,
30
+ options: __HttpHandlerOptions,
31
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
32
+ ): void;
33
+ putDeploymentParameter(
34
+ args: PutDeploymentParameterCommandInput,
35
+ options?: __HttpHandlerOptions
36
+ ): Promise<PutDeploymentParameterCommandOutput>;
37
+ putDeploymentParameter(
38
+ args: PutDeploymentParameterCommandInput,
39
+ cb: (err: any, data?: PutDeploymentParameterCommandOutput) => void
40
+ ): void;
41
+ putDeploymentParameter(
42
+ args: PutDeploymentParameterCommandInput,
43
+ options: __HttpHandlerOptions,
44
+ cb: (err: any, data?: PutDeploymentParameterCommandOutput) => void
45
+ ): void;
46
+ tagResource(
47
+ args: TagResourceCommandInput,
48
+ options?: __HttpHandlerOptions
49
+ ): Promise<TagResourceCommandOutput>;
50
+ tagResource(
51
+ args: TagResourceCommandInput,
52
+ cb: (err: any, data?: TagResourceCommandOutput) => void
53
+ ): void;
54
+ tagResource(
55
+ args: TagResourceCommandInput,
56
+ options: __HttpHandlerOptions,
57
+ cb: (err: any, data?: TagResourceCommandOutput) => void
58
+ ): void;
59
+ untagResource(
60
+ args: UntagResourceCommandInput,
61
+ options?: __HttpHandlerOptions
62
+ ): Promise<UntagResourceCommandOutput>;
63
+ untagResource(
64
+ args: UntagResourceCommandInput,
65
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
66
+ ): void;
67
+ untagResource(
68
+ args: UntagResourceCommandInput,
69
+ options: __HttpHandlerOptions,
70
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
71
+ ): void;
72
+ }
73
+ export declare class MarketplaceDeployment
74
+ extends MarketplaceDeploymentClient
75
+ implements MarketplaceDeployment {}