@aws-sdk/client-cloudcontrol 3.428.0 → 3.429.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.
|
@@ -110,7 +110,7 @@ export interface ProgressEvent {
|
|
|
110
110
|
* @public
|
|
111
111
|
* <p>The resource operation type.</p>
|
|
112
112
|
*/
|
|
113
|
-
Operation?: Operation
|
|
113
|
+
Operation?: Operation;
|
|
114
114
|
/**
|
|
115
115
|
* @public
|
|
116
116
|
* <p>The current status of the resource operation request.</p>
|
|
@@ -143,7 +143,7 @@ export interface ProgressEvent {
|
|
|
143
143
|
* </li>
|
|
144
144
|
* </ul>
|
|
145
145
|
*/
|
|
146
|
-
OperationStatus?: OperationStatus
|
|
146
|
+
OperationStatus?: OperationStatus;
|
|
147
147
|
/**
|
|
148
148
|
* @public
|
|
149
149
|
* <p>When the resource operation request was initiated.</p>
|
|
@@ -166,7 +166,7 @@ export interface ProgressEvent {
|
|
|
166
166
|
* <p>For error code definitions, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-test-contract-errors.html">Handler error codes</a> in the <i>CloudFormation Command
|
|
167
167
|
* Line Interface User Guide for Extension Development</i>.</p>
|
|
168
168
|
*/
|
|
169
|
-
ErrorCode?: HandlerErrorCode
|
|
169
|
+
ErrorCode?: HandlerErrorCode;
|
|
170
170
|
/**
|
|
171
171
|
* @public
|
|
172
172
|
* <p>When to next request the status of this resource operation request.</p>
|
|
@@ -737,7 +737,7 @@ export interface ResourceRequestStatusFilter {
|
|
|
737
737
|
* @public
|
|
738
738
|
* <p>The operation types to include in the filter.</p>
|
|
739
739
|
*/
|
|
740
|
-
Operations?:
|
|
740
|
+
Operations?: Operation[];
|
|
741
741
|
/**
|
|
742
742
|
* @public
|
|
743
743
|
* <p>The operation statuses to include in the filter.</p>
|
|
@@ -769,7 +769,7 @@ export interface ResourceRequestStatusFilter {
|
|
|
769
769
|
* </li>
|
|
770
770
|
* </ul>
|
|
771
771
|
*/
|
|
772
|
-
OperationStatuses?:
|
|
772
|
+
OperationStatuses?: OperationStatus[];
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
* @public
|
|
@@ -50,12 +50,12 @@ export interface ProgressEvent {
|
|
|
50
50
|
TypeName?: string;
|
|
51
51
|
Identifier?: string;
|
|
52
52
|
RequestToken?: string;
|
|
53
|
-
Operation?: Operation
|
|
54
|
-
OperationStatus?: OperationStatus
|
|
53
|
+
Operation?: Operation;
|
|
54
|
+
OperationStatus?: OperationStatus;
|
|
55
55
|
EventTime?: Date;
|
|
56
56
|
ResourceModel?: string;
|
|
57
57
|
StatusMessage?: string;
|
|
58
|
-
ErrorCode?: HandlerErrorCode
|
|
58
|
+
ErrorCode?: HandlerErrorCode;
|
|
59
59
|
RetryAfter?: Date;
|
|
60
60
|
}
|
|
61
61
|
export interface CancelResourceRequestOutput {
|
|
@@ -268,8 +268,8 @@ export interface GetResourceRequestStatusOutput {
|
|
|
268
268
|
ProgressEvent?: ProgressEvent;
|
|
269
269
|
}
|
|
270
270
|
export interface ResourceRequestStatusFilter {
|
|
271
|
-
Operations?:
|
|
272
|
-
OperationStatuses?:
|
|
271
|
+
Operations?: Operation[];
|
|
272
|
+
OperationStatuses?: OperationStatus[];
|
|
273
273
|
}
|
|
274
274
|
export interface ListResourceRequestsInput {
|
|
275
275
|
MaxResults?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|