@aws-sdk/client-resource-groups-tagging-api 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/DescribeReportCreationCommand.d.ts +9 -0
- package/dist-types/commands/GetComplianceSummaryCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcesCommand.d.ts +26 -0
- package/dist-types/commands/GetTagKeysCommand.d.ts +9 -0
- package/dist-types/commands/GetTagValuesCommand.d.ts +9 -0
- package/dist-types/commands/StartReportCreationCommand.d.ts +4 -0
- package/dist-types/commands/TagResourcesCommand.d.ts +12 -0
- package/dist-types/commands/UntagResourcesCommand.d.ts +12 -0
- package/package.json +16 -16
|
@@ -31,6 +31,13 @@ export interface DescribeReportCreationCommandOutput extends DescribeReportCreat
|
|
|
31
31
|
* const input = {};
|
|
32
32
|
* const command = new DescribeReportCreationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeReportCreationOutput
|
|
35
|
+
* // Status: "STRING_VALUE",
|
|
36
|
+
* // S3Location: "STRING_VALUE",
|
|
37
|
+
* // StartDate: "STRING_VALUE",
|
|
38
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
34
41
|
* ```
|
|
35
42
|
*
|
|
36
43
|
* @param DescribeReportCreationCommandInput - {@link DescribeReportCreationCommandInput}
|
|
@@ -91,6 +98,8 @@ export interface DescribeReportCreationCommandOutput extends DescribeReportCreat
|
|
|
91
98
|
* @throws {@link ThrottledException} (client fault)
|
|
92
99
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
93
100
|
*
|
|
101
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
94
103
|
*
|
|
95
104
|
*/
|
|
96
105
|
export declare class DescribeReportCreationCommand extends $Command<DescribeReportCreationCommandInput, DescribeReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -59,6 +59,20 @@ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryO
|
|
|
59
59
|
* };
|
|
60
60
|
* const command = new GetComplianceSummaryCommand(input);
|
|
61
61
|
* const response = await client.send(command);
|
|
62
|
+
* // { // GetComplianceSummaryOutput
|
|
63
|
+
* // SummaryList: [ // SummaryList
|
|
64
|
+
* // { // Summary
|
|
65
|
+
* // LastUpdated: "STRING_VALUE",
|
|
66
|
+
* // TargetId: "STRING_VALUE",
|
|
67
|
+
* // TargetIdType: "STRING_VALUE",
|
|
68
|
+
* // Region: "STRING_VALUE",
|
|
69
|
+
* // ResourceType: "STRING_VALUE",
|
|
70
|
+
* // NonCompliantResources: Number("long"),
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // PaginationToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
62
76
|
* ```
|
|
63
77
|
*
|
|
64
78
|
* @param GetComplianceSummaryCommandInput - {@link GetComplianceSummaryCommandInput}
|
|
@@ -119,6 +133,8 @@ export interface GetComplianceSummaryCommandOutput extends GetComplianceSummaryO
|
|
|
119
133
|
* @throws {@link ThrottledException} (client fault)
|
|
120
134
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
121
135
|
*
|
|
136
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
137
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
122
138
|
*
|
|
123
139
|
*/
|
|
124
140
|
export declare class GetComplianceSummaryCommand extends $Command<GetComplianceSummaryCommandInput, GetComplianceSummaryCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -72,6 +72,30 @@ export interface GetResourcesCommandOutput extends GetResourcesOutput, __Metadat
|
|
|
72
72
|
* };
|
|
73
73
|
* const command = new GetResourcesCommand(input);
|
|
74
74
|
* const response = await client.send(command);
|
|
75
|
+
* // { // GetResourcesOutput
|
|
76
|
+
* // PaginationToken: "STRING_VALUE",
|
|
77
|
+
* // ResourceTagMappingList: [ // ResourceTagMappingList
|
|
78
|
+
* // { // ResourceTagMapping
|
|
79
|
+
* // ResourceARN: "STRING_VALUE",
|
|
80
|
+
* // Tags: [ // TagList
|
|
81
|
+
* // { // Tag
|
|
82
|
+
* // Key: "STRING_VALUE", // required
|
|
83
|
+
* // Value: "STRING_VALUE", // required
|
|
84
|
+
* // },
|
|
85
|
+
* // ],
|
|
86
|
+
* // ComplianceDetails: { // ComplianceDetails
|
|
87
|
+
* // NoncompliantKeys: [ // TagKeyList
|
|
88
|
+
* // "STRING_VALUE",
|
|
89
|
+
* // ],
|
|
90
|
+
* // KeysWithNoncompliantValues: [
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
93
|
+
* // ComplianceStatus: true || false,
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
75
99
|
* ```
|
|
76
100
|
*
|
|
77
101
|
* @param GetResourcesCommandInput - {@link GetResourcesCommandInput}
|
|
@@ -114,6 +138,8 @@ export interface GetResourcesCommandOutput extends GetResourcesOutput, __Metadat
|
|
|
114
138
|
* @throws {@link ThrottledException} (client fault)
|
|
115
139
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
116
140
|
*
|
|
141
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
142
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
117
143
|
*
|
|
118
144
|
*/
|
|
119
145
|
export declare class GetResourcesCommand extends $Command<GetResourcesCommandInput, GetResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -38,6 +38,13 @@ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBea
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new GetTagKeysCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // GetTagKeysOutput
|
|
42
|
+
* // PaginationToken: "STRING_VALUE",
|
|
43
|
+
* // TagKeys: [ // TagKeyList
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
41
48
|
* ```
|
|
42
49
|
*
|
|
43
50
|
* @param GetTagKeysCommandInput - {@link GetTagKeysCommandInput}
|
|
@@ -80,6 +87,8 @@ export interface GetTagKeysCommandOutput extends GetTagKeysOutput, __MetadataBea
|
|
|
80
87
|
* @throws {@link ThrottledException} (client fault)
|
|
81
88
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
82
89
|
*
|
|
90
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
83
92
|
*
|
|
84
93
|
*/
|
|
85
94
|
export declare class GetTagKeysCommand extends $Command<GetTagKeysCommandInput, GetTagKeysCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -39,6 +39,13 @@ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __Metadat
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new GetTagValuesCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // GetTagValuesOutput
|
|
43
|
+
* // PaginationToken: "STRING_VALUE",
|
|
44
|
+
* // TagValues: [ // TagValuesOutputList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
42
49
|
* ```
|
|
43
50
|
*
|
|
44
51
|
* @param GetTagValuesCommandInput - {@link GetTagValuesCommandInput}
|
|
@@ -81,6 +88,8 @@ export interface GetTagValuesCommandOutput extends GetTagValuesOutput, __Metadat
|
|
|
81
88
|
* @throws {@link ThrottledException} (client fault)
|
|
82
89
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
83
90
|
*
|
|
91
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
84
93
|
*
|
|
85
94
|
*/
|
|
86
95
|
export declare class GetTagValuesCommand extends $Command<GetTagValuesCommandInput, GetTagValuesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface StartReportCreationCommandOutput extends StartReportCreationOut
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new StartReportCreationCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param StartReportCreationCommandInput - {@link StartReportCreationCommandInput}
|
|
@@ -103,6 +105,8 @@ export interface StartReportCreationCommandOutput extends StartReportCreationOut
|
|
|
103
105
|
* @throws {@link ThrottledException} (client fault)
|
|
104
106
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
105
107
|
*
|
|
108
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
109
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
106
110
|
*
|
|
107
111
|
*/
|
|
108
112
|
export declare class StartReportCreationCommand extends $Command<StartReportCreationCommandInput, StartReportCreationCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -85,6 +85,16 @@ export interface TagResourcesCommandOutput extends TagResourcesOutput, __Metadat
|
|
|
85
85
|
* };
|
|
86
86
|
* const command = new TagResourcesCommand(input);
|
|
87
87
|
* const response = await client.send(command);
|
|
88
|
+
* // { // TagResourcesOutput
|
|
89
|
+
* // FailedResourcesMap: { // FailedResourcesMap
|
|
90
|
+
* // "<keys>": { // FailureInfo
|
|
91
|
+
* // StatusCode: Number("int"),
|
|
92
|
+
* // ErrorCode: "STRING_VALUE",
|
|
93
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // };
|
|
97
|
+
*
|
|
88
98
|
* ```
|
|
89
99
|
*
|
|
90
100
|
* @param TagResourcesCommandInput - {@link TagResourcesCommandInput}
|
|
@@ -123,6 +133,8 @@ export interface TagResourcesCommandOutput extends TagResourcesOutput, __Metadat
|
|
|
123
133
|
* @throws {@link ThrottledException} (client fault)
|
|
124
134
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
125
135
|
*
|
|
136
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
137
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
126
138
|
*
|
|
127
139
|
*/
|
|
128
140
|
export declare class TagResourcesCommand extends $Command<TagResourcesCommandInput, TagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
|
@@ -72,6 +72,16 @@ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __Met
|
|
|
72
72
|
* };
|
|
73
73
|
* const command = new UntagResourcesCommand(input);
|
|
74
74
|
* const response = await client.send(command);
|
|
75
|
+
* // { // UntagResourcesOutput
|
|
76
|
+
* // FailedResourcesMap: { // FailedResourcesMap
|
|
77
|
+
* // "<keys>": { // FailureInfo
|
|
78
|
+
* // StatusCode: Number("int"),
|
|
79
|
+
* // ErrorCode: "STRING_VALUE",
|
|
80
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // },
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
75
85
|
* ```
|
|
76
86
|
*
|
|
77
87
|
* @param UntagResourcesCommandInput - {@link UntagResourcesCommandInput}
|
|
@@ -110,6 +120,8 @@ export interface UntagResourcesCommandOutput extends UntagResourcesOutput, __Met
|
|
|
110
120
|
* @throws {@link ThrottledException} (client fault)
|
|
111
121
|
* <p>The request was denied to limit the frequency of submitted requests.</p>
|
|
112
122
|
*
|
|
123
|
+
* @throws {@link ResourceGroupsTaggingAPIServiceException}
|
|
124
|
+
* <p>Base exception class for all service exceptions from ResourceGroupsTaggingAPI service.</p>
|
|
113
125
|
*
|
|
114
126
|
*/
|
|
115
127
|
export declare class UntagResourcesCommand extends $Command<UntagResourcesCommandInput, UntagResourcesCommandOutput, ResourceGroupsTaggingAPIClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-resource-groups-tagging-api",
|
|
3
3
|
"description": "AWS SDK for JavaScript Resource Groups Tagging Api 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",
|