@aws-sdk/client-controltower 3.934.0 → 3.935.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 +61 -60
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +95 -0
- package/dist-es/models/models_0.js +1 -155
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +156 -0
- package/dist-types/models/errors.d.ts +105 -0
- package/dist-types/models/models_0.d.ts +1 -261
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +83 -0
- package/dist-types/ts3.4/models/errors.d.ts +56 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -139
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>An unexpected error occurred during processing of a request.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class InternalServerException extends __BaseException {
|
|
20
|
+
readonly name: "InternalServerException";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
$retryable: {};
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
*/
|
|
26
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* <p>The request references a resource that does not exist.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
33
|
+
readonly name: "ResourceNotFoundException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>The request was denied due to request throttling.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ThrottlingException extends __BaseException {
|
|
45
|
+
readonly name: "ThrottlingException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
$retryable: {
|
|
48
|
+
throttling: boolean;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* <p>The ID of the service that is associated with the error.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
serviceCode?: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The ID of the service quota that was exceeded.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
quotaCode?: string | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
retryAfterSeconds?: number | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class ValidationException extends __BaseException {
|
|
75
|
+
readonly name: "ValidationException";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
80
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* <p>Updating or deleting the resource can cause an inconsistent state.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export declare class ConflictException extends __BaseException {
|
|
87
|
+
readonly name: "ConflictException";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* <p>The request would cause a service quota to be exceeded. See <a href="https://docs.aws.amazon.com/controltower/latest/userguide/request-an-increase.html">Service quotas</a>.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
99
|
+
readonly name: "ServiceQuotaExceededException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
104
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
105
|
+
}
|
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
/**
|
|
5
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
-
readonly name: "AccessDeniedException";
|
|
10
|
-
readonly $fault: "client";
|
|
11
|
-
/**
|
|
12
|
-
* @internal
|
|
13
|
-
*/
|
|
14
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
-
}
|
|
2
|
+
import { BaselineOperationStatus, BaselineOperationType, ControlOperationStatus, ControlOperationType, DriftStatus, EnabledBaselineDriftStatus, EnablementStatus, LandingZoneDriftStatus, LandingZoneOperationStatus, LandingZoneOperationType, LandingZoneStatus, RemediationType } from "./enums";
|
|
16
3
|
/**
|
|
17
4
|
* @public
|
|
18
5
|
*/
|
|
@@ -23,33 +10,6 @@ export interface GetBaselineOperationInput {
|
|
|
23
10
|
*/
|
|
24
11
|
operationIdentifier: string | undefined;
|
|
25
12
|
}
|
|
26
|
-
/**
|
|
27
|
-
* @public
|
|
28
|
-
* @enum
|
|
29
|
-
*/
|
|
30
|
-
export declare const BaselineOperationType: {
|
|
31
|
-
readonly DISABLE_BASELINE: "DISABLE_BASELINE";
|
|
32
|
-
readonly ENABLE_BASELINE: "ENABLE_BASELINE";
|
|
33
|
-
readonly RESET_ENABLED_BASELINE: "RESET_ENABLED_BASELINE";
|
|
34
|
-
readonly UPDATE_ENABLED_BASELINE: "UPDATE_ENABLED_BASELINE";
|
|
35
|
-
};
|
|
36
|
-
/**
|
|
37
|
-
* @public
|
|
38
|
-
*/
|
|
39
|
-
export type BaselineOperationType = (typeof BaselineOperationType)[keyof typeof BaselineOperationType];
|
|
40
|
-
/**
|
|
41
|
-
* @public
|
|
42
|
-
* @enum
|
|
43
|
-
*/
|
|
44
|
-
export declare const BaselineOperationStatus: {
|
|
45
|
-
readonly FAILED: "FAILED";
|
|
46
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
47
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
48
|
-
};
|
|
49
|
-
/**
|
|
50
|
-
* @public
|
|
51
|
-
*/
|
|
52
|
-
export type BaselineOperationStatus = (typeof BaselineOperationStatus)[keyof typeof BaselineOperationStatus];
|
|
53
13
|
/**
|
|
54
14
|
* <p>An object of shape <code>BaselineOperation</code>, returning details about the specified <code>Baseline</code> operation ID.</p>
|
|
55
15
|
* @public
|
|
@@ -96,73 +56,6 @@ export interface GetBaselineOperationOutput {
|
|
|
96
56
|
*/
|
|
97
57
|
baselineOperation: BaselineOperation | undefined;
|
|
98
58
|
}
|
|
99
|
-
/**
|
|
100
|
-
* <p>An unexpected error occurred during processing of a request.</p>
|
|
101
|
-
* @public
|
|
102
|
-
*/
|
|
103
|
-
export declare class InternalServerException extends __BaseException {
|
|
104
|
-
readonly name: "InternalServerException";
|
|
105
|
-
readonly $fault: "server";
|
|
106
|
-
$retryable: {};
|
|
107
|
-
/**
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
111
|
-
}
|
|
112
|
-
/**
|
|
113
|
-
* <p>The request references a resource that does not exist.</p>
|
|
114
|
-
* @public
|
|
115
|
-
*/
|
|
116
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
117
|
-
readonly name: "ResourceNotFoundException";
|
|
118
|
-
readonly $fault: "client";
|
|
119
|
-
/**
|
|
120
|
-
* @internal
|
|
121
|
-
*/
|
|
122
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
123
|
-
}
|
|
124
|
-
/**
|
|
125
|
-
* <p>The request was denied due to request throttling.</p>
|
|
126
|
-
* @public
|
|
127
|
-
*/
|
|
128
|
-
export declare class ThrottlingException extends __BaseException {
|
|
129
|
-
readonly name: "ThrottlingException";
|
|
130
|
-
readonly $fault: "client";
|
|
131
|
-
$retryable: {
|
|
132
|
-
throttling: boolean;
|
|
133
|
-
};
|
|
134
|
-
/**
|
|
135
|
-
* <p>The ID of the service that is associated with the error.</p>
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
serviceCode?: string | undefined;
|
|
139
|
-
/**
|
|
140
|
-
* <p>The ID of the service quota that was exceeded.</p>
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
quotaCode?: string | undefined;
|
|
144
|
-
/**
|
|
145
|
-
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
retryAfterSeconds?: number | undefined;
|
|
149
|
-
/**
|
|
150
|
-
* @internal
|
|
151
|
-
*/
|
|
152
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* <p>The input does not satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
export declare class ValidationException extends __BaseException {
|
|
159
|
-
readonly name: "ValidationException";
|
|
160
|
-
readonly $fault: "client";
|
|
161
|
-
/**
|
|
162
|
-
* @internal
|
|
163
|
-
*/
|
|
164
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
165
|
-
}
|
|
166
59
|
/**
|
|
167
60
|
* @public
|
|
168
61
|
*/
|
|
@@ -254,33 +147,6 @@ export interface GetControlOperationInput {
|
|
|
254
147
|
*/
|
|
255
148
|
operationIdentifier: string | undefined;
|
|
256
149
|
}
|
|
257
|
-
/**
|
|
258
|
-
* @public
|
|
259
|
-
* @enum
|
|
260
|
-
*/
|
|
261
|
-
export declare const ControlOperationType: {
|
|
262
|
-
readonly DISABLE_CONTROL: "DISABLE_CONTROL";
|
|
263
|
-
readonly ENABLE_CONTROL: "ENABLE_CONTROL";
|
|
264
|
-
readonly RESET_ENABLED_CONTROL: "RESET_ENABLED_CONTROL";
|
|
265
|
-
readonly UPDATE_ENABLED_CONTROL: "UPDATE_ENABLED_CONTROL";
|
|
266
|
-
};
|
|
267
|
-
/**
|
|
268
|
-
* @public
|
|
269
|
-
*/
|
|
270
|
-
export type ControlOperationType = (typeof ControlOperationType)[keyof typeof ControlOperationType];
|
|
271
|
-
/**
|
|
272
|
-
* @public
|
|
273
|
-
* @enum
|
|
274
|
-
*/
|
|
275
|
-
export declare const ControlOperationStatus: {
|
|
276
|
-
readonly FAILED: "FAILED";
|
|
277
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
278
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
279
|
-
};
|
|
280
|
-
/**
|
|
281
|
-
* @public
|
|
282
|
-
*/
|
|
283
|
-
export type ControlOperationStatus = (typeof ControlOperationStatus)[keyof typeof ControlOperationStatus];
|
|
284
150
|
/**
|
|
285
151
|
* <p>An operation performed by the control.</p>
|
|
286
152
|
* @public
|
|
@@ -459,18 +325,6 @@ export interface ListControlOperationsOutput {
|
|
|
459
325
|
*/
|
|
460
326
|
nextToken?: string | undefined;
|
|
461
327
|
}
|
|
462
|
-
/**
|
|
463
|
-
* <p>Updating or deleting the resource can cause an inconsistent state.</p>
|
|
464
|
-
* @public
|
|
465
|
-
*/
|
|
466
|
-
export declare class ConflictException extends __BaseException {
|
|
467
|
-
readonly name: "ConflictException";
|
|
468
|
-
readonly $fault: "client";
|
|
469
|
-
/**
|
|
470
|
-
* @internal
|
|
471
|
-
*/
|
|
472
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
473
|
-
}
|
|
474
328
|
/**
|
|
475
329
|
* @public
|
|
476
330
|
*/
|
|
@@ -501,18 +355,6 @@ export interface DisableControlOutput {
|
|
|
501
355
|
*/
|
|
502
356
|
operationIdentifier: string | undefined;
|
|
503
357
|
}
|
|
504
|
-
/**
|
|
505
|
-
* <p>The request would cause a service quota to be exceeded. See <a href="https://docs.aws.amazon.com/controltower/latest/userguide/request-an-increase.html">Service quotas</a>.</p>
|
|
506
|
-
* @public
|
|
507
|
-
*/
|
|
508
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
509
|
-
readonly name: "ServiceQuotaExceededException";
|
|
510
|
-
readonly $fault: "client";
|
|
511
|
-
/**
|
|
512
|
-
* @internal
|
|
513
|
-
*/
|
|
514
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
515
|
-
}
|
|
516
358
|
/**
|
|
517
359
|
* @public
|
|
518
360
|
*/
|
|
@@ -604,18 +446,6 @@ export interface GetEnabledBaselineInput {
|
|
|
604
446
|
*/
|
|
605
447
|
enabledBaselineIdentifier: string | undefined;
|
|
606
448
|
}
|
|
607
|
-
/**
|
|
608
|
-
* @public
|
|
609
|
-
* @enum
|
|
610
|
-
*/
|
|
611
|
-
export declare const EnabledBaselineDriftStatus: {
|
|
612
|
-
readonly DRIFTED: "DRIFTED";
|
|
613
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
614
|
-
};
|
|
615
|
-
/**
|
|
616
|
-
* @public
|
|
617
|
-
*/
|
|
618
|
-
export type EnabledBaselineDriftStatus = (typeof EnabledBaselineDriftStatus)[keyof typeof EnabledBaselineDriftStatus];
|
|
619
449
|
/**
|
|
620
450
|
* <p>The inheritance drift summary for the enabled baseline. Inheritance drift occurs when any accounts in the target OU do not match the baseline configuration defined on that OU. </p>
|
|
621
451
|
* @public
|
|
@@ -665,19 +495,6 @@ export interface EnabledBaselineParameterSummary {
|
|
|
665
495
|
*/
|
|
666
496
|
value: __DocumentType | undefined;
|
|
667
497
|
}
|
|
668
|
-
/**
|
|
669
|
-
* @public
|
|
670
|
-
* @enum
|
|
671
|
-
*/
|
|
672
|
-
export declare const EnablementStatus: {
|
|
673
|
-
readonly FAILED: "FAILED";
|
|
674
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
675
|
-
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
676
|
-
};
|
|
677
|
-
/**
|
|
678
|
-
* @public
|
|
679
|
-
*/
|
|
680
|
-
export type EnablementStatus = (typeof EnablementStatus)[keyof typeof EnablementStatus];
|
|
681
498
|
/**
|
|
682
499
|
* <p>The deployment summary of an <code>EnabledControl</code> or <code>EnabledBaseline</code> resource.</p>
|
|
683
500
|
* @public
|
|
@@ -978,20 +795,6 @@ export interface GetEnabledControlInput {
|
|
|
978
795
|
*/
|
|
979
796
|
enabledControlIdentifier: string | undefined;
|
|
980
797
|
}
|
|
981
|
-
/**
|
|
982
|
-
* @public
|
|
983
|
-
* @enum
|
|
984
|
-
*/
|
|
985
|
-
export declare const DriftStatus: {
|
|
986
|
-
readonly DRIFTED: "DRIFTED";
|
|
987
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
988
|
-
readonly NOT_CHECKING: "NOT_CHECKING";
|
|
989
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
990
|
-
};
|
|
991
|
-
/**
|
|
992
|
-
* @public
|
|
993
|
-
*/
|
|
994
|
-
export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
|
|
995
798
|
/**
|
|
996
799
|
* <p>Represents drift information related to control inheritance between organizational units.</p>
|
|
997
800
|
* @public
|
|
@@ -1301,33 +1104,6 @@ export interface GetLandingZoneOperationInput {
|
|
|
1301
1104
|
*/
|
|
1302
1105
|
operationIdentifier: string | undefined;
|
|
1303
1106
|
}
|
|
1304
|
-
/**
|
|
1305
|
-
* @public
|
|
1306
|
-
* @enum
|
|
1307
|
-
*/
|
|
1308
|
-
export declare const LandingZoneOperationType: {
|
|
1309
|
-
readonly CREATE: "CREATE";
|
|
1310
|
-
readonly DELETE: "DELETE";
|
|
1311
|
-
readonly RESET: "RESET";
|
|
1312
|
-
readonly UPDATE: "UPDATE";
|
|
1313
|
-
};
|
|
1314
|
-
/**
|
|
1315
|
-
* @public
|
|
1316
|
-
*/
|
|
1317
|
-
export type LandingZoneOperationType = (typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
|
|
1318
|
-
/**
|
|
1319
|
-
* @public
|
|
1320
|
-
* @enum
|
|
1321
|
-
*/
|
|
1322
|
-
export declare const LandingZoneOperationStatus: {
|
|
1323
|
-
readonly FAILED: "FAILED";
|
|
1324
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1325
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1326
|
-
};
|
|
1327
|
-
/**
|
|
1328
|
-
* @public
|
|
1329
|
-
*/
|
|
1330
|
-
export type LandingZoneOperationStatus = (typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
|
|
1331
1107
|
/**
|
|
1332
1108
|
* <p>Information about a landing zone operation.</p>
|
|
1333
1109
|
* @public
|
|
@@ -1446,17 +1222,6 @@ export interface ListLandingZoneOperationsOutput {
|
|
|
1446
1222
|
*/
|
|
1447
1223
|
nextToken?: string | undefined;
|
|
1448
1224
|
}
|
|
1449
|
-
/**
|
|
1450
|
-
* @public
|
|
1451
|
-
* @enum
|
|
1452
|
-
*/
|
|
1453
|
-
export declare const RemediationType: {
|
|
1454
|
-
readonly INHERITANCE_DRIFT: "INHERITANCE_DRIFT";
|
|
1455
|
-
};
|
|
1456
|
-
/**
|
|
1457
|
-
* @public
|
|
1458
|
-
*/
|
|
1459
|
-
export type RemediationType = (typeof RemediationType)[keyof typeof RemediationType];
|
|
1460
1225
|
/**
|
|
1461
1226
|
* @public
|
|
1462
1227
|
*/
|
|
@@ -1527,18 +1292,6 @@ export interface GetLandingZoneInput {
|
|
|
1527
1292
|
*/
|
|
1528
1293
|
landingZoneIdentifier: string | undefined;
|
|
1529
1294
|
}
|
|
1530
|
-
/**
|
|
1531
|
-
* @public
|
|
1532
|
-
* @enum
|
|
1533
|
-
*/
|
|
1534
|
-
export declare const LandingZoneDriftStatus: {
|
|
1535
|
-
readonly DRIFTED: "DRIFTED";
|
|
1536
|
-
readonly IN_SYNC: "IN_SYNC";
|
|
1537
|
-
};
|
|
1538
|
-
/**
|
|
1539
|
-
* @public
|
|
1540
|
-
*/
|
|
1541
|
-
export type LandingZoneDriftStatus = (typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
|
|
1542
1295
|
/**
|
|
1543
1296
|
* <p>The drift status summary of the landing zone. </p> <p>If the landing zone differs from the expected configuration, it is defined to be in a state of drift. You can repair this drift by resetting the landing zone.</p>
|
|
1544
1297
|
* @public
|
|
@@ -1550,19 +1303,6 @@ export interface LandingZoneDriftStatusSummary {
|
|
|
1550
1303
|
*/
|
|
1551
1304
|
status?: LandingZoneDriftStatus | undefined;
|
|
1552
1305
|
}
|
|
1553
|
-
/**
|
|
1554
|
-
* @public
|
|
1555
|
-
* @enum
|
|
1556
|
-
*/
|
|
1557
|
-
export declare const LandingZoneStatus: {
|
|
1558
|
-
readonly ACTIVE: "ACTIVE";
|
|
1559
|
-
readonly FAILED: "FAILED";
|
|
1560
|
-
readonly PROCESSING: "PROCESSING";
|
|
1561
|
-
};
|
|
1562
|
-
/**
|
|
1563
|
-
* @public
|
|
1564
|
-
*/
|
|
1565
|
-
export type LandingZoneStatus = (typeof LandingZoneStatus)[keyof typeof LandingZoneStatus];
|
|
1566
1306
|
/**
|
|
1567
1307
|
* <p>Information about the landing zone.</p>
|
|
1568
1308
|
* @public
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { ControlTowerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { ControlTowerServiceException } from "./models/ControlTowerServiceException";
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
export declare const BaselineOperationType: {
|
|
2
|
+
readonly DISABLE_BASELINE: "DISABLE_BASELINE";
|
|
3
|
+
readonly ENABLE_BASELINE: "ENABLE_BASELINE";
|
|
4
|
+
readonly RESET_ENABLED_BASELINE: "RESET_ENABLED_BASELINE";
|
|
5
|
+
readonly UPDATE_ENABLED_BASELINE: "UPDATE_ENABLED_BASELINE";
|
|
6
|
+
};
|
|
7
|
+
export type BaselineOperationType =
|
|
8
|
+
(typeof BaselineOperationType)[keyof typeof BaselineOperationType];
|
|
9
|
+
export declare const BaselineOperationStatus: {
|
|
10
|
+
readonly FAILED: "FAILED";
|
|
11
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
12
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
13
|
+
};
|
|
14
|
+
export type BaselineOperationStatus =
|
|
15
|
+
(typeof BaselineOperationStatus)[keyof typeof BaselineOperationStatus];
|
|
16
|
+
export declare const ControlOperationType: {
|
|
17
|
+
readonly DISABLE_CONTROL: "DISABLE_CONTROL";
|
|
18
|
+
readonly ENABLE_CONTROL: "ENABLE_CONTROL";
|
|
19
|
+
readonly RESET_ENABLED_CONTROL: "RESET_ENABLED_CONTROL";
|
|
20
|
+
readonly UPDATE_ENABLED_CONTROL: "UPDATE_ENABLED_CONTROL";
|
|
21
|
+
};
|
|
22
|
+
export type ControlOperationType =
|
|
23
|
+
(typeof ControlOperationType)[keyof typeof ControlOperationType];
|
|
24
|
+
export declare const ControlOperationStatus: {
|
|
25
|
+
readonly FAILED: "FAILED";
|
|
26
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
27
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
28
|
+
};
|
|
29
|
+
export type ControlOperationStatus =
|
|
30
|
+
(typeof ControlOperationStatus)[keyof typeof ControlOperationStatus];
|
|
31
|
+
export declare const EnabledBaselineDriftStatus: {
|
|
32
|
+
readonly DRIFTED: "DRIFTED";
|
|
33
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
34
|
+
};
|
|
35
|
+
export type EnabledBaselineDriftStatus =
|
|
36
|
+
(typeof EnabledBaselineDriftStatus)[keyof typeof EnabledBaselineDriftStatus];
|
|
37
|
+
export declare const EnablementStatus: {
|
|
38
|
+
readonly FAILED: "FAILED";
|
|
39
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
40
|
+
readonly UNDER_CHANGE: "UNDER_CHANGE";
|
|
41
|
+
};
|
|
42
|
+
export type EnablementStatus =
|
|
43
|
+
(typeof EnablementStatus)[keyof typeof EnablementStatus];
|
|
44
|
+
export declare const DriftStatus: {
|
|
45
|
+
readonly DRIFTED: "DRIFTED";
|
|
46
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
47
|
+
readonly NOT_CHECKING: "NOT_CHECKING";
|
|
48
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
49
|
+
};
|
|
50
|
+
export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
|
|
51
|
+
export declare const LandingZoneOperationType: {
|
|
52
|
+
readonly CREATE: "CREATE";
|
|
53
|
+
readonly DELETE: "DELETE";
|
|
54
|
+
readonly RESET: "RESET";
|
|
55
|
+
readonly UPDATE: "UPDATE";
|
|
56
|
+
};
|
|
57
|
+
export type LandingZoneOperationType =
|
|
58
|
+
(typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
|
|
59
|
+
export declare const LandingZoneOperationStatus: {
|
|
60
|
+
readonly FAILED: "FAILED";
|
|
61
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
62
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
63
|
+
};
|
|
64
|
+
export type LandingZoneOperationStatus =
|
|
65
|
+
(typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
|
|
66
|
+
export declare const RemediationType: {
|
|
67
|
+
readonly INHERITANCE_DRIFT: "INHERITANCE_DRIFT";
|
|
68
|
+
};
|
|
69
|
+
export type RemediationType =
|
|
70
|
+
(typeof RemediationType)[keyof typeof RemediationType];
|
|
71
|
+
export declare const LandingZoneDriftStatus: {
|
|
72
|
+
readonly DRIFTED: "DRIFTED";
|
|
73
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
74
|
+
};
|
|
75
|
+
export type LandingZoneDriftStatus =
|
|
76
|
+
(typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
|
|
77
|
+
export declare const LandingZoneStatus: {
|
|
78
|
+
readonly ACTIVE: "ACTIVE";
|
|
79
|
+
readonly FAILED: "FAILED";
|
|
80
|
+
readonly PROCESSING: "PROCESSING";
|
|
81
|
+
};
|
|
82
|
+
export type LandingZoneStatus =
|
|
83
|
+
(typeof LandingZoneStatus)[keyof typeof LandingZoneStatus];
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
$retryable: {};
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
|
+
readonly name: "ResourceNotFoundException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ThrottlingException extends __BaseException {
|
|
26
|
+
readonly name: "ThrottlingException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
$retryable: {
|
|
29
|
+
throttling: boolean;
|
|
30
|
+
};
|
|
31
|
+
serviceCode?: string | undefined;
|
|
32
|
+
quotaCode?: string | undefined;
|
|
33
|
+
retryAfterSeconds?: number | undefined;
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ValidationException extends __BaseException {
|
|
39
|
+
readonly name: "ValidationException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ConflictException extends __BaseException {
|
|
46
|
+
readonly name: "ConflictException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
49
|
+
}
|
|
50
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
51
|
+
readonly name: "ServiceQuotaExceededException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
constructor(
|
|
54
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
55
|
+
);
|
|
56
|
+
}
|