@aws-sdk/client-marketplace-deployment 3.933.0 → 3.935.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-es/index.js +1 -1
- package/dist-es/models/errors.js +93 -0
- package/dist-es/models/models_0.js +1 -93
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/errors.d.ts +100 -0
- package/dist-types/models/models_0.d.ts +0 -100
- package/dist-types/ts3.4/index.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +55 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -55
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from "./MarketplaceDeploymentClient";
|
|
2
2
|
export * from "./MarketplaceDeployment";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
4
|
+
export * from "./models/errors";
|
|
5
5
|
export { MarketplaceDeploymentServiceException } from "./models/MarketplaceDeploymentServiceException";
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class ConflictException extends __BaseException {
|
|
15
|
+
name = "ConflictException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
resourceId;
|
|
18
|
+
constructor(opts) {
|
|
19
|
+
super({
|
|
20
|
+
name: "ConflictException",
|
|
21
|
+
$fault: "client",
|
|
22
|
+
...opts,
|
|
23
|
+
});
|
|
24
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
|
+
this.resourceId = opts.resourceId;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
export class InternalServerException extends __BaseException {
|
|
29
|
+
name = "InternalServerException";
|
|
30
|
+
$fault = "server";
|
|
31
|
+
$retryable = {};
|
|
32
|
+
constructor(opts) {
|
|
33
|
+
super({
|
|
34
|
+
name: "InternalServerException",
|
|
35
|
+
$fault: "server",
|
|
36
|
+
...opts,
|
|
37
|
+
});
|
|
38
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
42
|
+
name = "ResourceNotFoundException";
|
|
43
|
+
$fault = "client";
|
|
44
|
+
constructor(opts) {
|
|
45
|
+
super({
|
|
46
|
+
name: "ResourceNotFoundException",
|
|
47
|
+
$fault: "client",
|
|
48
|
+
...opts,
|
|
49
|
+
});
|
|
50
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
54
|
+
name = "ServiceQuotaExceededException";
|
|
55
|
+
$fault = "client";
|
|
56
|
+
constructor(opts) {
|
|
57
|
+
super({
|
|
58
|
+
name: "ServiceQuotaExceededException",
|
|
59
|
+
$fault: "client",
|
|
60
|
+
...opts,
|
|
61
|
+
});
|
|
62
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
export class ThrottlingException extends __BaseException {
|
|
66
|
+
name = "ThrottlingException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
$retryable = {
|
|
69
|
+
throttling: true,
|
|
70
|
+
};
|
|
71
|
+
constructor(opts) {
|
|
72
|
+
super({
|
|
73
|
+
name: "ThrottlingException",
|
|
74
|
+
$fault: "client",
|
|
75
|
+
...opts,
|
|
76
|
+
});
|
|
77
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
export class ValidationException extends __BaseException {
|
|
81
|
+
name = "ValidationException";
|
|
82
|
+
$fault = "client";
|
|
83
|
+
fieldName;
|
|
84
|
+
constructor(opts) {
|
|
85
|
+
super({
|
|
86
|
+
name: "ValidationException",
|
|
87
|
+
$fault: "client",
|
|
88
|
+
...opts,
|
|
89
|
+
});
|
|
90
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
91
|
+
this.fieldName = opts.fieldName;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -1,93 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ConflictException extends __BaseException {
|
|
15
|
-
name = "ConflictException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
resourceId;
|
|
18
|
-
constructor(opts) {
|
|
19
|
-
super({
|
|
20
|
-
name: "ConflictException",
|
|
21
|
-
$fault: "client",
|
|
22
|
-
...opts,
|
|
23
|
-
});
|
|
24
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
|
-
this.resourceId = opts.resourceId;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
export class InternalServerException extends __BaseException {
|
|
29
|
-
name = "InternalServerException";
|
|
30
|
-
$fault = "server";
|
|
31
|
-
$retryable = {};
|
|
32
|
-
constructor(opts) {
|
|
33
|
-
super({
|
|
34
|
-
name: "InternalServerException",
|
|
35
|
-
$fault: "server",
|
|
36
|
-
...opts,
|
|
37
|
-
});
|
|
38
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
42
|
-
name = "ResourceNotFoundException";
|
|
43
|
-
$fault = "client";
|
|
44
|
-
constructor(opts) {
|
|
45
|
-
super({
|
|
46
|
-
name: "ResourceNotFoundException",
|
|
47
|
-
$fault: "client",
|
|
48
|
-
...opts,
|
|
49
|
-
});
|
|
50
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
54
|
-
name = "ServiceQuotaExceededException";
|
|
55
|
-
$fault = "client";
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "ServiceQuotaExceededException",
|
|
59
|
-
$fault: "client",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
export class ThrottlingException extends __BaseException {
|
|
66
|
-
name = "ThrottlingException";
|
|
67
|
-
$fault = "client";
|
|
68
|
-
$retryable = {
|
|
69
|
-
throttling: true,
|
|
70
|
-
};
|
|
71
|
-
constructor(opts) {
|
|
72
|
-
super({
|
|
73
|
-
name: "ThrottlingException",
|
|
74
|
-
$fault: "client",
|
|
75
|
-
...opts,
|
|
76
|
-
});
|
|
77
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
export class ValidationException extends __BaseException {
|
|
81
|
-
name = "ValidationException";
|
|
82
|
-
$fault = "client";
|
|
83
|
-
fieldName;
|
|
84
|
-
constructor(opts) {
|
|
85
|
-
super({
|
|
86
|
-
name: "ValidationException",
|
|
87
|
-
$fault: "client",
|
|
88
|
-
...opts,
|
|
89
|
-
});
|
|
90
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
91
|
-
this.fieldName = opts.fieldName;
|
|
92
|
-
}
|
|
93
|
-
}
|
|
1
|
+
export {};
|
|
@@ -43,7 +43,7 @@ const _t = "tags";
|
|
|
43
43
|
const _tK = "tagKeys";
|
|
44
44
|
const n0 = "com.amazonaws.marketplacedeployment";
|
|
45
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/
|
|
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/errors";
|
|
47
47
|
import { MarketplaceDeploymentServiceException as __MarketplaceDeploymentServiceException } from "../models/MarketplaceDeploymentServiceException";
|
|
48
48
|
export var SecretString = [0, n0, _SS, 8, 0];
|
|
49
49
|
export var AccessDeniedException = [
|
package/dist-types/index.d.ts
CHANGED
|
@@ -12,5 +12,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
12
12
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
13
13
|
export type { MarketplaceDeploymentExtensionConfiguration } from "./extensionConfiguration";
|
|
14
14
|
export * from "./commands";
|
|
15
|
-
export * from "./models";
|
|
15
|
+
export * from "./models/errors";
|
|
16
|
+
export type * from "./models/models_0";
|
|
16
17
|
export { MarketplaceDeploymentServiceException } from "./models/MarketplaceDeploymentServiceException";
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
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
|
+
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* <p>The unique identifier for the resource associated with the error.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
resourceId: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* @internal
|
|
29
|
+
*/
|
|
30
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* <p>There was an internal service exception.</p>
|
|
34
|
+
* @public
|
|
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
|
+
* <p>The specified resource wasn't found.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
50
|
+
readonly name: "ResourceNotFoundException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>The maximum number of requests per account has been exceeded.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
62
|
+
readonly name: "ServiceQuotaExceededException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* <p>Too many requests.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare class ThrottlingException extends __BaseException {
|
|
74
|
+
readonly name: "ThrottlingException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
$retryable: {
|
|
77
|
+
throttling: boolean;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* <p>An error occurred during validation.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
export declare class ValidationException extends __BaseException {
|
|
89
|
+
readonly name: "ValidationException";
|
|
90
|
+
readonly $fault: "client";
|
|
91
|
+
/**
|
|
92
|
+
* <p>The field name associated with the error.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
fieldName: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
100
|
+
}
|
|
@@ -1,47 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
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
|
-
* <p>The request configuration has conflicts. For details, see the accompanying error message.</p>
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export declare class ConflictException extends __BaseException {
|
|
20
|
-
readonly name: "ConflictException";
|
|
21
|
-
readonly $fault: "client";
|
|
22
|
-
/**
|
|
23
|
-
* <p>The unique identifier for the resource associated with the error.</p>
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
resourceId: string | undefined;
|
|
27
|
-
/**
|
|
28
|
-
* @internal
|
|
29
|
-
*/
|
|
30
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* <p>There was an internal service exception.</p>
|
|
34
|
-
* @public
|
|
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
1
|
/**
|
|
46
2
|
* <p>The shape containing the requested deployment parameter name and secretString.</p>
|
|
47
3
|
* <note>
|
|
@@ -133,62 +89,6 @@ export interface PutDeploymentParameterResponse {
|
|
|
133
89
|
*/
|
|
134
90
|
tags?: Record<string, string> | undefined;
|
|
135
91
|
}
|
|
136
|
-
/**
|
|
137
|
-
* <p>The specified resource wasn't found.</p>
|
|
138
|
-
* @public
|
|
139
|
-
*/
|
|
140
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
141
|
-
readonly name: "ResourceNotFoundException";
|
|
142
|
-
readonly $fault: "client";
|
|
143
|
-
/**
|
|
144
|
-
* @internal
|
|
145
|
-
*/
|
|
146
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* <p>The maximum number of requests per account has been exceeded.</p>
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
153
|
-
readonly name: "ServiceQuotaExceededException";
|
|
154
|
-
readonly $fault: "client";
|
|
155
|
-
/**
|
|
156
|
-
* @internal
|
|
157
|
-
*/
|
|
158
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
159
|
-
}
|
|
160
|
-
/**
|
|
161
|
-
* <p>Too many requests.</p>
|
|
162
|
-
* @public
|
|
163
|
-
*/
|
|
164
|
-
export declare class ThrottlingException extends __BaseException {
|
|
165
|
-
readonly name: "ThrottlingException";
|
|
166
|
-
readonly $fault: "client";
|
|
167
|
-
$retryable: {
|
|
168
|
-
throttling: boolean;
|
|
169
|
-
};
|
|
170
|
-
/**
|
|
171
|
-
* @internal
|
|
172
|
-
*/
|
|
173
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
174
|
-
}
|
|
175
|
-
/**
|
|
176
|
-
* <p>An error occurred during validation.</p>
|
|
177
|
-
* @public
|
|
178
|
-
*/
|
|
179
|
-
export declare class ValidationException extends __BaseException {
|
|
180
|
-
readonly name: "ValidationException";
|
|
181
|
-
readonly $fault: "client";
|
|
182
|
-
/**
|
|
183
|
-
* <p>The field name associated with the error.</p>
|
|
184
|
-
* @public
|
|
185
|
-
*/
|
|
186
|
-
fieldName: string | undefined;
|
|
187
|
-
/**
|
|
188
|
-
* @internal
|
|
189
|
-
*/
|
|
190
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
191
|
-
}
|
|
192
92
|
/**
|
|
193
93
|
* @public
|
|
194
94
|
*/
|
|
@@ -4,5 +4,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { MarketplaceDeploymentExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
-
export * from "./models";
|
|
7
|
+
export * from "./models/errors";
|
|
8
|
+
export * from "./models/models_0";
|
|
8
9
|
export { MarketplaceDeploymentServiceException } from "./models/MarketplaceDeploymentServiceException";
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
resourceId: string | undefined;
|
|
14
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
export declare class InternalServerException extends __BaseException {
|
|
17
|
+
readonly name: "InternalServerException";
|
|
18
|
+
readonly $fault: "server";
|
|
19
|
+
$retryable: {};
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
25
|
+
readonly name: "ResourceNotFoundException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
32
|
+
readonly name: "ServiceQuotaExceededException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ThrottlingException extends __BaseException {
|
|
39
|
+
readonly name: "ThrottlingException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
$retryable: {
|
|
42
|
+
throttling: boolean;
|
|
43
|
+
};
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class ValidationException extends __BaseException {
|
|
49
|
+
readonly name: "ValidationException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
fieldName: string | undefined;
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
@@ -1,26 +1,3 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
10
|
-
export declare class ConflictException extends __BaseException {
|
|
11
|
-
readonly name: "ConflictException";
|
|
12
|
-
readonly $fault: "client";
|
|
13
|
-
resourceId: string | undefined;
|
|
14
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
15
|
-
}
|
|
16
|
-
export declare class InternalServerException extends __BaseException {
|
|
17
|
-
readonly name: "InternalServerException";
|
|
18
|
-
readonly $fault: "server";
|
|
19
|
-
$retryable: {};
|
|
20
|
-
constructor(
|
|
21
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
22
|
-
);
|
|
23
|
-
}
|
|
24
1
|
export interface DeploymentParameterInput {
|
|
25
2
|
name: string | undefined;
|
|
26
3
|
secretString: string | undefined;
|
|
@@ -40,38 +17,6 @@ export interface PutDeploymentParameterResponse {
|
|
|
40
17
|
deploymentParameterId: string | undefined;
|
|
41
18
|
tags?: Record<string, string> | undefined;
|
|
42
19
|
}
|
|
43
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
-
readonly name: "ResourceNotFoundException";
|
|
45
|
-
readonly $fault: "client";
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
48
|
-
);
|
|
49
|
-
}
|
|
50
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
-
readonly name: "ServiceQuotaExceededException";
|
|
52
|
-
readonly $fault: "client";
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
|
-
export declare class ThrottlingException extends __BaseException {
|
|
58
|
-
readonly name: "ThrottlingException";
|
|
59
|
-
readonly $fault: "client";
|
|
60
|
-
$retryable: {
|
|
61
|
-
throttling: boolean;
|
|
62
|
-
};
|
|
63
|
-
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
65
|
-
);
|
|
66
|
-
}
|
|
67
|
-
export declare class ValidationException extends __BaseException {
|
|
68
|
-
readonly name: "ValidationException";
|
|
69
|
-
readonly $fault: "client";
|
|
70
|
-
fieldName: string | undefined;
|
|
71
|
-
constructor(
|
|
72
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
73
|
-
);
|
|
74
|
-
}
|
|
75
20
|
export interface ListTagsForResourceRequest {
|
|
76
21
|
resourceArn: string | undefined;
|
|
77
22
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-deployment",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Deployment Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-marketplace-deployment",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|