@aws-sdk/client-controltower 3.378.0 → 3.382.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.
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
2
5
|
export interface ClientInputEndpointParameters {
|
|
3
6
|
region?: string | Provider<string>;
|
|
4
7
|
useDualstackEndpoint?: boolean | Provider<boolean>;
|
package/dist-types/index.d.ts
CHANGED
|
@@ -30,11 +30,13 @@ export declare class ConflictException extends __BaseException {
|
|
|
30
30
|
*/
|
|
31
31
|
export interface DisableControlInput {
|
|
32
32
|
/**
|
|
33
|
+
* @public
|
|
33
34
|
* <p>The ARN of the control. Only <b>Strongly recommended</b> and <b>Elective</b> controls are permitted,
|
|
34
35
|
* with the exception of the <b>Region deny</b> guardrail.</p>
|
|
35
36
|
*/
|
|
36
37
|
controlIdentifier: string | undefined;
|
|
37
38
|
/**
|
|
39
|
+
* @public
|
|
38
40
|
* <p>The ARN of the organizational unit.</p>
|
|
39
41
|
*/
|
|
40
42
|
targetIdentifier: string | undefined;
|
|
@@ -44,6 +46,7 @@ export interface DisableControlInput {
|
|
|
44
46
|
*/
|
|
45
47
|
export interface DisableControlOutput {
|
|
46
48
|
/**
|
|
49
|
+
* @public
|
|
47
50
|
* <p>The ID of the asynchronous operation, which is used to track status. The operation is
|
|
48
51
|
* available for 90 days.</p>
|
|
49
52
|
*/
|
|
@@ -97,14 +100,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
97
100
|
throttling: boolean;
|
|
98
101
|
};
|
|
99
102
|
/**
|
|
103
|
+
* @public
|
|
100
104
|
* <p>The ID of the service that is associated with the error.</p>
|
|
101
105
|
*/
|
|
102
106
|
serviceCode?: string;
|
|
103
107
|
/**
|
|
108
|
+
* @public
|
|
104
109
|
* <p>The ID of the service quota that was exceeded.</p>
|
|
105
110
|
*/
|
|
106
111
|
quotaCode?: string;
|
|
107
112
|
/**
|
|
113
|
+
* @public
|
|
108
114
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
109
115
|
*/
|
|
110
116
|
retryAfterSeconds?: number;
|
|
@@ -130,11 +136,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
130
136
|
*/
|
|
131
137
|
export interface EnableControlInput {
|
|
132
138
|
/**
|
|
139
|
+
* @public
|
|
133
140
|
* <p>The ARN of the control. Only <b>Strongly recommended</b> and <b>Elective</b> controls are permitted,
|
|
134
141
|
* with the exception of the <b>Region deny</b> guardrail.</p>
|
|
135
142
|
*/
|
|
136
143
|
controlIdentifier: string | undefined;
|
|
137
144
|
/**
|
|
145
|
+
* @public
|
|
138
146
|
* <p>The ARN of the organizational unit.</p>
|
|
139
147
|
*/
|
|
140
148
|
targetIdentifier: string | undefined;
|
|
@@ -144,6 +152,7 @@ export interface EnableControlInput {
|
|
|
144
152
|
*/
|
|
145
153
|
export interface EnableControlOutput {
|
|
146
154
|
/**
|
|
155
|
+
* @public
|
|
147
156
|
* <p>The ID of the asynchronous operation, which is used to track status. The operation is
|
|
148
157
|
* available for 90 days.</p>
|
|
149
158
|
*/
|
|
@@ -154,6 +163,7 @@ export interface EnableControlOutput {
|
|
|
154
163
|
*/
|
|
155
164
|
export interface GetControlOperationInput {
|
|
156
165
|
/**
|
|
166
|
+
* @public
|
|
157
167
|
* <p>The ID of the asynchronous operation, which is used to track status. The operation is
|
|
158
168
|
* available for 90 days.</p>
|
|
159
169
|
*/
|
|
@@ -190,22 +200,27 @@ export type ControlOperationStatus = (typeof ControlOperationStatus)[keyof typeo
|
|
|
190
200
|
*/
|
|
191
201
|
export interface ControlOperation {
|
|
192
202
|
/**
|
|
203
|
+
* @public
|
|
193
204
|
* <p>One of <code>ENABLE_CONTROL</code> or <code>DISABLE_CONTROL</code>.</p>
|
|
194
205
|
*/
|
|
195
206
|
operationType?: ControlOperationType | string;
|
|
196
207
|
/**
|
|
208
|
+
* @public
|
|
197
209
|
* <p>The time that the operation began.</p>
|
|
198
210
|
*/
|
|
199
211
|
startTime?: Date;
|
|
200
212
|
/**
|
|
213
|
+
* @public
|
|
201
214
|
* <p>The time that the operation finished.</p>
|
|
202
215
|
*/
|
|
203
216
|
endTime?: Date;
|
|
204
217
|
/**
|
|
218
|
+
* @public
|
|
205
219
|
* <p>One of <code>IN_PROGRESS</code>, <code>SUCEEDED</code>, or <code>FAILED</code>.</p>
|
|
206
220
|
*/
|
|
207
221
|
status?: ControlOperationStatus | string;
|
|
208
222
|
/**
|
|
223
|
+
* @public
|
|
209
224
|
* <p>If the operation result is <code>FAILED</code>, this string contains a message explaining why the operation failed.</p>
|
|
210
225
|
*/
|
|
211
226
|
statusMessage?: string;
|
|
@@ -215,6 +230,7 @@ export interface ControlOperation {
|
|
|
215
230
|
*/
|
|
216
231
|
export interface GetControlOperationOutput {
|
|
217
232
|
/**
|
|
233
|
+
* @public
|
|
218
234
|
* <p/>
|
|
219
235
|
*/
|
|
220
236
|
controlOperation: ControlOperation | undefined;
|
|
@@ -224,14 +240,17 @@ export interface GetControlOperationOutput {
|
|
|
224
240
|
*/
|
|
225
241
|
export interface ListEnabledControlsInput {
|
|
226
242
|
/**
|
|
243
|
+
* @public
|
|
227
244
|
* <p>The ARN of the organizational unit.</p>
|
|
228
245
|
*/
|
|
229
246
|
targetIdentifier: string | undefined;
|
|
230
247
|
/**
|
|
248
|
+
* @public
|
|
231
249
|
* <p>The token to continue the list from a previous API call with the same parameters.</p>
|
|
232
250
|
*/
|
|
233
251
|
nextToken?: string;
|
|
234
252
|
/**
|
|
253
|
+
* @public
|
|
235
254
|
* <p>How many results to return per API call.</p>
|
|
236
255
|
*/
|
|
237
256
|
maxResults?: number;
|
|
@@ -242,6 +261,7 @@ export interface ListEnabledControlsInput {
|
|
|
242
261
|
*/
|
|
243
262
|
export interface EnabledControlSummary {
|
|
244
263
|
/**
|
|
264
|
+
* @public
|
|
245
265
|
* <p>The ARN of the control. Only <b>Strongly recommended</b> and <b>Elective</b> controls are permitted,
|
|
246
266
|
* with the exception of the <b>Region deny</b> guardrail.</p>
|
|
247
267
|
*/
|
|
@@ -252,11 +272,13 @@ export interface EnabledControlSummary {
|
|
|
252
272
|
*/
|
|
253
273
|
export interface ListEnabledControlsOutput {
|
|
254
274
|
/**
|
|
275
|
+
* @public
|
|
255
276
|
* <p>Lists the controls enabled by AWS Control Tower on the specified organizational unit and
|
|
256
277
|
* the accounts it contains.</p>
|
|
257
278
|
*/
|
|
258
279
|
enabledControls: EnabledControlSummary[] | undefined;
|
|
259
280
|
/**
|
|
281
|
+
* @public
|
|
260
282
|
* <p>Retrieves the next page of results. If the string is empty, the current response is the
|
|
261
283
|
* end of the results.</p>
|
|
262
284
|
*/
|
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.382.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,15 +21,15 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.382.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.382.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|