@aws-sdk/client-ssm-quicksetup 3.934.0 → 3.936.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 +17 -16
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +16 -0
- package/dist-es/models/errors.js +87 -0
- package/dist-es/models/models_0.js +1 -103
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +32 -0
- package/dist-types/models/errors.d.ts +83 -0
- package/dist-types/models/models_0.d.ts +1 -115
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -68
- package/package.json +19 -19
- 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-cjs/index.js
CHANGED
|
@@ -131,22 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends SSMQuickSetupS
|
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
const Status = {
|
|
135
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
136
|
-
DELETING: "DELETING",
|
|
137
|
-
DEPLOYING: "DEPLOYING",
|
|
138
|
-
FAILED: "FAILED",
|
|
139
|
-
INITIALIZING: "INITIALIZING",
|
|
140
|
-
NONE: "NONE",
|
|
141
|
-
STOPPED: "STOPPED",
|
|
142
|
-
STOPPING: "STOPPING",
|
|
143
|
-
STOP_FAILED: "STOP_FAILED",
|
|
144
|
-
SUCCEEDED: "SUCCEEDED",
|
|
145
|
-
};
|
|
146
|
-
const StatusType = {
|
|
147
|
-
ASYNC_EXECUTIONS: "AsyncExecutions",
|
|
148
|
-
DEPLOYMENT: "Deployment",
|
|
149
|
-
};
|
|
150
134
|
let ConflictException$1 = class ConflictException extends SSMQuickSetupServiceException$1 {
|
|
151
135
|
name = "ConflictException";
|
|
152
136
|
$fault = "client";
|
|
@@ -896,6 +880,23 @@ const paginateListConfigurationManagers = core.createPaginator(SSMQuickSetupClie
|
|
|
896
880
|
|
|
897
881
|
const paginateListConfigurations = core.createPaginator(SSMQuickSetupClient, ListConfigurationsCommand, "StartingToken", "NextToken", "MaxItems");
|
|
898
882
|
|
|
883
|
+
const Status = {
|
|
884
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
885
|
+
DELETING: "DELETING",
|
|
886
|
+
DEPLOYING: "DEPLOYING",
|
|
887
|
+
FAILED: "FAILED",
|
|
888
|
+
INITIALIZING: "INITIALIZING",
|
|
889
|
+
NONE: "NONE",
|
|
890
|
+
STOPPED: "STOPPED",
|
|
891
|
+
STOPPING: "STOPPING",
|
|
892
|
+
STOP_FAILED: "STOP_FAILED",
|
|
893
|
+
SUCCEEDED: "SUCCEEDED",
|
|
894
|
+
};
|
|
895
|
+
const StatusType = {
|
|
896
|
+
ASYNC_EXECUTIONS: "AsyncExecutions",
|
|
897
|
+
DEPLOYMENT: "Deployment",
|
|
898
|
+
};
|
|
899
|
+
|
|
899
900
|
Object.defineProperty(exports, "$Command", {
|
|
900
901
|
enumerable: true,
|
|
901
902
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./SSMQuickSetupClient";
|
|
|
2
2
|
export * from "./SSMQuickSetup";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { SSMQuickSetupServiceException } from "./models/SSMQuickSetupServiceException";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export const Status = {
|
|
2
|
+
DELETE_FAILED: "DELETE_FAILED",
|
|
3
|
+
DELETING: "DELETING",
|
|
4
|
+
DEPLOYING: "DEPLOYING",
|
|
5
|
+
FAILED: "FAILED",
|
|
6
|
+
INITIALIZING: "INITIALIZING",
|
|
7
|
+
NONE: "NONE",
|
|
8
|
+
STOPPED: "STOPPED",
|
|
9
|
+
STOPPING: "STOPPING",
|
|
10
|
+
STOP_FAILED: "STOP_FAILED",
|
|
11
|
+
SUCCEEDED: "SUCCEEDED",
|
|
12
|
+
};
|
|
13
|
+
export const StatusType = {
|
|
14
|
+
ASYNC_EXECUTIONS: "AsyncExecutions",
|
|
15
|
+
DEPLOYMENT: "Deployment",
|
|
16
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
Message;
|
|
6
|
+
constructor(opts) {
|
|
7
|
+
super({
|
|
8
|
+
name: "AccessDeniedException",
|
|
9
|
+
$fault: "client",
|
|
10
|
+
...opts,
|
|
11
|
+
});
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export class ConflictException extends __BaseException {
|
|
17
|
+
name = "ConflictException";
|
|
18
|
+
$fault = "client";
|
|
19
|
+
Message;
|
|
20
|
+
constructor(opts) {
|
|
21
|
+
super({
|
|
22
|
+
name: "ConflictException",
|
|
23
|
+
$fault: "client",
|
|
24
|
+
...opts,
|
|
25
|
+
});
|
|
26
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
27
|
+
this.Message = opts.Message;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export class InternalServerException extends __BaseException {
|
|
31
|
+
name = "InternalServerException";
|
|
32
|
+
$fault = "server";
|
|
33
|
+
$retryable = {};
|
|
34
|
+
Message;
|
|
35
|
+
constructor(opts) {
|
|
36
|
+
super({
|
|
37
|
+
name: "InternalServerException",
|
|
38
|
+
$fault: "server",
|
|
39
|
+
...opts,
|
|
40
|
+
});
|
|
41
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
42
|
+
this.Message = opts.Message;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
export class ThrottlingException extends __BaseException {
|
|
46
|
+
name = "ThrottlingException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
$retryable = {};
|
|
49
|
+
Message;
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "ThrottlingException",
|
|
53
|
+
$fault: "client",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
57
|
+
this.Message = opts.Message;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
export class ValidationException extends __BaseException {
|
|
61
|
+
name = "ValidationException";
|
|
62
|
+
$fault = "client";
|
|
63
|
+
Message;
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "ValidationException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
71
|
+
this.Message = opts.Message;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
75
|
+
name = "ResourceNotFoundException";
|
|
76
|
+
$fault = "client";
|
|
77
|
+
Message;
|
|
78
|
+
constructor(opts) {
|
|
79
|
+
super({
|
|
80
|
+
name: "ResourceNotFoundException",
|
|
81
|
+
$fault: "client",
|
|
82
|
+
...opts,
|
|
83
|
+
});
|
|
84
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
85
|
+
this.Message = opts.Message;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -1,103 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
Message;
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
-
this.Message = opts.Message;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
export const Status = {
|
|
17
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
18
|
-
DELETING: "DELETING",
|
|
19
|
-
DEPLOYING: "DEPLOYING",
|
|
20
|
-
FAILED: "FAILED",
|
|
21
|
-
INITIALIZING: "INITIALIZING",
|
|
22
|
-
NONE: "NONE",
|
|
23
|
-
STOPPED: "STOPPED",
|
|
24
|
-
STOPPING: "STOPPING",
|
|
25
|
-
STOP_FAILED: "STOP_FAILED",
|
|
26
|
-
SUCCEEDED: "SUCCEEDED",
|
|
27
|
-
};
|
|
28
|
-
export const StatusType = {
|
|
29
|
-
ASYNC_EXECUTIONS: "AsyncExecutions",
|
|
30
|
-
DEPLOYMENT: "Deployment",
|
|
31
|
-
};
|
|
32
|
-
export class ConflictException extends __BaseException {
|
|
33
|
-
name = "ConflictException";
|
|
34
|
-
$fault = "client";
|
|
35
|
-
Message;
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "ConflictException",
|
|
39
|
-
$fault: "client",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
43
|
-
this.Message = opts.Message;
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
export class InternalServerException extends __BaseException {
|
|
47
|
-
name = "InternalServerException";
|
|
48
|
-
$fault = "server";
|
|
49
|
-
$retryable = {};
|
|
50
|
-
Message;
|
|
51
|
-
constructor(opts) {
|
|
52
|
-
super({
|
|
53
|
-
name: "InternalServerException",
|
|
54
|
-
$fault: "server",
|
|
55
|
-
...opts,
|
|
56
|
-
});
|
|
57
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
58
|
-
this.Message = opts.Message;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
export class ThrottlingException extends __BaseException {
|
|
62
|
-
name = "ThrottlingException";
|
|
63
|
-
$fault = "client";
|
|
64
|
-
$retryable = {};
|
|
65
|
-
Message;
|
|
66
|
-
constructor(opts) {
|
|
67
|
-
super({
|
|
68
|
-
name: "ThrottlingException",
|
|
69
|
-
$fault: "client",
|
|
70
|
-
...opts,
|
|
71
|
-
});
|
|
72
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
73
|
-
this.Message = opts.Message;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
export class ValidationException extends __BaseException {
|
|
77
|
-
name = "ValidationException";
|
|
78
|
-
$fault = "client";
|
|
79
|
-
Message;
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ValidationException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
87
|
-
this.Message = opts.Message;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
91
|
-
name = "ResourceNotFoundException";
|
|
92
|
-
$fault = "client";
|
|
93
|
-
Message;
|
|
94
|
-
constructor(opts) {
|
|
95
|
-
super({
|
|
96
|
-
name: "ResourceNotFoundException",
|
|
97
|
-
$fault: "client",
|
|
98
|
-
...opts,
|
|
99
|
-
});
|
|
100
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
101
|
-
this.Message = opts.Message;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
1
|
+
export {};
|
|
@@ -105,7 +105,7 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.ssmquicksetup";
|
|
|
105
105
|
const _tK = "tagKeys";
|
|
106
106
|
const n0 = "com.amazonaws.ssmquicksetup";
|
|
107
107
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
108
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
108
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
109
109
|
import { SSMQuickSetupServiceException as __SSMQuickSetupServiceException } from "../models/SSMQuickSetupServiceException";
|
|
110
110
|
export var AccessDeniedException = [
|
|
111
111
|
-3,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -12,5 +12,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
12
12
|
export type { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
|
|
13
13
|
export * from "./commands";
|
|
14
14
|
export * from "./pagination";
|
|
15
|
-
export * from "./models";
|
|
15
|
+
export * from "./models/enums";
|
|
16
|
+
export * from "./models/errors";
|
|
17
|
+
export type * from "./models/models_0";
|
|
16
18
|
export { SSMQuickSetupServiceException } from "./models/SSMQuickSetupServiceException";
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const Status: {
|
|
6
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
7
|
+
readonly DELETING: "DELETING";
|
|
8
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
9
|
+
readonly FAILED: "FAILED";
|
|
10
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
11
|
+
readonly NONE: "NONE";
|
|
12
|
+
readonly STOPPED: "STOPPED";
|
|
13
|
+
readonly STOPPING: "STOPPING";
|
|
14
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
15
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
* @enum
|
|
24
|
+
*/
|
|
25
|
+
export declare const StatusType: {
|
|
26
|
+
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
27
|
+
readonly DEPLOYMENT: "Deployment";
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class ConflictException extends __BaseException {
|
|
21
|
+
readonly name: "ConflictException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>An error occurred on the server side.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class InternalServerException extends __BaseException {
|
|
34
|
+
readonly name: "InternalServerException";
|
|
35
|
+
readonly $fault: "server";
|
|
36
|
+
$retryable: {};
|
|
37
|
+
Message?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export declare class ThrottlingException extends __BaseException {
|
|
48
|
+
readonly name: "ThrottlingException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
$retryable: {};
|
|
51
|
+
Message: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
59
|
+
* accurate.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export declare class ValidationException extends __BaseException {
|
|
63
|
+
readonly name: "ValidationException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Message?: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
76
|
+
readonly name: "ResourceNotFoundException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
Message?: string | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
83
|
+
}
|
|
@@ -1,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>The requester has insufficient permissions to perform the operation.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
Message?: string | undefined;
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
1
|
+
import { Status, StatusType } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p>The definition of a Quick Setup configuration.</p>
|
|
18
4
|
* @public
|
|
@@ -1492,38 +1478,6 @@ export interface ConfigurationDefinitionSummary {
|
|
|
1492
1478
|
*/
|
|
1493
1479
|
FirstClassParameters?: Record<string, string> | undefined;
|
|
1494
1480
|
}
|
|
1495
|
-
/**
|
|
1496
|
-
* @public
|
|
1497
|
-
* @enum
|
|
1498
|
-
*/
|
|
1499
|
-
export declare const Status: {
|
|
1500
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1501
|
-
readonly DELETING: "DELETING";
|
|
1502
|
-
readonly DEPLOYING: "DEPLOYING";
|
|
1503
|
-
readonly FAILED: "FAILED";
|
|
1504
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
1505
|
-
readonly NONE: "NONE";
|
|
1506
|
-
readonly STOPPED: "STOPPED";
|
|
1507
|
-
readonly STOPPING: "STOPPING";
|
|
1508
|
-
readonly STOP_FAILED: "STOP_FAILED";
|
|
1509
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1510
|
-
};
|
|
1511
|
-
/**
|
|
1512
|
-
* @public
|
|
1513
|
-
*/
|
|
1514
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
1515
|
-
/**
|
|
1516
|
-
* @public
|
|
1517
|
-
* @enum
|
|
1518
|
-
*/
|
|
1519
|
-
export declare const StatusType: {
|
|
1520
|
-
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
1521
|
-
readonly DEPLOYMENT: "Deployment";
|
|
1522
|
-
};
|
|
1523
|
-
/**
|
|
1524
|
-
* @public
|
|
1525
|
-
*/
|
|
1526
|
-
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
1527
1481
|
/**
|
|
1528
1482
|
* <p>A summarized description of the status.</p>
|
|
1529
1483
|
* @public
|
|
@@ -1649,19 +1603,6 @@ export interface ConfigurationSummary {
|
|
|
1649
1603
|
*/
|
|
1650
1604
|
StatusSummaries?: StatusSummary[] | undefined;
|
|
1651
1605
|
}
|
|
1652
|
-
/**
|
|
1653
|
-
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
1654
|
-
* @public
|
|
1655
|
-
*/
|
|
1656
|
-
export declare class ConflictException extends __BaseException {
|
|
1657
|
-
readonly name: "ConflictException";
|
|
1658
|
-
readonly $fault: "client";
|
|
1659
|
-
Message?: string | undefined;
|
|
1660
|
-
/**
|
|
1661
|
-
* @internal
|
|
1662
|
-
*/
|
|
1663
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
1664
|
-
}
|
|
1665
1606
|
/**
|
|
1666
1607
|
* @public
|
|
1667
1608
|
*/
|
|
@@ -1698,48 +1639,6 @@ export interface CreateConfigurationManagerOutput {
|
|
|
1698
1639
|
*/
|
|
1699
1640
|
ManagerArn: string | undefined;
|
|
1700
1641
|
}
|
|
1701
|
-
/**
|
|
1702
|
-
* <p>An error occurred on the server side.</p>
|
|
1703
|
-
* @public
|
|
1704
|
-
*/
|
|
1705
|
-
export declare class InternalServerException extends __BaseException {
|
|
1706
|
-
readonly name: "InternalServerException";
|
|
1707
|
-
readonly $fault: "server";
|
|
1708
|
-
$retryable: {};
|
|
1709
|
-
Message?: string | undefined;
|
|
1710
|
-
/**
|
|
1711
|
-
* @internal
|
|
1712
|
-
*/
|
|
1713
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
1714
|
-
}
|
|
1715
|
-
/**
|
|
1716
|
-
* <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
|
|
1717
|
-
* @public
|
|
1718
|
-
*/
|
|
1719
|
-
export declare class ThrottlingException extends __BaseException {
|
|
1720
|
-
readonly name: "ThrottlingException";
|
|
1721
|
-
readonly $fault: "client";
|
|
1722
|
-
$retryable: {};
|
|
1723
|
-
Message: string | undefined;
|
|
1724
|
-
/**
|
|
1725
|
-
* @internal
|
|
1726
|
-
*/
|
|
1727
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1728
|
-
}
|
|
1729
|
-
/**
|
|
1730
|
-
* <p>The request is invalid. Verify the values provided for the request parameters are
|
|
1731
|
-
* accurate.</p>
|
|
1732
|
-
* @public
|
|
1733
|
-
*/
|
|
1734
|
-
export declare class ValidationException extends __BaseException {
|
|
1735
|
-
readonly name: "ValidationException";
|
|
1736
|
-
readonly $fault: "client";
|
|
1737
|
-
Message?: string | undefined;
|
|
1738
|
-
/**
|
|
1739
|
-
* @internal
|
|
1740
|
-
*/
|
|
1741
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
1742
|
-
}
|
|
1743
1642
|
/**
|
|
1744
1643
|
* @public
|
|
1745
1644
|
*/
|
|
@@ -1750,19 +1649,6 @@ export interface DeleteConfigurationManagerInput {
|
|
|
1750
1649
|
*/
|
|
1751
1650
|
ManagerArn: string | undefined;
|
|
1752
1651
|
}
|
|
1753
|
-
/**
|
|
1754
|
-
* <p>The resource couldn't be found. Check the ID or name and try again.</p>
|
|
1755
|
-
* @public
|
|
1756
|
-
*/
|
|
1757
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
1758
|
-
readonly name: "ResourceNotFoundException";
|
|
1759
|
-
readonly $fault: "client";
|
|
1760
|
-
Message?: string | undefined;
|
|
1761
|
-
/**
|
|
1762
|
-
* @internal
|
|
1763
|
-
*/
|
|
1764
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1765
|
-
}
|
|
1766
1652
|
/**
|
|
1767
1653
|
* <p>A key-value pair to filter results.</p>
|
|
1768
1654
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { SSMQuickSetupServiceException } from "./models/SSMQuickSetupServiceException";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const Status: {
|
|
2
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
3
|
+
readonly DELETING: "DELETING";
|
|
4
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
5
|
+
readonly FAILED: "FAILED";
|
|
6
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
7
|
+
readonly NONE: "NONE";
|
|
8
|
+
readonly STOPPED: "STOPPED";
|
|
9
|
+
readonly STOPPING: "STOPPING";
|
|
10
|
+
readonly STOP_FAILED: "STOP_FAILED";
|
|
11
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
12
|
+
};
|
|
13
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
14
|
+
export declare const StatusType: {
|
|
15
|
+
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
16
|
+
readonly DEPLOYMENT: "Deployment";
|
|
17
|
+
};
|
|
18
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
$retryable: {};
|
|
21
|
+
Message?: string | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ThrottlingException extends __BaseException {
|
|
27
|
+
readonly name: "ThrottlingException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
$retryable: {};
|
|
30
|
+
Message: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ValidationException extends __BaseException {
|
|
36
|
+
readonly name: "ValidationException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
44
|
+
readonly name: "ResourceNotFoundException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
|
|
3
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
-
readonly name: "AccessDeniedException";
|
|
5
|
-
readonly $fault: "client";
|
|
6
|
-
Message?: string | undefined;
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
10
|
-
}
|
|
1
|
+
import { Status, StatusType } from "./enums";
|
|
11
2
|
export interface ConfigurationDefinition {
|
|
12
3
|
Type: string | undefined;
|
|
13
4
|
Parameters: Record<string, string> | undefined;
|
|
@@ -29,24 +20,6 @@ export interface ConfigurationDefinitionSummary {
|
|
|
29
20
|
TypeVersion?: string | undefined;
|
|
30
21
|
FirstClassParameters?: Record<string, string> | undefined;
|
|
31
22
|
}
|
|
32
|
-
export declare const Status: {
|
|
33
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
34
|
-
readonly DELETING: "DELETING";
|
|
35
|
-
readonly DEPLOYING: "DEPLOYING";
|
|
36
|
-
readonly FAILED: "FAILED";
|
|
37
|
-
readonly INITIALIZING: "INITIALIZING";
|
|
38
|
-
readonly NONE: "NONE";
|
|
39
|
-
readonly STOPPED: "STOPPED";
|
|
40
|
-
readonly STOPPING: "STOPPING";
|
|
41
|
-
readonly STOP_FAILED: "STOP_FAILED";
|
|
42
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
43
|
-
};
|
|
44
|
-
export type Status = (typeof Status)[keyof typeof Status];
|
|
45
|
-
export declare const StatusType: {
|
|
46
|
-
readonly ASYNC_EXECUTIONS: "AsyncExecutions";
|
|
47
|
-
readonly DEPLOYMENT: "Deployment";
|
|
48
|
-
};
|
|
49
|
-
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
50
23
|
export interface StatusSummary {
|
|
51
24
|
StatusType: StatusType | undefined;
|
|
52
25
|
Status?: Status | undefined;
|
|
@@ -75,12 +48,6 @@ export interface ConfigurationSummary {
|
|
|
75
48
|
FirstClassParameters?: Record<string, string> | undefined;
|
|
76
49
|
StatusSummaries?: StatusSummary[] | undefined;
|
|
77
50
|
}
|
|
78
|
-
export declare class ConflictException extends __BaseException {
|
|
79
|
-
readonly name: "ConflictException";
|
|
80
|
-
readonly $fault: "client";
|
|
81
|
-
Message?: string | undefined;
|
|
82
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
83
|
-
}
|
|
84
51
|
export interface CreateConfigurationManagerInput {
|
|
85
52
|
Name?: string | undefined;
|
|
86
53
|
Description?: string | undefined;
|
|
@@ -90,43 +57,9 @@ export interface CreateConfigurationManagerInput {
|
|
|
90
57
|
export interface CreateConfigurationManagerOutput {
|
|
91
58
|
ManagerArn: string | undefined;
|
|
92
59
|
}
|
|
93
|
-
export declare class InternalServerException extends __BaseException {
|
|
94
|
-
readonly name: "InternalServerException";
|
|
95
|
-
readonly $fault: "server";
|
|
96
|
-
$retryable: {};
|
|
97
|
-
Message?: string | undefined;
|
|
98
|
-
constructor(
|
|
99
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
100
|
-
);
|
|
101
|
-
}
|
|
102
|
-
export declare class ThrottlingException extends __BaseException {
|
|
103
|
-
readonly name: "ThrottlingException";
|
|
104
|
-
readonly $fault: "client";
|
|
105
|
-
$retryable: {};
|
|
106
|
-
Message: string | undefined;
|
|
107
|
-
constructor(
|
|
108
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
109
|
-
);
|
|
110
|
-
}
|
|
111
|
-
export declare class ValidationException extends __BaseException {
|
|
112
|
-
readonly name: "ValidationException";
|
|
113
|
-
readonly $fault: "client";
|
|
114
|
-
Message?: string | undefined;
|
|
115
|
-
constructor(
|
|
116
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
117
|
-
);
|
|
118
|
-
}
|
|
119
60
|
export interface DeleteConfigurationManagerInput {
|
|
120
61
|
ManagerArn: string | undefined;
|
|
121
62
|
}
|
|
122
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
123
|
-
readonly name: "ResourceNotFoundException";
|
|
124
|
-
readonly $fault: "client";
|
|
125
|
-
Message?: string | undefined;
|
|
126
|
-
constructor(
|
|
127
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
128
|
-
);
|
|
129
|
-
}
|
|
130
63
|
export interface Filter {
|
|
131
64
|
Key: string | undefined;
|
|
132
65
|
Values: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-quicksetup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Quicksetup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-ssm-quicksetup",
|
|
@@ -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.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.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";
|