@aws-sdk/client-controltower 3.696.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 +2 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/GetEnabledBaselineCommand.d.ts +1 -0
- package/dist-types/commands/ListEnabledBaselinesCommand.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +1 -1
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.
|
|
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",
|