@aws-sdk/client-resource-groups-tagging-api 3.1052.0 → 3.1054.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.
|
@@ -38,6 +38,7 @@ const _LRTO = "ListRequiredTagsOutput";
|
|
|
38
38
|
const _LU = "LastUpdated";
|
|
39
39
|
const _M = "Message";
|
|
40
40
|
const _MR = "MaxResults";
|
|
41
|
+
const _MTK = "MissingTagKeys";
|
|
41
42
|
const _NCR = "NonCompliantResources";
|
|
42
43
|
const _NK = "NoncompliantKeys";
|
|
43
44
|
const _NT = "NextToken";
|
|
@@ -143,8 +144,8 @@ exports.errorTypeRegistries = [
|
|
|
143
144
|
];
|
|
144
145
|
exports.ComplianceDetails$ = [3, n0, _CD,
|
|
145
146
|
0,
|
|
146
|
-
[_NK, _KWNV, _CS],
|
|
147
|
-
[64 | 0, 64 | 0, 2]
|
|
147
|
+
[_NK, _KWNV, _MTK, _CS],
|
|
148
|
+
[64 | 0, 64 | 0, 64 | 0, 2]
|
|
148
149
|
];
|
|
149
150
|
exports.DescribeReportCreationInput$ = [3, n0, _DRCI,
|
|
150
151
|
0,
|
|
@@ -35,6 +35,7 @@ const _LRTO = "ListRequiredTagsOutput";
|
|
|
35
35
|
const _LU = "LastUpdated";
|
|
36
36
|
const _M = "Message";
|
|
37
37
|
const _MR = "MaxResults";
|
|
38
|
+
const _MTK = "MissingTagKeys";
|
|
38
39
|
const _NCR = "NonCompliantResources";
|
|
39
40
|
const _NK = "NoncompliantKeys";
|
|
40
41
|
const _NT = "NextToken";
|
|
@@ -140,8 +141,8 @@ export const errorTypeRegistries = [
|
|
|
140
141
|
];
|
|
141
142
|
export var ComplianceDetails$ = [3, n0, _CD,
|
|
142
143
|
0,
|
|
143
|
-
[_NK, _KWNV, _CS],
|
|
144
|
-
[64 | 0, 64 | 0, 2]
|
|
144
|
+
[_NK, _KWNV, _MTK, _CS],
|
|
145
|
+
[64 | 0, 64 | 0, 64 | 0, 2]
|
|
145
146
|
];
|
|
146
147
|
export var DescribeReportCreationInput$ = [3, n0, _DRCI,
|
|
147
148
|
0,
|
|
@@ -16,6 +16,13 @@ export interface ComplianceDetails {
|
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
18
|
KeysWithNoncompliantValues?: string[] | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>These tag keys are defined as required in the
|
|
21
|
+
* <code>report_required_tag_for</code> block of the effective tag policy, but are
|
|
22
|
+
* missing from the resource.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
MissingTagKeys?: string[] | undefined;
|
|
19
26
|
/**
|
|
20
27
|
* <p>Whether a resource is compliant with the effective tag policy.</p>
|
|
21
28
|
* @public
|
|
@@ -2,6 +2,7 @@ import { ErrorCode, GroupByAttribute, TargetIdType } from "./enums";
|
|
|
2
2
|
export interface ComplianceDetails {
|
|
3
3
|
NoncompliantKeys?: string[] | undefined;
|
|
4
4
|
KeysWithNoncompliantValues?: string[] | undefined;
|
|
5
|
+
MissingTagKeys?: string[] | undefined;
|
|
5
6
|
ComplianceStatus?: boolean | undefined;
|
|
6
7
|
}
|
|
7
8
|
export interface DescribeReportCreationInput {}
|
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.1054.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-resource-groups-tagging-api",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.14",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.45",
|
|
26
26
|
"@aws-sdk/types": "^3.973.9",
|
|
27
27
|
"@smithy/core": "^3.24.3",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.3",
|