@aws-sdk/client-controltower 3.693.0 → 3.697.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
@@ -673,6 +673,7 @@ var se_ListEnabledBaselinesCommand = /* @__PURE__ */ __name(async (input, contex
673
673
  body = JSON.stringify(
674
674
  (0, import_smithy_client.take)(input, {
675
675
  filter: (_) => (0, import_smithy_client._json)(_),
676
+ includeChildren: [],
676
677
  maxResults: [],
677
678
  nextToken: []
678
679
  })
@@ -1470,6 +1471,7 @@ var de_EnabledBaselineDetails = /* @__PURE__ */ __name((output, context) => {
1470
1471
  baselineIdentifier: import_smithy_client.expectString,
1471
1472
  baselineVersion: import_smithy_client.expectString,
1472
1473
  parameters: (_) => de_EnabledBaselineParameterSummaries(_, context),
1474
+ parentIdentifier: import_smithy_client.expectString,
1473
1475
  statusSummary: import_smithy_client._json,
1474
1476
  targetIdentifier: import_smithy_client.expectString
1475
1477
  });
@@ -220,6 +220,7 @@ export const se_ListEnabledBaselinesCommand = async (input, context) => {
220
220
  let body;
221
221
  body = JSON.stringify(take(input, {
222
222
  filter: (_) => _json(_),
223
+ includeChildren: [],
223
224
  maxResults: [],
224
225
  nextToken: [],
225
226
  }));
@@ -1002,6 +1003,7 @@ const de_EnabledBaselineDetails = (output, context) => {
1002
1003
  baselineIdentifier: __expectString,
1003
1004
  baselineVersion: __expectString,
1004
1005
  parameters: (_) => de_EnabledBaselineParameterSummaries(_, context),
1006
+ parentIdentifier: __expectString,
1005
1007
  statusSummary: _json,
1006
1008
  targetIdentifier: __expectString,
1007
1009
  });
@@ -45,6 +45,7 @@ declare const GetEnabledBaselineCommand_base: {
45
45
  * // baselineIdentifier: "STRING_VALUE", // required
46
46
  * // baselineVersion: "STRING_VALUE",
47
47
  * // targetIdentifier: "STRING_VALUE", // required
48
+ * // parentIdentifier: "STRING_VALUE",
48
49
  * // statusSummary: { // EnablementStatusSummary
49
50
  * // status: "SUCCEEDED" || "FAILED" || "UNDER_CHANGE",
50
51
  * // lastOperationIdentifier: "STRING_VALUE",
@@ -44,9 +44,13 @@ declare const ListEnabledBaselinesCommand_base: {
44
44
  * baselineIdentifiers: [ // EnabledBaselineBaselineIdentifiers
45
45
  * "STRING_VALUE",
46
46
  * ],
47
+ * parentIdentifiers: [ // EnabledBaselineParentIdentifiers
48
+ * "STRING_VALUE",
49
+ * ],
47
50
  * },
48
51
  * nextToken: "STRING_VALUE",
49
52
  * maxResults: Number("int"),
53
+ * includeChildren: true || false,
50
54
  * };
51
55
  * const command = new ListEnabledBaselinesCommand(input);
52
56
  * const response = await client.send(command);
@@ -57,6 +61,7 @@ declare const ListEnabledBaselinesCommand_base: {
57
61
  * // baselineIdentifier: "STRING_VALUE", // required
58
62
  * // baselineVersion: "STRING_VALUE",
59
63
  * // targetIdentifier: "STRING_VALUE", // required
64
+ * // parentIdentifier: "STRING_VALUE",
60
65
  * // statusSummary: { // EnablementStatusSummary
61
66
  * // status: "SUCCEEDED" || "FAILED" || "UNDER_CHANGE",
62
67
  * // lastOperationIdentifier: "STRING_VALUE",
@@ -689,6 +689,11 @@ export interface EnabledBaselineDetails {
689
689
  * @public
690
690
  */
691
691
  targetIdentifier: string | undefined;
692
+ /**
693
+ * <p>An ARN that represents the parent <code>EnabledBaseline</code> at the Organizational Unit (OU) level, from which the child <code>EnabledBaseline</code> inherits its configuration. The value is returned by <code>GetEnabledBaseline</code>.</p>
694
+ * @public
695
+ */
696
+ parentIdentifier?: string | undefined;
692
697
  /**
693
698
  * <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
694
699
  * @public
@@ -725,6 +730,11 @@ export interface EnabledBaselineFilter {
725
730
  * @public
726
731
  */
727
732
  baselineIdentifiers?: string[] | undefined;
733
+ /**
734
+ * <p>An optional filter that sets up a list of <code>parentIdentifiers</code> to filter the results of the <code>ListEnabledBaseline</code> output.</p>
735
+ * @public
736
+ */
737
+ parentIdentifiers?: string[] | undefined;
728
738
  }
729
739
  /**
730
740
  * @public
@@ -745,6 +755,11 @@ export interface ListEnabledBaselinesInput {
745
755
  * @public
746
756
  */
747
757
  maxResults?: number | undefined;
758
+ /**
759
+ * <p>A value that can be set to include the child enabled baselines in responses. The default value is false.</p>
760
+ * @public
761
+ */
762
+ includeChildren?: boolean | undefined;
748
763
  }
749
764
  /**
750
765
  * <p>Returns a summary of information about an <code>EnabledBaseline</code> object.</p>
@@ -771,6 +786,11 @@ export interface EnabledBaselineSummary {
771
786
  * @public
772
787
  */
773
788
  targetIdentifier: string | undefined;
789
+ /**
790
+ * <p>An ARN that represents an object returned by <code>ListEnabledBaseline</code>, to describe an enabled baseline.</p>
791
+ * @public
792
+ */
793
+ parentIdentifier?: string | undefined;
774
794
  /**
775
795
  * <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
776
796
  * @public
@@ -215,6 +215,7 @@ export interface EnabledBaselineDetails {
215
215
  baselineIdentifier: string | undefined;
216
216
  baselineVersion?: string | undefined;
217
217
  targetIdentifier: string | undefined;
218
+ parentIdentifier?: string | undefined;
218
219
  statusSummary: EnablementStatusSummary | undefined;
219
220
  parameters?: EnabledBaselineParameterSummary[] | undefined;
220
221
  }
@@ -224,17 +225,20 @@ export interface GetEnabledBaselineOutput {
224
225
  export interface EnabledBaselineFilter {
225
226
  targetIdentifiers?: string[] | undefined;
226
227
  baselineIdentifiers?: string[] | undefined;
228
+ parentIdentifiers?: string[] | undefined;
227
229
  }
228
230
  export interface ListEnabledBaselinesInput {
229
231
  filter?: EnabledBaselineFilter | undefined;
230
232
  nextToken?: string | undefined;
231
233
  maxResults?: number | undefined;
234
+ includeChildren?: boolean | undefined;
232
235
  }
233
236
  export interface EnabledBaselineSummary {
234
237
  arn: string | undefined;
235
238
  baselineIdentifier: string | undefined;
236
239
  baselineVersion?: string | undefined;
237
240
  targetIdentifier: string | undefined;
241
+ parentIdentifier?: string | undefined;
238
242
  statusSummary: EnablementStatusSummary | undefined;
239
243
  }
240
244
  export interface ListEnabledBaselinesOutput {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-controltower",
3
3
  "description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
4
- "version": "3.693.0",
4
+ "version": "3.697.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-controltower",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.693.0",
24
- "@aws-sdk/client-sts": "3.693.0",
25
- "@aws-sdk/core": "3.693.0",
26
- "@aws-sdk/credential-provider-node": "3.693.0",
27
- "@aws-sdk/middleware-host-header": "3.693.0",
28
- "@aws-sdk/middleware-logger": "3.693.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.693.0",
30
- "@aws-sdk/middleware-user-agent": "3.693.0",
31
- "@aws-sdk/region-config-resolver": "3.693.0",
32
- "@aws-sdk/types": "3.692.0",
33
- "@aws-sdk/util-endpoints": "3.693.0",
34
- "@aws-sdk/util-user-agent-browser": "3.693.0",
35
- "@aws-sdk/util-user-agent-node": "3.693.0",
36
- "@smithy/config-resolver": "^3.0.11",
37
- "@smithy/core": "^2.5.2",
38
- "@smithy/fetch-http-handler": "^4.1.0",
39
- "@smithy/hash-node": "^3.0.9",
40
- "@smithy/invalid-dependency": "^3.0.9",
41
- "@smithy/middleware-content-length": "^3.0.11",
42
- "@smithy/middleware-endpoint": "^3.2.2",
43
- "@smithy/middleware-retry": "^3.0.26",
44
- "@smithy/middleware-serde": "^3.0.9",
45
- "@smithy/middleware-stack": "^3.0.9",
46
- "@smithy/node-config-provider": "^3.1.10",
47
- "@smithy/node-http-handler": "^3.3.0",
48
- "@smithy/protocol-http": "^4.1.6",
49
- "@smithy/smithy-client": "^3.4.3",
50
- "@smithy/types": "^3.7.0",
51
- "@smithy/url-parser": "^3.0.9",
23
+ "@aws-sdk/client-sso-oidc": "3.696.0",
24
+ "@aws-sdk/client-sts": "3.696.0",
25
+ "@aws-sdk/core": "3.696.0",
26
+ "@aws-sdk/credential-provider-node": "3.696.0",
27
+ "@aws-sdk/middleware-host-header": "3.696.0",
28
+ "@aws-sdk/middleware-logger": "3.696.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
+ "@aws-sdk/middleware-user-agent": "3.696.0",
31
+ "@aws-sdk/region-config-resolver": "3.696.0",
32
+ "@aws-sdk/types": "3.696.0",
33
+ "@aws-sdk/util-endpoints": "3.696.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.696.0",
35
+ "@aws-sdk/util-user-agent-node": "3.696.0",
36
+ "@smithy/config-resolver": "^3.0.12",
37
+ "@smithy/core": "^2.5.3",
38
+ "@smithy/fetch-http-handler": "^4.1.1",
39
+ "@smithy/hash-node": "^3.0.10",
40
+ "@smithy/invalid-dependency": "^3.0.10",
41
+ "@smithy/middleware-content-length": "^3.0.12",
42
+ "@smithy/middleware-endpoint": "^3.2.3",
43
+ "@smithy/middleware-retry": "^3.0.27",
44
+ "@smithy/middleware-serde": "^3.0.10",
45
+ "@smithy/middleware-stack": "^3.0.10",
46
+ "@smithy/node-config-provider": "^3.1.11",
47
+ "@smithy/node-http-handler": "^3.3.1",
48
+ "@smithy/protocol-http": "^4.1.7",
49
+ "@smithy/smithy-client": "^3.4.4",
50
+ "@smithy/types": "^3.7.1",
51
+ "@smithy/url-parser": "^3.0.10",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.26",
56
- "@smithy/util-defaults-mode-node": "^3.0.26",
57
- "@smithy/util-endpoints": "^2.1.5",
58
- "@smithy/util-middleware": "^3.0.9",
59
- "@smithy/util-retry": "^3.0.9",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.27",
56
+ "@smithy/util-defaults-mode-node": "^3.0.27",
57
+ "@smithy/util-endpoints": "^2.1.6",
58
+ "@smithy/util-middleware": "^3.0.10",
59
+ "@smithy/util-retry": "^3.0.10",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },