@aws-sdk/client-config-service 3.1078.0 → 3.1080.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-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1077.0";
72
+ var version = "3.1079.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -3067,8 +3067,8 @@ var PutExternalEvaluationResponse$ = [3, n0, _PEERu,
3067
3067
  ];
3068
3068
  var PutOrganizationConfigRuleRequest$ = [3, n0, _POCRR,
3069
3069
  0,
3070
- [_OCRN, _OMRM, _OCRM, _EA, _OCPRM],
3071
- [0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, () => OrganizationCustomPolicyRuleMetadata$], 1
3070
+ [_OCRN, _OMRM, _OCRM, _EA, _OCPRM, _Ta],
3071
+ [0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, () => OrganizationCustomPolicyRuleMetadata$, () => TagsList], 1
3072
3072
  ];
3073
3073
  var PutOrganizationConfigRuleResponse$ = [3, n0, _POCRRu,
3074
3074
  0,
@@ -3077,8 +3077,8 @@ var PutOrganizationConfigRuleResponse$ = [3, n0, _POCRRu,
3077
3077
  ];
3078
3078
  var PutOrganizationConformancePackRequest$ = [3, n0, _POCPR,
3079
3079
  0,
3080
- [_OCPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _EA],
3081
- [0, 0, 0, 0, 0, () => ConformancePackInputParameters, 64 | 0], 1
3080
+ [_OCPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _EA, _Ta],
3081
+ [0, 0, 0, 0, 0, () => ConformancePackInputParameters, 64 | 0, () => TagsList], 1
3082
3082
  ];
3083
3083
  var PutOrganizationConformancePackResponse$ = [3, n0, _POCPRu,
3084
3084
  0,
@@ -2254,8 +2254,8 @@ export var PutExternalEvaluationResponse$ = [3, n0, _PEERu,
2254
2254
  ];
2255
2255
  export var PutOrganizationConfigRuleRequest$ = [3, n0, _POCRR,
2256
2256
  0,
2257
- [_OCRN, _OMRM, _OCRM, _EA, _OCPRM],
2258
- [0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, () => OrganizationCustomPolicyRuleMetadata$], 1
2257
+ [_OCRN, _OMRM, _OCRM, _EA, _OCPRM, _Ta],
2258
+ [0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, () => OrganizationCustomPolicyRuleMetadata$, () => TagsList], 1
2259
2259
  ];
2260
2260
  export var PutOrganizationConfigRuleResponse$ = [3, n0, _POCRRu,
2261
2261
  0,
@@ -2264,8 +2264,8 @@ export var PutOrganizationConfigRuleResponse$ = [3, n0, _POCRRu,
2264
2264
  ];
2265
2265
  export var PutOrganizationConformancePackRequest$ = [3, n0, _POCPR,
2266
2266
  0,
2267
- [_OCPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _EA],
2268
- [0, 0, 0, 0, 0, () => ConformancePackInputParameters, 64 | 0], 1
2267
+ [_OCPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _EA, _Ta],
2268
+ [0, 0, 0, 0, 0, () => ConformancePackInputParameters, 64 | 0, () => TagsList], 1
2269
2269
  ];
2270
2270
  export var PutOrganizationConformancePackResponse$ = [3, n0, _POCPRu,
2271
2271
  0,
@@ -118,6 +118,12 @@ declare const PutOrganizationConfigRuleCommand_base: {
118
118
  * "STRING_VALUE",
119
119
  * ],
120
120
  * },
121
+ * Tags: [ // TagsList
122
+ * { // Tag
123
+ * Key: "STRING_VALUE",
124
+ * Value: "STRING_VALUE",
125
+ * },
126
+ * ],
121
127
  * };
122
128
  * const command = new PutOrganizationConfigRuleCommand(input);
123
129
  * const response = await client.send(command);
@@ -79,6 +79,12 @@ declare const PutOrganizationConformancePackCommand_base: {
79
79
  * ExcludedAccounts: [ // ExcludedAccounts
80
80
  * "STRING_VALUE",
81
81
  * ],
82
+ * Tags: [ // TagsList
83
+ * { // Tag
84
+ * Key: "STRING_VALUE",
85
+ * Value: "STRING_VALUE",
86
+ * },
87
+ * ],
82
88
  * };
83
89
  * const command = new PutOrganizationConformancePackCommand(input);
84
90
  * const response = await client.send(command);
@@ -7117,6 +7117,11 @@ export interface PutOrganizationConfigRuleRequest {
7117
7117
  * @public
7118
7118
  */
7119
7119
  OrganizationCustomPolicyRuleMetadata?: OrganizationCustomPolicyRuleMetadata | undefined;
7120
+ /**
7121
+ * <p>The tags for the organization Config rule. Each tag consists of a key and an optional value, both of which you define.</p>
7122
+ * @public
7123
+ */
7124
+ Tags?: Tag[] | undefined;
7120
7125
  }
7121
7126
  /**
7122
7127
  * @public
@@ -7179,6 +7184,11 @@ export interface PutOrganizationConformancePackRequest {
7179
7184
  * @public
7180
7185
  */
7181
7186
  ExcludedAccounts?: string[] | undefined;
7187
+ /**
7188
+ * <p>The tags for the organization conformance pack. Each tag consists of a key and an optional value, both of which you define.</p>
7189
+ * @public
7190
+ */
7191
+ Tags?: Tag[] | undefined;
7182
7192
  }
7183
7193
  /**
7184
7194
  * @public
@@ -1377,6 +1377,7 @@ export interface PutOrganizationConfigRuleRequest {
1377
1377
  OrganizationCustomPolicyRuleMetadata?:
1378
1378
  | OrganizationCustomPolicyRuleMetadata
1379
1379
  | undefined;
1380
+ Tags?: Tag[] | undefined;
1380
1381
  }
1381
1382
  export interface PutOrganizationConfigRuleResponse {
1382
1383
  OrganizationConfigRuleArn?: string | undefined;
@@ -1389,6 +1390,7 @@ export interface PutOrganizationConformancePackRequest {
1389
1390
  DeliveryS3KeyPrefix?: string | undefined;
1390
1391
  ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
1391
1392
  ExcludedAccounts?: string[] | undefined;
1393
+ Tags?: Tag[] | undefined;
1392
1394
  }
1393
1395
  export interface PutOrganizationConformancePackResponse {
1394
1396
  OrganizationConformancePackArn?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-config-service",
3
3
  "description": "AWS SDK for JavaScript Config Service Client for Node.js, Browser and React Native",
4
- "version": "3.1078.0",
4
+ "version": "3.1080.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",
@@ -21,8 +21,8 @@
21
21
  "module": "./dist-es/index.js",
22
22
  "sideEffects": false,
23
23
  "dependencies": {
24
- "@aws-sdk/core": "^3.974.26",
25
- "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/core": "^3.974.28",
25
+ "@aws-sdk/credential-provider-node": "^3.972.63",
26
26
  "@aws-sdk/types": "^3.973.15",
27
27
  "@smithy/core": "^3.29.0",
28
28
  "@smithy/fetch-http-handler": "^5.6.2",