@aws-sdk/client-marketplace-deployment 3.928.0 → 3.930.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.
- package/dist-cjs/index.js +249 -309
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MarketplaceDeploymentClient.js +2 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutDeploymentParameterCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -11
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +222 -0
- package/dist-types/MarketplaceDeploymentClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +26 -0
- package/dist-types/ts3.4/MarketplaceDeploymentClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +31 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -250
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const core_1 = require("@aws-sdk/core");
|
|
5
|
+
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
5
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
7
8
|
const util_base64_1 = require("@smithy/util-base64");
|
|
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
|
|
|
25
26
|
},
|
|
26
27
|
],
|
|
27
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
+
protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.marketplacedeployment" }),
|
|
28
30
|
serviceId: config?.serviceId ?? "Marketplace Deployment",
|
|
29
31
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
30
32
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
|
|
|
4
4
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
5
5
|
import { resolveRegionConfig } from "@smithy/config-resolver";
|
|
6
6
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
7
|
+
import { getSchemaSerdePlugin } from "@smithy/core/schema";
|
|
7
8
|
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
|
|
8
9
|
import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
|
|
9
10
|
import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
|
|
@@ -28,6 +29,7 @@ export class MarketplaceDeploymentClient extends __Client {
|
|
|
28
29
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
29
30
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
30
31
|
this.config = _config_8;
|
|
32
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
31
33
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
32
34
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
33
35
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSMPDeploymentParametersService", "ListTagsForResource", {})
|
|
17
13
|
.n("MarketplaceDeploymentClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
6
|
-
import { de_PutDeploymentParameterCommand, se_PutDeploymentParameterCommand } from "../protocols/Aws_restJson1";
|
|
4
|
+
import { PutDeploymentParameter } from "../schemas/schemas_0";
|
|
7
5
|
export { $Command };
|
|
8
6
|
export class PutDeploymentParameterCommand extends $Command
|
|
9
7
|
.classBuilder()
|
|
10
8
|
.ep(commonParams)
|
|
11
9
|
.m(function (Command, cs, config, o) {
|
|
12
|
-
return [
|
|
13
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
16
11
|
})
|
|
17
12
|
.s("AWSMPDeploymentParametersService", "PutDeploymentParameter", {})
|
|
18
13
|
.n("MarketplaceDeploymentClient", "PutDeploymentParameterCommand")
|
|
19
|
-
.
|
|
20
|
-
.ser(se_PutDeploymentParameterCommand)
|
|
21
|
-
.de(de_PutDeploymentParameterCommand)
|
|
14
|
+
.sc(PutDeploymentParameter)
|
|
22
15
|
.build() {
|
|
23
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSMPDeploymentParametersService", "TagResource", {})
|
|
17
13
|
.n("MarketplaceDeploymentClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("AWSMPDeploymentParametersService", "UntagResource", {})
|
|
17
13
|
.n("MarketplaceDeploymentClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
3
2
|
export class AccessDeniedException extends __BaseException {
|
|
4
3
|
name = "AccessDeniedException";
|
|
@@ -92,13 +91,3 @@ export class ValidationException extends __BaseException {
|
|
|
92
91
|
this.fieldName = opts.fieldName;
|
|
93
92
|
}
|
|
94
93
|
}
|
|
95
|
-
export const DeploymentParameterInputFilterSensitiveLog = (obj) => ({
|
|
96
|
-
...obj,
|
|
97
|
-
...(obj.secretString && { secretString: SENSITIVE_STRING }),
|
|
98
|
-
});
|
|
99
|
-
export const PutDeploymentParameterRequestFilterSensitiveLog = (obj) => ({
|
|
100
|
-
...obj,
|
|
101
|
-
...(obj.deploymentParameter && {
|
|
102
|
-
deploymentParameter: DeploymentParameterInputFilterSensitiveLog(obj.deploymentParameter),
|
|
103
|
-
}),
|
|
104
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.marketplacedeployment" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "Marketplace Deployment",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
const _ADE = "AccessDeniedException";
|
|
2
|
+
const _CE = "ConflictException";
|
|
3
|
+
const _DPI = "DeploymentParameterInput";
|
|
4
|
+
const _ISE = "InternalServerException";
|
|
5
|
+
const _LTFR = "ListTagsForResource";
|
|
6
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
7
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
8
|
+
const _PDP = "PutDeploymentParameter";
|
|
9
|
+
const _PDPR = "PutDeploymentParameterRequest";
|
|
10
|
+
const _PDPRu = "PutDeploymentParameterResponse";
|
|
11
|
+
const _RNFE = "ResourceNotFoundException";
|
|
12
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
13
|
+
const _SS = "SecretString";
|
|
14
|
+
const _TE = "ThrottlingException";
|
|
15
|
+
const _TR = "TagResource";
|
|
16
|
+
const _TRR = "TagResourceRequest";
|
|
17
|
+
const _TRRa = "TagResourceResponse";
|
|
18
|
+
const _UR = "UntagResource";
|
|
19
|
+
const _URR = "UntagResourceRequest";
|
|
20
|
+
const _URRn = "UntagResourceResponse";
|
|
21
|
+
const _VE = "ValidationException";
|
|
22
|
+
const _aI = "agreementId";
|
|
23
|
+
const _c = "client";
|
|
24
|
+
const _cT = "clientToken";
|
|
25
|
+
const _ca = "catalog";
|
|
26
|
+
const _dP = "deploymentParameter";
|
|
27
|
+
const _dPI = "deploymentParameterId";
|
|
28
|
+
const _e = "error";
|
|
29
|
+
const _eD = "expirationDate";
|
|
30
|
+
const _fN = "fieldName";
|
|
31
|
+
const _h = "http";
|
|
32
|
+
const _hE = "httpError";
|
|
33
|
+
const _hQ = "httpQuery";
|
|
34
|
+
const _m = "message";
|
|
35
|
+
const _n = "name";
|
|
36
|
+
const _pI = "productId";
|
|
37
|
+
const _rA = "resourceArn";
|
|
38
|
+
const _rI = "resourceId";
|
|
39
|
+
const _s = "server";
|
|
40
|
+
const _sS = "secretString";
|
|
41
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.marketplacedeployment";
|
|
42
|
+
const _t = "tags";
|
|
43
|
+
const _tK = "tagKeys";
|
|
44
|
+
const n0 = "com.amazonaws.marketplacedeployment";
|
|
45
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
46
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
|
|
47
|
+
import { MarketplaceDeploymentServiceException as __MarketplaceDeploymentServiceException } from "../models/MarketplaceDeploymentServiceException";
|
|
48
|
+
export var SecretString = [0, n0, _SS, 8, 0];
|
|
49
|
+
export var AccessDeniedException = [
|
|
50
|
+
-3,
|
|
51
|
+
n0,
|
|
52
|
+
_ADE,
|
|
53
|
+
{
|
|
54
|
+
[_e]: _c,
|
|
55
|
+
[_hE]: 403,
|
|
56
|
+
},
|
|
57
|
+
[_m],
|
|
58
|
+
[0],
|
|
59
|
+
];
|
|
60
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
|
|
61
|
+
export var ConflictException = [
|
|
62
|
+
-3,
|
|
63
|
+
n0,
|
|
64
|
+
_CE,
|
|
65
|
+
{
|
|
66
|
+
[_e]: _c,
|
|
67
|
+
[_hE]: 409,
|
|
68
|
+
},
|
|
69
|
+
[_m, _rI],
|
|
70
|
+
[0, 0],
|
|
71
|
+
];
|
|
72
|
+
TypeRegistry.for(n0).registerError(ConflictException, __ConflictException);
|
|
73
|
+
export var DeploymentParameterInput = [3, n0, _DPI, 0, [_n, _sS], [0, [() => SecretString, 0]]];
|
|
74
|
+
export var InternalServerException = [
|
|
75
|
+
-3,
|
|
76
|
+
n0,
|
|
77
|
+
_ISE,
|
|
78
|
+
{
|
|
79
|
+
[_e]: _s,
|
|
80
|
+
[_hE]: 500,
|
|
81
|
+
},
|
|
82
|
+
[_m],
|
|
83
|
+
[0],
|
|
84
|
+
];
|
|
85
|
+
TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
|
|
86
|
+
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
87
|
+
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
88
|
+
export var PutDeploymentParameterRequest = [
|
|
89
|
+
3,
|
|
90
|
+
n0,
|
|
91
|
+
_PDPR,
|
|
92
|
+
0,
|
|
93
|
+
[_ca, _pI, _aI, _dP, _t, _eD, _cT],
|
|
94
|
+
[[0, 1], [0, 1], 0, [() => DeploymentParameterInput, 0], 128 | 0, 5, [0, 4]],
|
|
95
|
+
];
|
|
96
|
+
export var PutDeploymentParameterResponse = [
|
|
97
|
+
3,
|
|
98
|
+
n0,
|
|
99
|
+
_PDPRu,
|
|
100
|
+
0,
|
|
101
|
+
[_rA, _aI, _dPI, _t],
|
|
102
|
+
[0, 0, 0, 128 | 0],
|
|
103
|
+
];
|
|
104
|
+
export var ResourceNotFoundException = [
|
|
105
|
+
-3,
|
|
106
|
+
n0,
|
|
107
|
+
_RNFE,
|
|
108
|
+
{
|
|
109
|
+
[_e]: _c,
|
|
110
|
+
[_hE]: 404,
|
|
111
|
+
},
|
|
112
|
+
[_m],
|
|
113
|
+
[0],
|
|
114
|
+
];
|
|
115
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
|
|
116
|
+
export var ServiceQuotaExceededException = [
|
|
117
|
+
-3,
|
|
118
|
+
n0,
|
|
119
|
+
_SQEE,
|
|
120
|
+
{
|
|
121
|
+
[_e]: _c,
|
|
122
|
+
[_hE]: 402,
|
|
123
|
+
},
|
|
124
|
+
[_m],
|
|
125
|
+
[0],
|
|
126
|
+
];
|
|
127
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
|
|
128
|
+
export var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
129
|
+
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
130
|
+
export var ThrottlingException = [
|
|
131
|
+
-3,
|
|
132
|
+
n0,
|
|
133
|
+
_TE,
|
|
134
|
+
{
|
|
135
|
+
[_e]: _c,
|
|
136
|
+
[_hE]: 429,
|
|
137
|
+
},
|
|
138
|
+
[_m],
|
|
139
|
+
[0],
|
|
140
|
+
];
|
|
141
|
+
TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
|
|
142
|
+
export var UntagResourceRequest = [
|
|
143
|
+
3,
|
|
144
|
+
n0,
|
|
145
|
+
_URR,
|
|
146
|
+
0,
|
|
147
|
+
[_rA, _tK],
|
|
148
|
+
[
|
|
149
|
+
[0, 1],
|
|
150
|
+
[
|
|
151
|
+
64 | 0,
|
|
152
|
+
{
|
|
153
|
+
[_hQ]: _tK,
|
|
154
|
+
},
|
|
155
|
+
],
|
|
156
|
+
],
|
|
157
|
+
];
|
|
158
|
+
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
159
|
+
export var ValidationException = [
|
|
160
|
+
-3,
|
|
161
|
+
n0,
|
|
162
|
+
_VE,
|
|
163
|
+
{
|
|
164
|
+
[_e]: _c,
|
|
165
|
+
[_hE]: 400,
|
|
166
|
+
},
|
|
167
|
+
[_m, _fN],
|
|
168
|
+
[0, 0],
|
|
169
|
+
];
|
|
170
|
+
TypeRegistry.for(n0).registerError(ValidationException, __ValidationException);
|
|
171
|
+
export var MarketplaceDeploymentServiceException = [
|
|
172
|
+
-3,
|
|
173
|
+
_sm,
|
|
174
|
+
"MarketplaceDeploymentServiceException",
|
|
175
|
+
0,
|
|
176
|
+
[],
|
|
177
|
+
[],
|
|
178
|
+
];
|
|
179
|
+
TypeRegistry.for(_sm).registerError(MarketplaceDeploymentServiceException, __MarketplaceDeploymentServiceException);
|
|
180
|
+
export var StringList = 64 | 0;
|
|
181
|
+
export var Tags = 128 | 0;
|
|
182
|
+
export var TagsMap = 128 | 0;
|
|
183
|
+
export var ListTagsForResource = [
|
|
184
|
+
9,
|
|
185
|
+
n0,
|
|
186
|
+
_LTFR,
|
|
187
|
+
{
|
|
188
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
189
|
+
},
|
|
190
|
+
() => ListTagsForResourceRequest,
|
|
191
|
+
() => ListTagsForResourceResponse,
|
|
192
|
+
];
|
|
193
|
+
export var PutDeploymentParameter = [
|
|
194
|
+
9,
|
|
195
|
+
n0,
|
|
196
|
+
_PDP,
|
|
197
|
+
{
|
|
198
|
+
[_h]: ["POST", "/catalogs/{catalog}/products/{productId}/deployment-parameters", 200],
|
|
199
|
+
},
|
|
200
|
+
() => PutDeploymentParameterRequest,
|
|
201
|
+
() => PutDeploymentParameterResponse,
|
|
202
|
+
];
|
|
203
|
+
export var TagResource = [
|
|
204
|
+
9,
|
|
205
|
+
n0,
|
|
206
|
+
_TR,
|
|
207
|
+
{
|
|
208
|
+
[_h]: ["POST", "/tags/{resourceArn}", 204],
|
|
209
|
+
},
|
|
210
|
+
() => TagResourceRequest,
|
|
211
|
+
() => TagResourceResponse,
|
|
212
|
+
];
|
|
213
|
+
export var UntagResource = [
|
|
214
|
+
9,
|
|
215
|
+
n0,
|
|
216
|
+
_UR,
|
|
217
|
+
{
|
|
218
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 204],
|
|
219
|
+
},
|
|
220
|
+
() => UntagResourceRequest,
|
|
221
|
+
() => UntagResourceResponse,
|
|
222
|
+
];
|
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
11
11
|
import { PutDeploymentParameterCommandInput, PutDeploymentParameterCommandOutput } from "./commands/PutDeploymentParameterCommand";
|
|
@@ -145,6 +145,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
145
145
|
* Optional extensions
|
|
146
146
|
*/
|
|
147
147
|
extensions?: RuntimeExtension[];
|
|
148
|
+
/**
|
|
149
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
150
|
+
* may be overridden. A default will always be set by the client.
|
|
151
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
152
|
+
* the client.
|
|
153
|
+
* @alpha
|
|
154
|
+
*
|
|
155
|
+
*/
|
|
156
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
148
157
|
/**
|
|
149
158
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
150
159
|
*/
|
|
@@ -249,11 +249,3 @@ export interface UntagResourceRequest {
|
|
|
249
249
|
*/
|
|
250
250
|
export interface UntagResourceResponse {
|
|
251
251
|
}
|
|
252
|
-
/**
|
|
253
|
-
* @internal
|
|
254
|
-
*/
|
|
255
|
-
export declare const DeploymentParameterInputFilterSensitiveLog: (obj: DeploymentParameterInput) => any;
|
|
256
|
-
/**
|
|
257
|
-
* @internal
|
|
258
|
-
*/
|
|
259
|
-
export declare const PutDeploymentParameterRequestFilterSensitiveLog: (obj: PutDeploymentParameterRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfi
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfi
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
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;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfi
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MarketplaceDeploymentClientConfi
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDeploymentHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var SecretString: StaticSimpleSchema;
|
|
3
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
4
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
5
|
+
export declare var DeploymentParameterInput: StaticStructureSchema;
|
|
6
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
7
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
8
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
9
|
+
export declare var PutDeploymentParameterRequest: StaticStructureSchema;
|
|
10
|
+
export declare var PutDeploymentParameterResponse: StaticStructureSchema;
|
|
11
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
13
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
14
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
15
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
16
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
17
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
18
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
19
|
+
export declare var MarketplaceDeploymentServiceException: StaticErrorSchema;
|
|
20
|
+
export declare var StringList: number;
|
|
21
|
+
export declare var Tags: number;
|
|
22
|
+
export declare var TagsMap: number;
|
|
23
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
24
|
+
export declare var PutDeploymentParameter: StaticOperationSchema;
|
|
25
|
+
export declare var TagResource: StaticOperationSchema;
|
|
26
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -102,6 +105,7 @@ export interface ClientDefaults
|
|
|
102
105
|
retryMode?: string | __Provider<string>;
|
|
103
106
|
logger?: __Logger;
|
|
104
107
|
extensions?: RuntimeExtension[];
|
|
108
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
105
109
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
106
110
|
}
|
|
107
111
|
export type MarketplaceDeploymentClientConfigType = Partial<
|
|
@@ -88,9 +88,3 @@ export interface UntagResourceRequest {
|
|
|
88
88
|
tagKeys: string[] | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface UntagResourceResponse {}
|
|
91
|
-
export declare const DeploymentParameterInputFilterSensitiveLog: (
|
|
92
|
-
obj: DeploymentParameterInput
|
|
93
|
-
) => any;
|
|
94
|
-
export declare const PutDeploymentParameterRequestFilterSensitiveLog: (
|
|
95
|
-
obj: PutDeploymentParameterRequest
|
|
96
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDeploymentHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticOperationSchema,
|
|
4
|
+
StaticSimpleSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var SecretString: StaticSimpleSchema;
|
|
8
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
10
|
+
export declare var DeploymentParameterInput: StaticStructureSchema;
|
|
11
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
12
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
13
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
14
|
+
export declare var PutDeploymentParameterRequest: StaticStructureSchema;
|
|
15
|
+
export declare var PutDeploymentParameterResponse: StaticStructureSchema;
|
|
16
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
17
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
18
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
19
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
20
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
21
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
22
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
23
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
24
|
+
export declare var MarketplaceDeploymentServiceException: StaticErrorSchema;
|
|
25
|
+
export declare var StringList: number;
|
|
26
|
+
export declare var Tags: number;
|
|
27
|
+
export declare var TagsMap: number;
|
|
28
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
29
|
+
export declare var PutDeploymentParameter: StaticOperationSchema;
|
|
30
|
+
export declare var TagResource: StaticOperationSchema;
|
|
31
|
+
export declare var UntagResource: StaticOperationSchema;
|