@aws-sdk/client-resource-explorer-2 3.300.0 → 3.301.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 +1 -1
- package/dist-types/commands/BatchGetViewCommand.d.ts +2 -2
- package/dist-types/commands/CreateIndexCommand.d.ts +2 -2
- package/dist-types/commands/CreateViewCommand.d.ts +5 -5
- package/dist-types/commands/DeleteIndexCommand.d.ts +1 -1
- package/dist-types/commands/DeleteViewCommand.d.ts +1 -1
- package/dist-types/commands/GetViewCommand.d.ts +1 -1
- package/dist-types/commands/ListIndexesCommand.d.ts +2 -2
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListViewsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateViewCommand.d.ts +4 -4
- package/package.json +3 -3
|
@@ -32,7 +32,7 @@ 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 = {
|
|
35
|
+
* const input = { // AssociateDefaultViewInput
|
|
36
36
|
* ViewArn: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new AssociateDefaultViewCommand(input);
|
|
@@ -26,8 +26,8 @@ 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: [
|
|
29
|
+
* const input = { // BatchGetViewInput
|
|
30
|
+
* ViewArns: [ // ViewArnList
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
33
|
* };
|
|
@@ -76,9 +76,9 @@ 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 = {
|
|
79
|
+
* const input = { // CreateIndexInput
|
|
80
80
|
* ClientToken: "STRING_VALUE",
|
|
81
|
-
* Tags: {
|
|
81
|
+
* Tags: { // TagMap
|
|
82
82
|
* "<keys>": "STRING_VALUE",
|
|
83
83
|
* },
|
|
84
84
|
* };
|
|
@@ -33,18 +33,18 @@ 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 = {
|
|
36
|
+
* const input = { // CreateViewInput
|
|
37
37
|
* ClientToken: "STRING_VALUE",
|
|
38
38
|
* ViewName: "STRING_VALUE", // required
|
|
39
|
-
* IncludedProperties: [
|
|
40
|
-
* {
|
|
39
|
+
* IncludedProperties: [ // IncludedPropertyList
|
|
40
|
+
* { // IncludedProperty
|
|
41
41
|
* Name: "STRING_VALUE", // required
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
|
-
* Filters: {
|
|
44
|
+
* Filters: { // SearchFilter
|
|
45
45
|
* FilterString: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
47
|
-
* Tags: {
|
|
47
|
+
* Tags: { // TagMap
|
|
48
48
|
* "<keys>": "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
50
|
* };
|
|
@@ -37,7 +37,7 @@ 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 = {
|
|
40
|
+
* const input = { // DeleteIndexInput
|
|
41
41
|
* Arn: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new DeleteIndexCommand(input);
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DeleteViewInput
|
|
33
33
|
* ViewArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteViewCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetViewInput
|
|
30
30
|
* ViewArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetViewCommand(input);
|
|
@@ -27,9 +27,9 @@ 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 = {
|
|
30
|
+
* const input = { // ListIndexesInput
|
|
31
31
|
* Type: "STRING_VALUE",
|
|
32
|
-
* Regions: [
|
|
32
|
+
* Regions: [ // RegionList
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListSupportedResourceTypesInput
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -35,7 +35,7 @@ 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 = {
|
|
38
|
+
* const input = { // ListViewsInput
|
|
39
39
|
* NextToken: "STRING_VALUE",
|
|
40
40
|
* MaxResults: Number("int"),
|
|
41
41
|
* };
|
|
@@ -38,7 +38,7 @@ 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 = {
|
|
41
|
+
* const input = { // SearchInput
|
|
42
42
|
* QueryString: "STRING_VALUE", // required
|
|
43
43
|
* MaxResults: Number("int"),
|
|
44
44
|
* ViewArn: "STRING_VALUE",
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // TagResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* Tags: {
|
|
31
|
+
* Tags: { // TagMap
|
|
32
32
|
* "<keys>": "STRING_VALUE",
|
|
33
33
|
* },
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // StringList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -82,7 +82,7 @@ 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 = {
|
|
85
|
+
* const input = { // UpdateIndexTypeInput
|
|
86
86
|
* Arn: "STRING_VALUE", // required
|
|
87
87
|
* Type: "STRING_VALUE", // required
|
|
88
88
|
* };
|
|
@@ -27,14 +27,14 @@ 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 = {
|
|
30
|
+
* const input = { // UpdateViewInput
|
|
31
31
|
* ViewArn: "STRING_VALUE", // required
|
|
32
|
-
* IncludedProperties: [
|
|
33
|
-
* {
|
|
32
|
+
* IncludedProperties: [ // IncludedPropertyList
|
|
33
|
+
* { // IncludedProperty
|
|
34
34
|
* Name: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
36
|
* ],
|
|
37
|
-
* Filters: {
|
|
37
|
+
* Filters: { // SearchFilter
|
|
38
38
|
* FilterString: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* };
|
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.301.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.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",
|