@aws-sdk/client-resource-explorer-2 3.298.0 → 3.300.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-types/commands/AssociateDefaultViewCommand.d.ts +3 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +5 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +6 -0
- package/dist-types/commands/CreateViewCommand.d.ts +15 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +3 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +3 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +1 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +1 -0
- package/dist-types/commands/GetIndexCommand.d.ts +1 -0
- package/dist-types/commands/GetViewCommand.d.ts +3 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +8 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListViewsCommand.d.ts +4 -0
- package/dist-types/commands/SearchCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +4 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +11 -0
- package/package.json +12 -12
|
@@ -32,6 +32,9 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO
|
|
|
32
32
|
* import { ResourceExplorer2Client, AssociateDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
33
33
|
* // const { ResourceExplorer2Client, AssociateDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
34
34
|
* const client = new ResourceExplorer2Client(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* ViewArn: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
35
38
|
* const command = new AssociateDefaultViewCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat
|
|
|
26
26
|
* import { ResourceExplorer2Client, BatchGetViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, BatchGetViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ViewArns: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* };
|
|
29
34
|
* const command = new BatchGetViewCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -76,6 +76,12 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB
|
|
|
76
76
|
* import { ResourceExplorer2Client, CreateIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
77
77
|
* // const { ResourceExplorer2Client, CreateIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
78
78
|
* const client = new ResourceExplorer2Client(config);
|
|
79
|
+
* const input = {
|
|
80
|
+
* ClientToken: "STRING_VALUE",
|
|
81
|
+
* Tags: {
|
|
82
|
+
* "<keys>": "STRING_VALUE",
|
|
83
|
+
* },
|
|
84
|
+
* };
|
|
79
85
|
* const command = new CreateIndexCommand(input);
|
|
80
86
|
* const response = await client.send(command);
|
|
81
87
|
* ```
|
|
@@ -33,6 +33,21 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea
|
|
|
33
33
|
* import { ResourceExplorer2Client, CreateViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
34
34
|
* // const { ResourceExplorer2Client, CreateViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
35
35
|
* const client = new ResourceExplorer2Client(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* ClientToken: "STRING_VALUE",
|
|
38
|
+
* ViewName: "STRING_VALUE", // required
|
|
39
|
+
* IncludedProperties: [
|
|
40
|
+
* {
|
|
41
|
+
* Name: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* Filters: {
|
|
45
|
+
* FilterString: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* Tags: {
|
|
48
|
+
* "<keys>": "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* };
|
|
36
51
|
* const command = new CreateViewCommand(input);
|
|
37
52
|
* const response = await client.send(command);
|
|
38
53
|
* ```
|
|
@@ -37,6 +37,9 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB
|
|
|
37
37
|
* import { ResourceExplorer2Client, DeleteIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
38
38
|
* // const { ResourceExplorer2Client, DeleteIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
39
39
|
* const client = new ResourceExplorer2Client(config);
|
|
40
|
+
* const input = {
|
|
41
|
+
* Arn: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
40
43
|
* const command = new DeleteIndexCommand(input);
|
|
41
44
|
* const response = await client.send(command);
|
|
42
45
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea
|
|
|
29
29
|
* import { ResourceExplorer2Client, DeleteViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
30
30
|
* // const { ResourceExplorer2Client, DeleteViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
31
31
|
* const client = new ResourceExplorer2Client(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* ViewArn: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteViewCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -30,6 +30,7 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* import { ResourceExplorer2Client, DisassociateDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
31
31
|
* // const { ResourceExplorer2Client, DisassociateDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
32
32
|
* const client = new ResourceExplorer2Client(config);
|
|
33
|
+
* const input = {};
|
|
33
34
|
* const command = new DisassociateDefaultViewCommand(input);
|
|
34
35
|
* const response = await client.send(command);
|
|
35
36
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
27
27
|
* import { ResourceExplorer2Client, GetDefaultViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
28
28
|
* // const { ResourceExplorer2Client, GetDefaultViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
29
29
|
* const client = new ResourceExplorer2Client(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new GetDefaultViewCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
|
|
|
27
27
|
* import { ResourceExplorer2Client, GetIndexCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
28
28
|
* // const { ResourceExplorer2Client, GetIndexCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
29
29
|
* const client = new ResourceExplorer2Client(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new GetIndexCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
|
|
|
26
26
|
* import { ResourceExplorer2Client, GetViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, GetViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ViewArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetViewCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,14 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
|
|
|
27
27
|
* import { ResourceExplorer2Client, ListIndexesCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
28
28
|
* // const { ResourceExplorer2Client, ListIndexesCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
29
29
|
* const client = new ResourceExplorer2Client(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* Type: "STRING_VALUE",
|
|
32
|
+
* Regions: [
|
|
33
|
+
* "STRING_VALUE",
|
|
34
|
+
* ],
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
30
38
|
* const command = new ListIndexesCommand(input);
|
|
31
39
|
* const response = await client.send(command);
|
|
32
40
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe
|
|
|
26
26
|
* import { ResourceExplorer2Client, ListSupportedResourceTypesCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, ListSupportedResourceTypesCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListSupportedResourceTypesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
26
|
* import { ResourceExplorer2Client, ListTagsForResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, ListTagsForResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -35,6 +35,10 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
|
|
|
35
35
|
* import { ResourceExplorer2Client, ListViewsCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
36
36
|
* // const { ResourceExplorer2Client, ListViewsCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
37
37
|
* const client = new ResourceExplorer2Client(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* NextToken: "STRING_VALUE",
|
|
40
|
+
* MaxResults: Number("int"),
|
|
41
|
+
* };
|
|
38
42
|
* const command = new ListViewsCommand(input);
|
|
39
43
|
* const response = await client.send(command);
|
|
40
44
|
* ```
|
|
@@ -38,6 +38,12 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
|
|
|
38
38
|
* import { ResourceExplorer2Client, SearchCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
39
39
|
* // const { ResourceExplorer2Client, SearchCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
40
40
|
* const client = new ResourceExplorer2Client(config);
|
|
41
|
+
* const input = {
|
|
42
|
+
* QueryString: "STRING_VALUE", // required
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* ViewArn: "STRING_VALUE",
|
|
45
|
+
* NextToken: "STRING_VALUE",
|
|
46
|
+
* };
|
|
41
47
|
* const command = new SearchCommand(input);
|
|
42
48
|
* const response = await client.send(command);
|
|
43
49
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
26
|
* import { ResourceExplorer2Client, TagResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, TagResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* Tags: {
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { ResourceExplorer2Client, UntagResourceCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
27
27
|
* // const { ResourceExplorer2Client, UntagResourceCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
28
28
|
* const client = new ResourceExplorer2Client(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -82,6 +82,10 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
|
|
|
82
82
|
* import { ResourceExplorer2Client, UpdateIndexTypeCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
83
83
|
* // const { ResourceExplorer2Client, UpdateIndexTypeCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
84
84
|
* const client = new ResourceExplorer2Client(config);
|
|
85
|
+
* const input = {
|
|
86
|
+
* Arn: "STRING_VALUE", // required
|
|
87
|
+
* Type: "STRING_VALUE", // required
|
|
88
|
+
* };
|
|
85
89
|
* const command = new UpdateIndexTypeCommand(input);
|
|
86
90
|
* const response = await client.send(command);
|
|
87
91
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
|
|
|
27
27
|
* import { ResourceExplorer2Client, UpdateViewCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
28
28
|
* // const { ResourceExplorer2Client, UpdateViewCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
29
29
|
* const client = new ResourceExplorer2Client(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ViewArn: "STRING_VALUE", // required
|
|
32
|
+
* IncludedProperties: [
|
|
33
|
+
* {
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* Filters: {
|
|
38
|
+
* FilterString: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* };
|
|
30
41
|
* const command = new UpdateViewCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
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.300.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,23 +21,23 @@
|
|
|
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/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|