@aws-sdk/client-resource-explorer-2 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.
|
@@ -341,7 +341,7 @@ export interface CreateIndexOutput {
|
|
|
341
341
|
* populates the index.</p>
|
|
342
342
|
* </note>
|
|
343
343
|
*/
|
|
344
|
-
State?: IndexState
|
|
344
|
+
State?: IndexState;
|
|
345
345
|
/**
|
|
346
346
|
* @public
|
|
347
347
|
* <p>The date and timestamp when the index was created.</p>
|
|
@@ -375,7 +375,7 @@ export interface DeleteIndexOutput {
|
|
|
375
375
|
* @public
|
|
376
376
|
* <p>Indicates the current state of the index. </p>
|
|
377
377
|
*/
|
|
378
|
-
State?: IndexState
|
|
378
|
+
State?: IndexState;
|
|
379
379
|
/**
|
|
380
380
|
* @public
|
|
381
381
|
* <p>The date and time when you last updated this index.</p>
|
|
@@ -410,7 +410,7 @@ export interface ListIndexesInput {
|
|
|
410
410
|
* <code>LOCAL</code> or <code>AGGREGATOR</code>.</p>
|
|
411
411
|
* <p>Use this option to discover the aggregator index for your account.</p>
|
|
412
412
|
*/
|
|
413
|
-
Type?: IndexType
|
|
413
|
+
Type?: IndexType;
|
|
414
414
|
/**
|
|
415
415
|
* @public
|
|
416
416
|
* <p>If specified, limits the response to only information about the index in the specified
|
|
@@ -485,7 +485,7 @@ export interface Index {
|
|
|
485
485
|
* </li>
|
|
486
486
|
* </ul>
|
|
487
487
|
*/
|
|
488
|
-
Type?: IndexType
|
|
488
|
+
Type?: IndexType;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
* @public
|
|
@@ -543,7 +543,7 @@ export interface UpdateIndexTypeInput {
|
|
|
543
543
|
* <code>AGGREGATOR</code>, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html">Turning on cross-Region
|
|
544
544
|
* search</a> in the <i>Amazon Web Services Resource Explorer User Guide</i>.</p>
|
|
545
545
|
*/
|
|
546
|
-
Type: IndexType |
|
|
546
|
+
Type: IndexType | undefined;
|
|
547
547
|
}
|
|
548
548
|
/**
|
|
549
549
|
* @public
|
|
@@ -558,13 +558,13 @@ export interface UpdateIndexTypeOutput {
|
|
|
558
558
|
* @public
|
|
559
559
|
* <p>Specifies the type of the specified index after the operation completes.</p>
|
|
560
560
|
*/
|
|
561
|
-
Type?: IndexType
|
|
561
|
+
Type?: IndexType;
|
|
562
562
|
/**
|
|
563
563
|
* @public
|
|
564
564
|
* <p>Indicates the state of the request to update the index. This operation is
|
|
565
565
|
* asynchronous. Call the <a>GetIndex</a> operation to check for changes.</p>
|
|
566
566
|
*/
|
|
567
|
-
State?: IndexState
|
|
567
|
+
State?: IndexState;
|
|
568
568
|
/**
|
|
569
569
|
* @public
|
|
570
570
|
* <p>The date and timestamp when the index was last updated.</p>
|
|
@@ -794,12 +794,12 @@ export interface GetIndexOutput {
|
|
|
794
794
|
* how it differs from a local index, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/manage-aggregator-region.html">Turning on cross-Region search
|
|
795
795
|
* by creating an aggregator index</a>.</p>
|
|
796
796
|
*/
|
|
797
|
-
Type?: IndexType
|
|
797
|
+
Type?: IndexType;
|
|
798
798
|
/**
|
|
799
799
|
* @public
|
|
800
800
|
* <p>The current state of the index in this Amazon Web Services Region.</p>
|
|
801
801
|
*/
|
|
802
|
-
State?: IndexState
|
|
802
|
+
State?: IndexState;
|
|
803
803
|
/**
|
|
804
804
|
* @public
|
|
805
805
|
* <p>This response value is present only if this index is
|
|
@@ -105,7 +105,7 @@ export declare const IndexState: {
|
|
|
105
105
|
export type IndexState = (typeof IndexState)[keyof typeof IndexState];
|
|
106
106
|
export interface CreateIndexOutput {
|
|
107
107
|
Arn?: string;
|
|
108
|
-
State?: IndexState
|
|
108
|
+
State?: IndexState;
|
|
109
109
|
CreatedAt?: Date;
|
|
110
110
|
}
|
|
111
111
|
export interface DeleteIndexInput {
|
|
@@ -113,7 +113,7 @@ export interface DeleteIndexInput {
|
|
|
113
113
|
}
|
|
114
114
|
export interface DeleteIndexOutput {
|
|
115
115
|
Arn?: string;
|
|
116
|
-
State?: IndexState
|
|
116
|
+
State?: IndexState;
|
|
117
117
|
LastUpdatedAt?: Date;
|
|
118
118
|
}
|
|
119
119
|
export declare const IndexType: {
|
|
@@ -122,7 +122,7 @@ export declare const IndexType: {
|
|
|
122
122
|
};
|
|
123
123
|
export type IndexType = (typeof IndexType)[keyof typeof IndexType];
|
|
124
124
|
export interface ListIndexesInput {
|
|
125
|
-
Type?: IndexType
|
|
125
|
+
Type?: IndexType;
|
|
126
126
|
Regions?: string[];
|
|
127
127
|
MaxResults?: number;
|
|
128
128
|
NextToken?: string;
|
|
@@ -130,7 +130,7 @@ export interface ListIndexesInput {
|
|
|
130
130
|
export interface Index {
|
|
131
131
|
Region?: string;
|
|
132
132
|
Arn?: string;
|
|
133
|
-
Type?: IndexType
|
|
133
|
+
Type?: IndexType;
|
|
134
134
|
}
|
|
135
135
|
export interface ListIndexesOutput {
|
|
136
136
|
Indexes?: Index[];
|
|
@@ -148,12 +148,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
148
148
|
}
|
|
149
149
|
export interface UpdateIndexTypeInput {
|
|
150
150
|
Arn: string | undefined;
|
|
151
|
-
Type: IndexType |
|
|
151
|
+
Type: IndexType | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface UpdateIndexTypeOutput {
|
|
154
154
|
Arn?: string;
|
|
155
|
-
Type?: IndexType
|
|
156
|
-
State?: IndexState
|
|
155
|
+
Type?: IndexType;
|
|
156
|
+
State?: IndexState;
|
|
157
157
|
LastUpdatedAt?: Date;
|
|
158
158
|
}
|
|
159
159
|
export interface CreateViewInput {
|
|
@@ -200,8 +200,8 @@ export interface GetDefaultViewOutput {
|
|
|
200
200
|
}
|
|
201
201
|
export interface GetIndexOutput {
|
|
202
202
|
Arn?: string;
|
|
203
|
-
Type?: IndexType
|
|
204
|
-
State?: IndexState
|
|
203
|
+
Type?: IndexType;
|
|
204
|
+
State?: IndexState;
|
|
205
205
|
ReplicatingFrom?: string[];
|
|
206
206
|
ReplicatingTo?: string[];
|
|
207
207
|
CreatedAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-explorer-2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Explorer 2 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"
|