@aws-sdk/client-resource-explorer-2 3.321.1 → 3.326.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 +6 -0
- package/dist-types/commands/BatchGetViewCommand.d.ts +27 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +8 -0
- package/dist-types/commands/CreateViewCommand.d.ts +19 -0
- package/dist-types/commands/DeleteIndexCommand.d.ts +8 -0
- package/dist-types/commands/DeleteViewCommand.d.ts +6 -0
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +4 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +6 -0
- package/dist-types/commands/GetIndexCommand.d.ts +19 -0
- package/dist-types/commands/GetViewCommand.d.ts +22 -0
- package/dist-types/commands/ListIndexesCommand.d.ts +13 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +12 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListViewsCommand.d.ts +9 -0
- package/dist-types/commands/SearchCommand.d.ts +28 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +9 -0
- package/dist-types/commands/UpdateViewCommand.d.ts +19 -0
- package/package.json +16 -16
|
@@ -37,6 +37,10 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new AssociateDefaultViewCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // AssociateDefaultViewOutput
|
|
41
|
+
* // ViewArn: "STRING_VALUE",
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
40
44
|
* ```
|
|
41
45
|
*
|
|
42
46
|
* @param AssociateDefaultViewCommandInput - {@link AssociateDefaultViewCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface AssociateDefaultViewCommandOutput extends AssociateDefaultViewO
|
|
|
66
70
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
67
71
|
* for the operation, and try again.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class AssociateDefaultViewCommand extends $Command<AssociateDefaultViewCommandInput, AssociateDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -33,6 +33,31 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new BatchGetViewCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // BatchGetViewOutput
|
|
37
|
+
* // Views: [ // ViewList
|
|
38
|
+
* // { // View
|
|
39
|
+
* // ViewArn: "STRING_VALUE",
|
|
40
|
+
* // Owner: "STRING_VALUE",
|
|
41
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
42
|
+
* // Scope: "STRING_VALUE",
|
|
43
|
+
* // IncludedProperties: [ // IncludedPropertyList
|
|
44
|
+
* // { // IncludedProperty
|
|
45
|
+
* // Name: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // Filters: { // SearchFilter
|
|
49
|
+
* // FilterString: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // Errors: [ // BatchGetViewErrors
|
|
54
|
+
* // { // BatchGetViewError
|
|
55
|
+
* // ViewArn: "STRING_VALUE", // required
|
|
56
|
+
* // ErrorMessage: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
36
61
|
* ```
|
|
37
62
|
*
|
|
38
63
|
* @param BatchGetViewCommandInput - {@link BatchGetViewCommandInput}
|
|
@@ -61,6 +86,8 @@ export interface BatchGetViewCommandOutput extends BatchGetViewOutput, __Metadat
|
|
|
61
86
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
62
87
|
* for the operation, and try again.</p>
|
|
63
88
|
*
|
|
89
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
64
91
|
*
|
|
65
92
|
*/
|
|
66
93
|
export declare class BatchGetViewCommand extends $Command<BatchGetViewCommandInput, BatchGetViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -84,6 +84,12 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB
|
|
|
84
84
|
* };
|
|
85
85
|
* const command = new CreateIndexCommand(input);
|
|
86
86
|
* const response = await client.send(command);
|
|
87
|
+
* // { // CreateIndexOutput
|
|
88
|
+
* // Arn: "STRING_VALUE",
|
|
89
|
+
* // State: "STRING_VALUE",
|
|
90
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
91
|
+
* // };
|
|
92
|
+
*
|
|
87
93
|
* ```
|
|
88
94
|
*
|
|
89
95
|
* @param CreateIndexCommandInput - {@link CreateIndexCommandInput}
|
|
@@ -114,6 +120,8 @@ export interface CreateIndexCommandOutput extends CreateIndexOutput, __MetadataB
|
|
|
114
120
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
115
121
|
* for the operation, and try again.</p>
|
|
116
122
|
*
|
|
123
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
117
125
|
*
|
|
118
126
|
*/
|
|
119
127
|
export declare class CreateIndexCommand extends $Command<CreateIndexCommandInput, CreateIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -50,6 +50,23 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new CreateViewCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // CreateViewOutput
|
|
54
|
+
* // View: { // View
|
|
55
|
+
* // ViewArn: "STRING_VALUE",
|
|
56
|
+
* // Owner: "STRING_VALUE",
|
|
57
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // Scope: "STRING_VALUE",
|
|
59
|
+
* // IncludedProperties: [ // IncludedPropertyList
|
|
60
|
+
* // { // IncludedProperty
|
|
61
|
+
* // Name: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // Filters: { // SearchFilter
|
|
65
|
+
* // FilterString: "STRING_VALUE", // required
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
53
70
|
* ```
|
|
54
71
|
*
|
|
55
72
|
* @param CreateViewCommandInput - {@link CreateViewCommandInput}
|
|
@@ -86,6 +103,8 @@ export interface CreateViewCommandOutput extends CreateViewOutput, __MetadataBea
|
|
|
86
103
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
87
104
|
* for the operation, and try again.</p>
|
|
88
105
|
*
|
|
106
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
89
108
|
*
|
|
90
109
|
*/
|
|
91
110
|
export declare class CreateViewCommand extends $Command<CreateViewCommandInput, CreateViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -42,6 +42,12 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new DeleteIndexCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // DeleteIndexOutput
|
|
46
|
+
* // Arn: "STRING_VALUE",
|
|
47
|
+
* // State: "STRING_VALUE",
|
|
48
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
45
51
|
* ```
|
|
46
52
|
*
|
|
47
53
|
* @param DeleteIndexCommandInput - {@link DeleteIndexCommandInput}
|
|
@@ -71,6 +77,8 @@ export interface DeleteIndexCommandOutput extends DeleteIndexOutput, __MetadataB
|
|
|
71
77
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
72
78
|
* for the operation, and try again.</p>
|
|
73
79
|
*
|
|
80
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
74
82
|
*
|
|
75
83
|
*/
|
|
76
84
|
export declare class DeleteIndexCommand extends $Command<DeleteIndexCommandInput, DeleteIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -34,6 +34,10 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteViewCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DeleteViewOutput
|
|
38
|
+
* // ViewArn: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
37
41
|
* ```
|
|
38
42
|
*
|
|
39
43
|
* @param DeleteViewCommandInput - {@link DeleteViewCommandInput}
|
|
@@ -66,6 +70,8 @@ export interface DeleteViewCommandOutput extends DeleteViewOutput, __MetadataBea
|
|
|
66
70
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
67
71
|
* for the operation, and try again.</p>
|
|
68
72
|
*
|
|
73
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
69
75
|
*
|
|
70
76
|
*/
|
|
71
77
|
export declare class DeleteViewCommand extends $Command<DeleteViewCommandInput, DeleteViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* const input = {};
|
|
34
34
|
* const command = new DisassociateDefaultViewCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DisassociateDefaultViewCommandInput - {@link DisassociateDefaultViewCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DisassociateDefaultViewCommandOutput extends __MetadataBearer {
|
|
|
58
60
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
59
61
|
* for the operation, and try again.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DisassociateDefaultViewCommand extends $Command<DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -30,6 +30,10 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new GetDefaultViewCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // GetDefaultViewOutput
|
|
34
|
+
* // ViewArn: "STRING_VALUE",
|
|
35
|
+
* // };
|
|
36
|
+
*
|
|
33
37
|
* ```
|
|
34
38
|
*
|
|
35
39
|
* @param GetDefaultViewCommandInput - {@link GetDefaultViewCommandInput}
|
|
@@ -59,6 +63,8 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
59
63
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
60
64
|
* for the operation, and try again.</p>
|
|
61
65
|
*
|
|
66
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
62
68
|
*
|
|
63
69
|
*/
|
|
64
70
|
export declare class GetDefaultViewCommand extends $Command<GetDefaultViewCommandInput, GetDefaultViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -30,6 +30,23 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new GetIndexCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // GetIndexOutput
|
|
34
|
+
* // Arn: "STRING_VALUE",
|
|
35
|
+
* // Type: "STRING_VALUE",
|
|
36
|
+
* // State: "STRING_VALUE",
|
|
37
|
+
* // ReplicatingFrom: [ // RegionList
|
|
38
|
+
* // "STRING_VALUE",
|
|
39
|
+
* // ],
|
|
40
|
+
* // ReplicatingTo: [
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
44
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // Tags: { // TagMap
|
|
46
|
+
* // "<keys>": "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
33
50
|
* ```
|
|
34
51
|
*
|
|
35
52
|
* @param GetIndexCommandInput - {@link GetIndexCommandInput}
|
|
@@ -59,6 +76,8 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
|
|
|
59
76
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
60
77
|
* for the operation, and try again.</p>
|
|
61
78
|
*
|
|
79
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
62
81
|
*
|
|
63
82
|
*/
|
|
64
83
|
export declare class GetIndexCommand extends $Command<GetIndexCommandInput, GetIndexCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -31,6 +31,26 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetViewCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetViewOutput
|
|
35
|
+
* // View: { // View
|
|
36
|
+
* // ViewArn: "STRING_VALUE",
|
|
37
|
+
* // Owner: "STRING_VALUE",
|
|
38
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
39
|
+
* // Scope: "STRING_VALUE",
|
|
40
|
+
* // IncludedProperties: [ // IncludedPropertyList
|
|
41
|
+
* // { // IncludedProperty
|
|
42
|
+
* // Name: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // ],
|
|
45
|
+
* // Filters: { // SearchFilter
|
|
46
|
+
* // FilterString: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // Tags: { // TagMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
34
54
|
* ```
|
|
35
55
|
*
|
|
36
56
|
* @param GetViewCommandInput - {@link GetViewCommandInput}
|
|
@@ -63,6 +83,8 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
|
|
|
63
83
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
64
84
|
* for the operation, and try again.</p>
|
|
65
85
|
*
|
|
86
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
66
88
|
*
|
|
67
89
|
*/
|
|
68
90
|
export declare class GetViewCommand extends $Command<GetViewCommandInput, GetViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -37,6 +37,17 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListIndexesCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListIndexesOutput
|
|
41
|
+
* // Indexes: [ // IndexList
|
|
42
|
+
* // { // Index
|
|
43
|
+
* // Region: "STRING_VALUE",
|
|
44
|
+
* // Arn: "STRING_VALUE",
|
|
45
|
+
* // Type: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
40
51
|
* ```
|
|
41
52
|
*
|
|
42
53
|
* @param ListIndexesCommandInput - {@link ListIndexesCommandInput}
|
|
@@ -62,6 +73,8 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
|
|
|
62
73
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
63
74
|
* for the operation, and try again.</p>
|
|
64
75
|
*
|
|
76
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
65
78
|
*
|
|
66
79
|
*/
|
|
67
80
|
export declare class ListIndexesCommand extends $Command<ListIndexesCommandInput, ListIndexesCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -32,6 +32,16 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListSupportedResourceTypesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListSupportedResourceTypesOutput
|
|
36
|
+
* // ResourceTypes: [ // ResourceTypeList
|
|
37
|
+
* // { // SupportedResourceType
|
|
38
|
+
* // Service: "STRING_VALUE",
|
|
39
|
+
* // ResourceType: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // ],
|
|
42
|
+
* // NextToken: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
35
45
|
* ```
|
|
36
46
|
*
|
|
37
47
|
* @param ListSupportedResourceTypesCommandInput - {@link ListSupportedResourceTypesCommandInput}
|
|
@@ -57,6 +67,8 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe
|
|
|
57
67
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
58
68
|
* for the operation, and try again.</p>
|
|
59
69
|
*
|
|
70
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
60
72
|
*
|
|
61
73
|
*/
|
|
62
74
|
export declare class ListSupportedResourceTypesCommand extends $Command<ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceOutput
|
|
35
|
+
* // Tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -63,6 +69,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
63
69
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
64
70
|
* for the operation, and try again.</p>
|
|
65
71
|
*
|
|
72
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
66
74
|
*
|
|
67
75
|
*/
|
|
68
76
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -41,6 +41,13 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ListViewsCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // ListViewsOutput
|
|
45
|
+
* // Views: [ // ViewArnList
|
|
46
|
+
* // "STRING_VALUE",
|
|
47
|
+
* // ],
|
|
48
|
+
* // NextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
44
51
|
* ```
|
|
45
52
|
*
|
|
46
53
|
* @param ListViewsCommandInput - {@link ListViewsCommandInput}
|
|
@@ -66,6 +73,8 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
|
|
|
66
73
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
67
74
|
* for the operation, and try again.</p>
|
|
68
75
|
*
|
|
76
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
69
78
|
*
|
|
70
79
|
*/
|
|
71
80
|
export declare class ListViewsCommand extends $Command<ListViewsCommandInput, ListViewsCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -46,6 +46,32 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new SearchCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // SearchOutput
|
|
50
|
+
* // Resources: [ // ResourceList
|
|
51
|
+
* // { // Resource
|
|
52
|
+
* // Arn: "STRING_VALUE",
|
|
53
|
+
* // OwningAccountId: "STRING_VALUE",
|
|
54
|
+
* // Region: "STRING_VALUE",
|
|
55
|
+
* // ResourceType: "STRING_VALUE",
|
|
56
|
+
* // Service: "STRING_VALUE",
|
|
57
|
+
* // LastReportedAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // Properties: [ // ResourcePropertyList
|
|
59
|
+
* // { // ResourceProperty
|
|
60
|
+
* // Name: "STRING_VALUE",
|
|
61
|
+
* // LastReportedAt: new Date("TIMESTAMP"),
|
|
62
|
+
* // Data: "DOCUMENT_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // NextToken: "STRING_VALUE",
|
|
68
|
+
* // ViewArn: "STRING_VALUE",
|
|
69
|
+
* // Count: { // ResourceCount
|
|
70
|
+
* // TotalResources: Number("long"),
|
|
71
|
+
* // Complete: true || false,
|
|
72
|
+
* // },
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
49
75
|
* ```
|
|
50
76
|
*
|
|
51
77
|
* @param SearchCommandInput - {@link SearchCommandInput}
|
|
@@ -78,6 +104,8 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
|
|
|
78
104
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
79
105
|
* for the operation, and try again.</p>
|
|
80
106
|
*
|
|
107
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
108
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
81
109
|
*
|
|
82
110
|
*/
|
|
83
111
|
export declare class SearchCommand extends $Command<SearchCommandInput, SearchCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
67
69
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
68
70
|
* for the operation, and try again.</p>
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
66
68
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
67
69
|
* for the operation, and try again.</p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -88,6 +88,13 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
|
|
|
88
88
|
* };
|
|
89
89
|
* const command = new UpdateIndexTypeCommand(input);
|
|
90
90
|
* const response = await client.send(command);
|
|
91
|
+
* // { // UpdateIndexTypeOutput
|
|
92
|
+
* // Arn: "STRING_VALUE",
|
|
93
|
+
* // Type: "STRING_VALUE",
|
|
94
|
+
* // State: "STRING_VALUE",
|
|
95
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
96
|
+
* // };
|
|
97
|
+
*
|
|
91
98
|
* ```
|
|
92
99
|
*
|
|
93
100
|
* @param UpdateIndexTypeCommandInput - {@link UpdateIndexTypeCommandInput}
|
|
@@ -125,6 +132,8 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
|
|
|
125
132
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
126
133
|
* for the operation, and try again.</p>
|
|
127
134
|
*
|
|
135
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
136
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
128
137
|
*
|
|
129
138
|
*/
|
|
130
139
|
export declare class UpdateIndexTypeCommand extends $Command<UpdateIndexTypeCommandInput, UpdateIndexTypeCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
@@ -40,6 +40,23 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new UpdateViewCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // UpdateViewOutput
|
|
44
|
+
* // View: { // View
|
|
45
|
+
* // ViewArn: "STRING_VALUE",
|
|
46
|
+
* // Owner: "STRING_VALUE",
|
|
47
|
+
* // LastUpdatedAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // Scope: "STRING_VALUE",
|
|
49
|
+
* // IncludedProperties: [ // IncludedPropertyList
|
|
50
|
+
* // { // IncludedProperty
|
|
51
|
+
* // Name: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // Filters: { // SearchFilter
|
|
55
|
+
* // FilterString: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
43
60
|
* ```
|
|
44
61
|
*
|
|
45
62
|
* @param UpdateViewCommandInput - {@link UpdateViewCommandInput}
|
|
@@ -71,6 +88,8 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
|
|
|
71
88
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
72
89
|
* for the operation, and try again.</p>
|
|
73
90
|
*
|
|
91
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
74
93
|
*
|
|
75
94
|
*/
|
|
76
95
|
export declare class UpdateViewCommand extends $Command<UpdateViewCommandInput, UpdateViewCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|