@aws-sdk/client-directory-service 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 +210 -209
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +209 -0
- package/dist-es/models/errors.js +641 -0
- package/dist-es/models/models_0.js +1 -850
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +489 -0
- package/dist-types/models/errors.d.ts +903 -0
- package/dist-types/models/models_0.d.ts +38 -1429
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +261 -0
- package/dist-types/ts3.4/models/errors.d.ts +400 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -661
- 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
|
@@ -6,5 +6,7 @@ export { DirectoryServiceExtensionConfiguration } from "./extensionConfiguration
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
10
12
|
export { DirectoryServiceServiceException } from "./models/DirectoryServiceServiceException";
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
export declare const ShareMethod: {
|
|
2
|
+
readonly HANDSHAKE: "HANDSHAKE";
|
|
3
|
+
readonly ORGANIZATIONS: "ORGANIZATIONS";
|
|
4
|
+
};
|
|
5
|
+
export type ShareMethod = (typeof ShareMethod)[keyof typeof ShareMethod];
|
|
6
|
+
export declare const ShareStatus: {
|
|
7
|
+
readonly DELETED: "Deleted";
|
|
8
|
+
readonly DELETING: "Deleting";
|
|
9
|
+
readonly PENDING_ACCEPTANCE: "PendingAcceptance";
|
|
10
|
+
readonly REJECTED: "Rejected";
|
|
11
|
+
readonly REJECTING: "Rejecting";
|
|
12
|
+
readonly REJECT_FAILED: "RejectFailed";
|
|
13
|
+
readonly SHARED: "Shared";
|
|
14
|
+
readonly SHARE_FAILED: "ShareFailed";
|
|
15
|
+
readonly SHARING: "Sharing";
|
|
16
|
+
};
|
|
17
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
18
|
+
export declare const CaEnrollmentPolicyStatus: {
|
|
19
|
+
readonly DISABLED: "Disabled";
|
|
20
|
+
readonly DISABLING: "Disabling";
|
|
21
|
+
readonly FAILED: "Failed";
|
|
22
|
+
readonly IMPAIRED: "Impaired";
|
|
23
|
+
readonly IN_PROGRESS: "InProgress";
|
|
24
|
+
readonly SUCCESS: "Success";
|
|
25
|
+
};
|
|
26
|
+
export type CaEnrollmentPolicyStatus =
|
|
27
|
+
(typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
|
|
28
|
+
export declare const CertificateState: {
|
|
29
|
+
readonly DEREGISTERED: "Deregistered";
|
|
30
|
+
readonly DEREGISTERING: "Deregistering";
|
|
31
|
+
readonly DEREGISTER_FAILED: "DeregisterFailed";
|
|
32
|
+
readonly REGISTERED: "Registered";
|
|
33
|
+
readonly REGISTERING: "Registering";
|
|
34
|
+
readonly REGISTER_FAILED: "RegisterFailed";
|
|
35
|
+
};
|
|
36
|
+
export type CertificateState =
|
|
37
|
+
(typeof CertificateState)[keyof typeof CertificateState];
|
|
38
|
+
export declare const CertificateType: {
|
|
39
|
+
readonly CLIENT_CERT_AUTH: "ClientCertAuth";
|
|
40
|
+
readonly CLIENT_LDAPS: "ClientLDAPS";
|
|
41
|
+
};
|
|
42
|
+
export type CertificateType =
|
|
43
|
+
(typeof CertificateType)[keyof typeof CertificateType];
|
|
44
|
+
export declare const ClientAuthenticationStatus: {
|
|
45
|
+
readonly DISABLED: "Disabled";
|
|
46
|
+
readonly ENABLED: "Enabled";
|
|
47
|
+
};
|
|
48
|
+
export type ClientAuthenticationStatus =
|
|
49
|
+
(typeof ClientAuthenticationStatus)[keyof typeof ClientAuthenticationStatus];
|
|
50
|
+
export declare const ClientAuthenticationType: {
|
|
51
|
+
readonly SMART_CARD: "SmartCard";
|
|
52
|
+
readonly SMART_CARD_OR_PASSWORD: "SmartCardOrPassword";
|
|
53
|
+
};
|
|
54
|
+
export type ClientAuthenticationType =
|
|
55
|
+
(typeof ClientAuthenticationType)[keyof typeof ClientAuthenticationType];
|
|
56
|
+
export declare const ReplicationScope: {
|
|
57
|
+
readonly Domain: "Domain";
|
|
58
|
+
};
|
|
59
|
+
export type ReplicationScope =
|
|
60
|
+
(typeof ReplicationScope)[keyof typeof ReplicationScope];
|
|
61
|
+
export declare const NetworkType: {
|
|
62
|
+
readonly DUAL_STACK: "Dual-stack";
|
|
63
|
+
readonly IPV4_ONLY: "IPv4";
|
|
64
|
+
readonly IPV6_ONLY: "IPv6";
|
|
65
|
+
};
|
|
66
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
67
|
+
export declare const DirectorySize: {
|
|
68
|
+
readonly LARGE: "Large";
|
|
69
|
+
readonly SMALL: "Small";
|
|
70
|
+
};
|
|
71
|
+
export type DirectorySize = (typeof DirectorySize)[keyof typeof DirectorySize];
|
|
72
|
+
export declare const DirectoryEdition: {
|
|
73
|
+
readonly ENTERPRISE: "Enterprise";
|
|
74
|
+
readonly HYBRID: "Hybrid";
|
|
75
|
+
readonly STANDARD: "Standard";
|
|
76
|
+
};
|
|
77
|
+
export type DirectoryEdition =
|
|
78
|
+
(typeof DirectoryEdition)[keyof typeof DirectoryEdition];
|
|
79
|
+
export declare const SelectiveAuth: {
|
|
80
|
+
readonly DISABLED: "Disabled";
|
|
81
|
+
readonly ENABLED: "Enabled";
|
|
82
|
+
};
|
|
83
|
+
export type SelectiveAuth = (typeof SelectiveAuth)[keyof typeof SelectiveAuth];
|
|
84
|
+
export declare const TrustDirection: {
|
|
85
|
+
readonly ONE_WAY_INCOMING: "One-Way: Incoming";
|
|
86
|
+
readonly ONE_WAY_OUTGOING: "One-Way: Outgoing";
|
|
87
|
+
readonly TWO_WAY: "Two-Way";
|
|
88
|
+
};
|
|
89
|
+
export type TrustDirection =
|
|
90
|
+
(typeof TrustDirection)[keyof typeof TrustDirection];
|
|
91
|
+
export declare const TrustType: {
|
|
92
|
+
readonly EXTERNAL: "External";
|
|
93
|
+
readonly FOREST: "Forest";
|
|
94
|
+
};
|
|
95
|
+
export type TrustType = (typeof TrustType)[keyof typeof TrustType];
|
|
96
|
+
export declare const DataAccessStatus: {
|
|
97
|
+
readonly DISABLED: "Disabled";
|
|
98
|
+
readonly DISABLING: "Disabling";
|
|
99
|
+
readonly ENABLED: "Enabled";
|
|
100
|
+
readonly ENABLING: "Enabling";
|
|
101
|
+
readonly FAILED: "Failed";
|
|
102
|
+
};
|
|
103
|
+
export type DataAccessStatus =
|
|
104
|
+
(typeof DataAccessStatus)[keyof typeof DataAccessStatus];
|
|
105
|
+
export declare const OSVersion: {
|
|
106
|
+
readonly VERSION_2012: "SERVER_2012";
|
|
107
|
+
readonly VERSION_2019: "SERVER_2019";
|
|
108
|
+
};
|
|
109
|
+
export type OSVersion = (typeof OSVersion)[keyof typeof OSVersion];
|
|
110
|
+
export declare const RadiusAuthenticationProtocol: {
|
|
111
|
+
readonly CHAP: "CHAP";
|
|
112
|
+
readonly MSCHAPV1: "MS-CHAPv1";
|
|
113
|
+
readonly MSCHAPV2: "MS-CHAPv2";
|
|
114
|
+
readonly PAP: "PAP";
|
|
115
|
+
};
|
|
116
|
+
export type RadiusAuthenticationProtocol =
|
|
117
|
+
(typeof RadiusAuthenticationProtocol)[keyof typeof RadiusAuthenticationProtocol];
|
|
118
|
+
export declare const RadiusStatus: {
|
|
119
|
+
readonly COMPLETED: "Completed";
|
|
120
|
+
readonly CREATING: "Creating";
|
|
121
|
+
readonly FAILED: "Failed";
|
|
122
|
+
};
|
|
123
|
+
export type RadiusStatus = (typeof RadiusStatus)[keyof typeof RadiusStatus];
|
|
124
|
+
export declare const DirectoryStage: {
|
|
125
|
+
readonly ACTIVE: "Active";
|
|
126
|
+
readonly CREATED: "Created";
|
|
127
|
+
readonly CREATING: "Creating";
|
|
128
|
+
readonly DELETED: "Deleted";
|
|
129
|
+
readonly DELETING: "Deleting";
|
|
130
|
+
readonly FAILED: "Failed";
|
|
131
|
+
readonly IMPAIRED: "Impaired";
|
|
132
|
+
readonly INOPERABLE: "Inoperable";
|
|
133
|
+
readonly REQUESTED: "Requested";
|
|
134
|
+
readonly RESTOREFAILED: "RestoreFailed";
|
|
135
|
+
readonly RESTORING: "Restoring";
|
|
136
|
+
readonly UPDATING: "Updating";
|
|
137
|
+
};
|
|
138
|
+
export type DirectoryStage =
|
|
139
|
+
(typeof DirectoryStage)[keyof typeof DirectoryStage];
|
|
140
|
+
export declare const DirectoryType: {
|
|
141
|
+
readonly AD_CONNECTOR: "ADConnector";
|
|
142
|
+
readonly MICROSOFT_AD: "MicrosoftAD";
|
|
143
|
+
readonly SHARED_MICROSOFT_AD: "SharedMicrosoftAD";
|
|
144
|
+
readonly SIMPLE_AD: "SimpleAD";
|
|
145
|
+
};
|
|
146
|
+
export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
|
|
147
|
+
export declare const DomainControllerStatus: {
|
|
148
|
+
readonly ACTIVE: "Active";
|
|
149
|
+
readonly CREATING: "Creating";
|
|
150
|
+
readonly DELETED: "Deleted";
|
|
151
|
+
readonly DELETING: "Deleting";
|
|
152
|
+
readonly FAILED: "Failed";
|
|
153
|
+
readonly IMPAIRED: "Impaired";
|
|
154
|
+
readonly RESTORING: "Restoring";
|
|
155
|
+
readonly UPDATING: "Updating";
|
|
156
|
+
};
|
|
157
|
+
export type DomainControllerStatus =
|
|
158
|
+
(typeof DomainControllerStatus)[keyof typeof DomainControllerStatus];
|
|
159
|
+
export declare const TopicStatus: {
|
|
160
|
+
readonly DELETED: "Deleted";
|
|
161
|
+
readonly FAILED: "Failed";
|
|
162
|
+
readonly REGISTERED: "Registered";
|
|
163
|
+
readonly TOPIC_NOT_FOUND: "Topic not found";
|
|
164
|
+
};
|
|
165
|
+
export type TopicStatus = (typeof TopicStatus)[keyof typeof TopicStatus];
|
|
166
|
+
export declare const HybridUpdateType: {
|
|
167
|
+
readonly HYBRID_ADMINISTRATOR_ACCOUNT: "HybridAdministratorAccount";
|
|
168
|
+
readonly SELF_MANAGED_INSTANCES: "SelfManagedInstances";
|
|
169
|
+
};
|
|
170
|
+
export type HybridUpdateType =
|
|
171
|
+
(typeof HybridUpdateType)[keyof typeof HybridUpdateType];
|
|
172
|
+
export declare const UpdateStatus: {
|
|
173
|
+
readonly UPDATED: "Updated";
|
|
174
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
175
|
+
readonly UPDATING: "Updating";
|
|
176
|
+
};
|
|
177
|
+
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
178
|
+
export declare const LDAPSType: {
|
|
179
|
+
readonly CLIENT: "Client";
|
|
180
|
+
};
|
|
181
|
+
export type LDAPSType = (typeof LDAPSType)[keyof typeof LDAPSType];
|
|
182
|
+
export declare const LDAPSStatus: {
|
|
183
|
+
readonly DISABLED: "Disabled";
|
|
184
|
+
readonly ENABLED: "Enabled";
|
|
185
|
+
readonly ENABLE_FAILED: "EnableFailed";
|
|
186
|
+
readonly ENABLING: "Enabling";
|
|
187
|
+
};
|
|
188
|
+
export type LDAPSStatus = (typeof LDAPSStatus)[keyof typeof LDAPSStatus];
|
|
189
|
+
export declare const RegionType: {
|
|
190
|
+
readonly ADDITIONAL: "Additional";
|
|
191
|
+
readonly PRIMARY: "Primary";
|
|
192
|
+
};
|
|
193
|
+
export type RegionType = (typeof RegionType)[keyof typeof RegionType];
|
|
194
|
+
export declare const DirectoryConfigurationStatus: {
|
|
195
|
+
readonly DEFAULT: "Default";
|
|
196
|
+
readonly FAILED: "Failed";
|
|
197
|
+
readonly REQUESTED: "Requested";
|
|
198
|
+
readonly UPDATED: "Updated";
|
|
199
|
+
readonly UPDATING: "Updating";
|
|
200
|
+
};
|
|
201
|
+
export type DirectoryConfigurationStatus =
|
|
202
|
+
(typeof DirectoryConfigurationStatus)[keyof typeof DirectoryConfigurationStatus];
|
|
203
|
+
export declare const SnapshotStatus: {
|
|
204
|
+
readonly COMPLETED: "Completed";
|
|
205
|
+
readonly CREATING: "Creating";
|
|
206
|
+
readonly FAILED: "Failed";
|
|
207
|
+
};
|
|
208
|
+
export type SnapshotStatus =
|
|
209
|
+
(typeof SnapshotStatus)[keyof typeof SnapshotStatus];
|
|
210
|
+
export declare const SnapshotType: {
|
|
211
|
+
readonly AUTO: "Auto";
|
|
212
|
+
readonly MANUAL: "Manual";
|
|
213
|
+
};
|
|
214
|
+
export type SnapshotType = (typeof SnapshotType)[keyof typeof SnapshotType];
|
|
215
|
+
export declare const TrustState: {
|
|
216
|
+
readonly CREATED: "Created";
|
|
217
|
+
readonly CREATING: "Creating";
|
|
218
|
+
readonly DELETED: "Deleted";
|
|
219
|
+
readonly DELETING: "Deleting";
|
|
220
|
+
readonly FAILED: "Failed";
|
|
221
|
+
readonly UPDATED: "Updated";
|
|
222
|
+
readonly UPDATE_FAILED: "UpdateFailed";
|
|
223
|
+
readonly UPDATING: "Updating";
|
|
224
|
+
readonly VERIFIED: "Verified";
|
|
225
|
+
readonly VERIFYING: "Verifying";
|
|
226
|
+
readonly VERIFY_FAILED: "VerifyFailed";
|
|
227
|
+
};
|
|
228
|
+
export type TrustState = (typeof TrustState)[keyof typeof TrustState];
|
|
229
|
+
export declare const UpdateType: {
|
|
230
|
+
readonly NETWORK: "NETWORK";
|
|
231
|
+
readonly OS: "OS";
|
|
232
|
+
readonly SIZE: "SIZE";
|
|
233
|
+
};
|
|
234
|
+
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
235
|
+
export declare const IpRouteStatusMsg: {
|
|
236
|
+
readonly ADDED: "Added";
|
|
237
|
+
readonly ADDING: "Adding";
|
|
238
|
+
readonly ADD_FAILED: "AddFailed";
|
|
239
|
+
readonly REMOVED: "Removed";
|
|
240
|
+
readonly REMOVE_FAILED: "RemoveFailed";
|
|
241
|
+
readonly REMOVING: "Removing";
|
|
242
|
+
};
|
|
243
|
+
export type IpRouteStatusMsg =
|
|
244
|
+
(typeof IpRouteStatusMsg)[keyof typeof IpRouteStatusMsg];
|
|
245
|
+
export declare const SchemaExtensionStatus: {
|
|
246
|
+
readonly CANCELLED: "Cancelled";
|
|
247
|
+
readonly CANCEL_IN_PROGRESS: "CancelInProgress";
|
|
248
|
+
readonly COMPLETED: "Completed";
|
|
249
|
+
readonly CREATING_SNAPSHOT: "CreatingSnapshot";
|
|
250
|
+
readonly FAILED: "Failed";
|
|
251
|
+
readonly INITIALIZING: "Initializing";
|
|
252
|
+
readonly REPLICATING: "Replicating";
|
|
253
|
+
readonly ROLLBACK_IN_PROGRESS: "RollbackInProgress";
|
|
254
|
+
readonly UPDATING_SCHEMA: "UpdatingSchema";
|
|
255
|
+
};
|
|
256
|
+
export type SchemaExtensionStatus =
|
|
257
|
+
(typeof SchemaExtensionStatus)[keyof typeof SchemaExtensionStatus];
|
|
258
|
+
export declare const TargetType: {
|
|
259
|
+
readonly ACCOUNT: "ACCOUNT";
|
|
260
|
+
};
|
|
261
|
+
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
@@ -0,0 +1,400 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DirectoryServiceServiceException as __BaseException } from "./DirectoryServiceServiceException";
|
|
3
|
+
export declare class ClientException extends __BaseException {
|
|
4
|
+
readonly name: "ClientException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
RequestId?: string | undefined;
|
|
8
|
+
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
9
|
+
}
|
|
10
|
+
export declare class DirectoryAlreadySharedException extends __BaseException {
|
|
11
|
+
readonly name: "DirectoryAlreadySharedException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
Message?: string | undefined;
|
|
14
|
+
RequestId?: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<
|
|
17
|
+
DirectoryAlreadySharedException,
|
|
18
|
+
__BaseException
|
|
19
|
+
>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class EntityDoesNotExistException extends __BaseException {
|
|
23
|
+
readonly name: "EntityDoesNotExistException";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
Message?: string | undefined;
|
|
26
|
+
RequestId?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<EntityDoesNotExistException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidParameterException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
Message?: string | undefined;
|
|
35
|
+
RequestId?: string | undefined;
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class ServiceException extends __BaseException {
|
|
41
|
+
readonly name: "ServiceException";
|
|
42
|
+
readonly $fault: "server";
|
|
43
|
+
Message?: string | undefined;
|
|
44
|
+
RequestId?: string | undefined;
|
|
45
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
46
|
+
}
|
|
47
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
48
|
+
readonly name: "AccessDeniedException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
Message?: string | undefined;
|
|
51
|
+
RequestId?: string | undefined;
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
export declare class ADAssessmentLimitExceededException extends __BaseException {
|
|
57
|
+
readonly name: "ADAssessmentLimitExceededException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
Message?: string | undefined;
|
|
60
|
+
RequestId?: string | undefined;
|
|
61
|
+
constructor(
|
|
62
|
+
opts: __ExceptionOptionType<
|
|
63
|
+
ADAssessmentLimitExceededException,
|
|
64
|
+
__BaseException
|
|
65
|
+
>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class DirectoryUnavailableException extends __BaseException {
|
|
69
|
+
readonly name: "DirectoryUnavailableException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
RequestId?: string | undefined;
|
|
73
|
+
constructor(
|
|
74
|
+
opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>
|
|
75
|
+
);
|
|
76
|
+
}
|
|
77
|
+
export declare class EntityAlreadyExistsException extends __BaseException {
|
|
78
|
+
readonly name: "EntityAlreadyExistsException";
|
|
79
|
+
readonly $fault: "client";
|
|
80
|
+
Message?: string | undefined;
|
|
81
|
+
RequestId?: string | undefined;
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<EntityAlreadyExistsException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
export declare class IpRouteLimitExceededException extends __BaseException {
|
|
87
|
+
readonly name: "IpRouteLimitExceededException";
|
|
88
|
+
readonly $fault: "client";
|
|
89
|
+
Message?: string | undefined;
|
|
90
|
+
RequestId?: string | undefined;
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<IpRouteLimitExceededException, __BaseException>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
export declare class DirectoryAlreadyInRegionException extends __BaseException {
|
|
96
|
+
readonly name: "DirectoryAlreadyInRegionException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
Message?: string | undefined;
|
|
99
|
+
RequestId?: string | undefined;
|
|
100
|
+
constructor(
|
|
101
|
+
opts: __ExceptionOptionType<
|
|
102
|
+
DirectoryAlreadyInRegionException,
|
|
103
|
+
__BaseException
|
|
104
|
+
>
|
|
105
|
+
);
|
|
106
|
+
}
|
|
107
|
+
export declare class DirectoryDoesNotExistException extends __BaseException {
|
|
108
|
+
readonly name: "DirectoryDoesNotExistException";
|
|
109
|
+
readonly $fault: "client";
|
|
110
|
+
Message?: string | undefined;
|
|
111
|
+
RequestId?: string | undefined;
|
|
112
|
+
constructor(
|
|
113
|
+
opts: __ExceptionOptionType<DirectoryDoesNotExistException, __BaseException>
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
export declare class RegionLimitExceededException extends __BaseException {
|
|
117
|
+
readonly name: "RegionLimitExceededException";
|
|
118
|
+
readonly $fault: "client";
|
|
119
|
+
Message?: string | undefined;
|
|
120
|
+
RequestId?: string | undefined;
|
|
121
|
+
constructor(
|
|
122
|
+
opts: __ExceptionOptionType<RegionLimitExceededException, __BaseException>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
export declare class UnsupportedOperationException extends __BaseException {
|
|
126
|
+
readonly name: "UnsupportedOperationException";
|
|
127
|
+
readonly $fault: "client";
|
|
128
|
+
Message?: string | undefined;
|
|
129
|
+
RequestId?: string | undefined;
|
|
130
|
+
constructor(
|
|
131
|
+
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
132
|
+
);
|
|
133
|
+
}
|
|
134
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
135
|
+
readonly name: "TagLimitExceededException";
|
|
136
|
+
readonly $fault: "client";
|
|
137
|
+
Message?: string | undefined;
|
|
138
|
+
RequestId?: string | undefined;
|
|
139
|
+
constructor(
|
|
140
|
+
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
141
|
+
);
|
|
142
|
+
}
|
|
143
|
+
export declare class AuthenticationFailedException extends __BaseException {
|
|
144
|
+
readonly name: "AuthenticationFailedException";
|
|
145
|
+
readonly $fault: "client";
|
|
146
|
+
Message?: string | undefined;
|
|
147
|
+
RequestId?: string | undefined;
|
|
148
|
+
constructor(
|
|
149
|
+
opts: __ExceptionOptionType<AuthenticationFailedException, __BaseException>
|
|
150
|
+
);
|
|
151
|
+
}
|
|
152
|
+
export declare class CertificateAlreadyExistsException extends __BaseException {
|
|
153
|
+
readonly name: "CertificateAlreadyExistsException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
Message?: string | undefined;
|
|
156
|
+
RequestId?: string | undefined;
|
|
157
|
+
constructor(
|
|
158
|
+
opts: __ExceptionOptionType<
|
|
159
|
+
CertificateAlreadyExistsException,
|
|
160
|
+
__BaseException
|
|
161
|
+
>
|
|
162
|
+
);
|
|
163
|
+
}
|
|
164
|
+
export declare class CertificateDoesNotExistException extends __BaseException {
|
|
165
|
+
readonly name: "CertificateDoesNotExistException";
|
|
166
|
+
readonly $fault: "client";
|
|
167
|
+
Message?: string | undefined;
|
|
168
|
+
RequestId?: string | undefined;
|
|
169
|
+
constructor(
|
|
170
|
+
opts: __ExceptionOptionType<
|
|
171
|
+
CertificateDoesNotExistException,
|
|
172
|
+
__BaseException
|
|
173
|
+
>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
export declare class CertificateInUseException extends __BaseException {
|
|
177
|
+
readonly name: "CertificateInUseException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
Message?: string | undefined;
|
|
180
|
+
RequestId?: string | undefined;
|
|
181
|
+
constructor(
|
|
182
|
+
opts: __ExceptionOptionType<CertificateInUseException, __BaseException>
|
|
183
|
+
);
|
|
184
|
+
}
|
|
185
|
+
export declare class CertificateLimitExceededException extends __BaseException {
|
|
186
|
+
readonly name: "CertificateLimitExceededException";
|
|
187
|
+
readonly $fault: "client";
|
|
188
|
+
Message?: string | undefined;
|
|
189
|
+
RequestId?: string | undefined;
|
|
190
|
+
constructor(
|
|
191
|
+
opts: __ExceptionOptionType<
|
|
192
|
+
CertificateLimitExceededException,
|
|
193
|
+
__BaseException
|
|
194
|
+
>
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
export declare class DirectoryLimitExceededException extends __BaseException {
|
|
198
|
+
readonly name: "DirectoryLimitExceededException";
|
|
199
|
+
readonly $fault: "client";
|
|
200
|
+
Message?: string | undefined;
|
|
201
|
+
RequestId?: string | undefined;
|
|
202
|
+
constructor(
|
|
203
|
+
opts: __ExceptionOptionType<
|
|
204
|
+
DirectoryLimitExceededException,
|
|
205
|
+
__BaseException
|
|
206
|
+
>
|
|
207
|
+
);
|
|
208
|
+
}
|
|
209
|
+
export declare class InsufficientPermissionsException extends __BaseException {
|
|
210
|
+
readonly name: "InsufficientPermissionsException";
|
|
211
|
+
readonly $fault: "client";
|
|
212
|
+
Message?: string | undefined;
|
|
213
|
+
RequestId?: string | undefined;
|
|
214
|
+
constructor(
|
|
215
|
+
opts: __ExceptionOptionType<
|
|
216
|
+
InsufficientPermissionsException,
|
|
217
|
+
__BaseException
|
|
218
|
+
>
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
export declare class SnapshotLimitExceededException extends __BaseException {
|
|
222
|
+
readonly name: "SnapshotLimitExceededException";
|
|
223
|
+
readonly $fault: "client";
|
|
224
|
+
Message?: string | undefined;
|
|
225
|
+
RequestId?: string | undefined;
|
|
226
|
+
constructor(
|
|
227
|
+
opts: __ExceptionOptionType<SnapshotLimitExceededException, __BaseException>
|
|
228
|
+
);
|
|
229
|
+
}
|
|
230
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
231
|
+
readonly name: "InvalidNextTokenException";
|
|
232
|
+
readonly $fault: "client";
|
|
233
|
+
Message?: string | undefined;
|
|
234
|
+
RequestId?: string | undefined;
|
|
235
|
+
constructor(
|
|
236
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
export declare class DirectoryInDesiredStateException extends __BaseException {
|
|
240
|
+
readonly name: "DirectoryInDesiredStateException";
|
|
241
|
+
readonly $fault: "client";
|
|
242
|
+
Message?: string | undefined;
|
|
243
|
+
RequestId?: string | undefined;
|
|
244
|
+
constructor(
|
|
245
|
+
opts: __ExceptionOptionType<
|
|
246
|
+
DirectoryInDesiredStateException,
|
|
247
|
+
__BaseException
|
|
248
|
+
>
|
|
249
|
+
);
|
|
250
|
+
}
|
|
251
|
+
export declare class DirectoryNotSharedException extends __BaseException {
|
|
252
|
+
readonly name: "DirectoryNotSharedException";
|
|
253
|
+
readonly $fault: "client";
|
|
254
|
+
Message?: string | undefined;
|
|
255
|
+
RequestId?: string | undefined;
|
|
256
|
+
constructor(
|
|
257
|
+
opts: __ExceptionOptionType<DirectoryNotSharedException, __BaseException>
|
|
258
|
+
);
|
|
259
|
+
}
|
|
260
|
+
export declare class DisableAlreadyInProgressException extends __BaseException {
|
|
261
|
+
readonly name: "DisableAlreadyInProgressException";
|
|
262
|
+
readonly $fault: "client";
|
|
263
|
+
Message?: string | undefined;
|
|
264
|
+
RequestId?: string | undefined;
|
|
265
|
+
constructor(
|
|
266
|
+
opts: __ExceptionOptionType<
|
|
267
|
+
DisableAlreadyInProgressException,
|
|
268
|
+
__BaseException
|
|
269
|
+
>
|
|
270
|
+
);
|
|
271
|
+
}
|
|
272
|
+
export declare class InvalidClientAuthStatusException extends __BaseException {
|
|
273
|
+
readonly name: "InvalidClientAuthStatusException";
|
|
274
|
+
readonly $fault: "client";
|
|
275
|
+
Message?: string | undefined;
|
|
276
|
+
RequestId?: string | undefined;
|
|
277
|
+
constructor(
|
|
278
|
+
opts: __ExceptionOptionType<
|
|
279
|
+
InvalidClientAuthStatusException,
|
|
280
|
+
__BaseException
|
|
281
|
+
>
|
|
282
|
+
);
|
|
283
|
+
}
|
|
284
|
+
export declare class InvalidLDAPSStatusException extends __BaseException {
|
|
285
|
+
readonly name: "InvalidLDAPSStatusException";
|
|
286
|
+
readonly $fault: "client";
|
|
287
|
+
Message?: string | undefined;
|
|
288
|
+
RequestId?: string | undefined;
|
|
289
|
+
constructor(
|
|
290
|
+
opts: __ExceptionOptionType<InvalidLDAPSStatusException, __BaseException>
|
|
291
|
+
);
|
|
292
|
+
}
|
|
293
|
+
export declare class EnableAlreadyInProgressException extends __BaseException {
|
|
294
|
+
readonly name: "EnableAlreadyInProgressException";
|
|
295
|
+
readonly $fault: "client";
|
|
296
|
+
Message?: string | undefined;
|
|
297
|
+
RequestId?: string | undefined;
|
|
298
|
+
constructor(
|
|
299
|
+
opts: __ExceptionOptionType<
|
|
300
|
+
EnableAlreadyInProgressException,
|
|
301
|
+
__BaseException
|
|
302
|
+
>
|
|
303
|
+
);
|
|
304
|
+
}
|
|
305
|
+
export declare class NoAvailableCertificateException extends __BaseException {
|
|
306
|
+
readonly name: "NoAvailableCertificateException";
|
|
307
|
+
readonly $fault: "client";
|
|
308
|
+
Message?: string | undefined;
|
|
309
|
+
RequestId?: string | undefined;
|
|
310
|
+
constructor(
|
|
311
|
+
opts: __ExceptionOptionType<
|
|
312
|
+
NoAvailableCertificateException,
|
|
313
|
+
__BaseException
|
|
314
|
+
>
|
|
315
|
+
);
|
|
316
|
+
}
|
|
317
|
+
export declare class InvalidCertificateException extends __BaseException {
|
|
318
|
+
readonly name: "InvalidCertificateException";
|
|
319
|
+
readonly $fault: "client";
|
|
320
|
+
Message?: string | undefined;
|
|
321
|
+
RequestId?: string | undefined;
|
|
322
|
+
constructor(
|
|
323
|
+
opts: __ExceptionOptionType<InvalidCertificateException, __BaseException>
|
|
324
|
+
);
|
|
325
|
+
}
|
|
326
|
+
export declare class InvalidPasswordException extends __BaseException {
|
|
327
|
+
readonly name: "InvalidPasswordException";
|
|
328
|
+
readonly $fault: "client";
|
|
329
|
+
Message?: string | undefined;
|
|
330
|
+
RequestId?: string | undefined;
|
|
331
|
+
constructor(
|
|
332
|
+
opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
export declare class UserDoesNotExistException extends __BaseException {
|
|
336
|
+
readonly name: "UserDoesNotExistException";
|
|
337
|
+
readonly $fault: "client";
|
|
338
|
+
Message?: string | undefined;
|
|
339
|
+
RequestId?: string | undefined;
|
|
340
|
+
constructor(
|
|
341
|
+
opts: __ExceptionOptionType<UserDoesNotExistException, __BaseException>
|
|
342
|
+
);
|
|
343
|
+
}
|
|
344
|
+
export declare class InvalidTargetException extends __BaseException {
|
|
345
|
+
readonly name: "InvalidTargetException";
|
|
346
|
+
readonly $fault: "client";
|
|
347
|
+
Message?: string | undefined;
|
|
348
|
+
RequestId?: string | undefined;
|
|
349
|
+
constructor(
|
|
350
|
+
opts: __ExceptionOptionType<InvalidTargetException, __BaseException>
|
|
351
|
+
);
|
|
352
|
+
}
|
|
353
|
+
export declare class OrganizationsException extends __BaseException {
|
|
354
|
+
readonly name: "OrganizationsException";
|
|
355
|
+
readonly $fault: "client";
|
|
356
|
+
Message?: string | undefined;
|
|
357
|
+
RequestId?: string | undefined;
|
|
358
|
+
constructor(
|
|
359
|
+
opts: __ExceptionOptionType<OrganizationsException, __BaseException>
|
|
360
|
+
);
|
|
361
|
+
}
|
|
362
|
+
export declare class ShareLimitExceededException extends __BaseException {
|
|
363
|
+
readonly name: "ShareLimitExceededException";
|
|
364
|
+
readonly $fault: "client";
|
|
365
|
+
Message?: string | undefined;
|
|
366
|
+
RequestId?: string | undefined;
|
|
367
|
+
constructor(
|
|
368
|
+
opts: __ExceptionOptionType<ShareLimitExceededException, __BaseException>
|
|
369
|
+
);
|
|
370
|
+
}
|
|
371
|
+
export declare class DomainControllerLimitExceededException extends __BaseException {
|
|
372
|
+
readonly name: "DomainControllerLimitExceededException";
|
|
373
|
+
readonly $fault: "client";
|
|
374
|
+
Message?: string | undefined;
|
|
375
|
+
RequestId?: string | undefined;
|
|
376
|
+
constructor(
|
|
377
|
+
opts: __ExceptionOptionType<
|
|
378
|
+
DomainControllerLimitExceededException,
|
|
379
|
+
__BaseException
|
|
380
|
+
>
|
|
381
|
+
);
|
|
382
|
+
}
|
|
383
|
+
export declare class IncompatibleSettingsException extends __BaseException {
|
|
384
|
+
readonly name: "IncompatibleSettingsException";
|
|
385
|
+
readonly $fault: "client";
|
|
386
|
+
Message?: string | undefined;
|
|
387
|
+
RequestId?: string | undefined;
|
|
388
|
+
constructor(
|
|
389
|
+
opts: __ExceptionOptionType<IncompatibleSettingsException, __BaseException>
|
|
390
|
+
);
|
|
391
|
+
}
|
|
392
|
+
export declare class UnsupportedSettingsException extends __BaseException {
|
|
393
|
+
readonly name: "UnsupportedSettingsException";
|
|
394
|
+
readonly $fault: "client";
|
|
395
|
+
Message?: string | undefined;
|
|
396
|
+
RequestId?: string | undefined;
|
|
397
|
+
constructor(
|
|
398
|
+
opts: __ExceptionOptionType<UnsupportedSettingsException, __BaseException>
|
|
399
|
+
);
|
|
400
|
+
}
|