@aws-sdk/client-marketplace-catalog 3.427.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.
|
@@ -286,7 +286,7 @@ export interface DescribeChangeSetResponse {
|
|
|
286
286
|
* @public
|
|
287
287
|
* <p>The status of the change request.</p>
|
|
288
288
|
*/
|
|
289
|
-
Status?: ChangeStatus
|
|
289
|
+
Status?: ChangeStatus;
|
|
290
290
|
/**
|
|
291
291
|
* @public
|
|
292
292
|
* <p>Returned if the change set is in <code>FAILED</code> status. Can be either
|
|
@@ -294,7 +294,7 @@ export interface DescribeChangeSetResponse {
|
|
|
294
294
|
* the <code>ErrorDetailList</code>), or <code>SERVER_FAULT</code>, which means that there
|
|
295
295
|
* is a problem in the system, and you should retry your request.</p>
|
|
296
296
|
*/
|
|
297
|
-
FailureCode?: FailureCode
|
|
297
|
+
FailureCode?: FailureCode;
|
|
298
298
|
/**
|
|
299
299
|
* @public
|
|
300
300
|
* <p>Returned if there is a failure on the change set, but that failure is not related to
|
|
@@ -490,7 +490,7 @@ export interface Sort {
|
|
|
490
490
|
* <p>The sorting order. Can be <code>ASCENDING</code> or <code>DESCENDING</code>. The
|
|
491
491
|
* default value is <code>DESCENDING</code>.</p>
|
|
492
492
|
*/
|
|
493
|
-
SortOrder?: SortOrder
|
|
493
|
+
SortOrder?: SortOrder;
|
|
494
494
|
}
|
|
495
495
|
/**
|
|
496
496
|
* @public
|
|
@@ -565,7 +565,7 @@ export interface ChangeSetSummaryListItem {
|
|
|
565
565
|
* @public
|
|
566
566
|
* <p>The current status of the change set.</p>
|
|
567
567
|
*/
|
|
568
|
-
Status?: ChangeStatus
|
|
568
|
+
Status?: ChangeStatus;
|
|
569
569
|
/**
|
|
570
570
|
* @public
|
|
571
571
|
* <p>This object is a list of entity IDs (string) that are a part of a change set. The
|
|
@@ -580,7 +580,7 @@ export interface ChangeSetSummaryListItem {
|
|
|
580
580
|
* <code>SERVER_FAULT</code>, which means that there is a problem in the system, and
|
|
581
581
|
* you should retry your request.</p>
|
|
582
582
|
*/
|
|
583
|
-
FailureCode?: FailureCode
|
|
583
|
+
FailureCode?: FailureCode;
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* @public
|
|
@@ -655,7 +655,7 @@ export interface ListEntitiesRequest {
|
|
|
655
655
|
* Catalog API <code>PutResourcePolicy</code> operation can't be discovered through the
|
|
656
656
|
* <code>SHARED</code> parameter.</p>
|
|
657
657
|
*/
|
|
658
|
-
OwnershipType?: OwnershipType
|
|
658
|
+
OwnershipType?: OwnershipType;
|
|
659
659
|
}
|
|
660
660
|
/**
|
|
661
661
|
* @public
|
|
@@ -100,8 +100,8 @@ export interface DescribeChangeSetResponse {
|
|
|
100
100
|
ChangeSetName?: string;
|
|
101
101
|
StartTime?: string;
|
|
102
102
|
EndTime?: string;
|
|
103
|
-
Status?: ChangeStatus
|
|
104
|
-
FailureCode?: FailureCode
|
|
103
|
+
Status?: ChangeStatus;
|
|
104
|
+
FailureCode?: FailureCode;
|
|
105
105
|
FailureDescription?: string;
|
|
106
106
|
ChangeSet?: ChangeSummary[];
|
|
107
107
|
}
|
|
@@ -142,7 +142,7 @@ export declare const SortOrder: {
|
|
|
142
142
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
143
143
|
export interface Sort {
|
|
144
144
|
SortBy?: string;
|
|
145
|
-
SortOrder?: SortOrder
|
|
145
|
+
SortOrder?: SortOrder;
|
|
146
146
|
}
|
|
147
147
|
export interface ListChangeSetsRequest {
|
|
148
148
|
Catalog: string | undefined;
|
|
@@ -157,9 +157,9 @@ export interface ChangeSetSummaryListItem {
|
|
|
157
157
|
ChangeSetName?: string;
|
|
158
158
|
StartTime?: string;
|
|
159
159
|
EndTime?: string;
|
|
160
|
-
Status?: ChangeStatus
|
|
160
|
+
Status?: ChangeStatus;
|
|
161
161
|
EntityIdList?: string[];
|
|
162
|
-
FailureCode?: FailureCode
|
|
162
|
+
FailureCode?: FailureCode;
|
|
163
163
|
}
|
|
164
164
|
export interface ListChangeSetsResponse {
|
|
165
165
|
ChangeSetSummaryList?: ChangeSetSummaryListItem[];
|
|
@@ -177,7 +177,7 @@ export interface ListEntitiesRequest {
|
|
|
177
177
|
Sort?: Sort;
|
|
178
178
|
NextToken?: string;
|
|
179
179
|
MaxResults?: number;
|
|
180
|
-
OwnershipType?: OwnershipType
|
|
180
|
+
OwnershipType?: OwnershipType;
|
|
181
181
|
}
|
|
182
182
|
export interface EntitySummary {
|
|
183
183
|
Name?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-catalog",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Catalog 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,39 +21,39 @@
|
|
|
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.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
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
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|
|
59
59
|
"uuid": "^8.3.2"
|