@aws-sdk/client-pca-connector-ad 3.933.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.
@@ -0,0 +1,336 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const AccessRight: {
6
+ readonly ALLOW: "ALLOW";
7
+ readonly DENY: "DENY";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type AccessRight = (typeof AccessRight)[keyof typeof AccessRight];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ApplicationPolicyType: {
18
+ readonly ALL_APPLICATION_POLICIES: "ALL_APPLICATION_POLICIES";
19
+ readonly ANY_PURPOSE: "ANY_PURPOSE";
20
+ readonly ATTESTATION_IDENTITY_KEY_CERTIFICATE: "ATTESTATION_IDENTITY_KEY_CERTIFICATE";
21
+ readonly CERTIFICATE_REQUEST_AGENT: "CERTIFICATE_REQUEST_AGENT";
22
+ readonly CLIENT_AUTHENTICATION: "CLIENT_AUTHENTICATION";
23
+ readonly CODE_SIGNING: "CODE_SIGNING";
24
+ readonly CTL_USAGE: "CTL_USAGE";
25
+ readonly DIGITAL_RIGHTS: "DIGITAL_RIGHTS";
26
+ readonly DIRECTORY_SERVICE_EMAIL_REPLICATION: "DIRECTORY_SERVICE_EMAIL_REPLICATION";
27
+ readonly DISALLOWED_LIST: "DISALLOWED_LIST";
28
+ readonly DNS_SERVER_TRUST: "DNS_SERVER_TRUST";
29
+ readonly DOCUMENT_ENCRYPTION: "DOCUMENT_ENCRYPTION";
30
+ readonly DOCUMENT_SIGNING: "DOCUMENT_SIGNING";
31
+ readonly DYNAMIC_CODE_GENERATOR: "DYNAMIC_CODE_GENERATOR";
32
+ readonly EARLY_LAUNCH_ANTIMALWARE_DRIVER: "EARLY_LAUNCH_ANTIMALWARE_DRIVER";
33
+ readonly EMBEDDED_WINDOWS_SYSTEM_COMPONENT_VERIFICATION: "EMBEDDED_WINDOWS_SYSTEM_COMPONENT_VERIFICATION";
34
+ readonly ENCLAVE: "ENCLAVE";
35
+ readonly ENCRYPTING_FILE_SYSTEM: "ENCRYPTING_FILE_SYSTEM";
36
+ readonly ENDORSEMENT_KEY_CERTIFICATE: "ENDORSEMENT_KEY_CERTIFICATE";
37
+ readonly FILE_RECOVERY: "FILE_RECOVERY";
38
+ readonly HAL_EXTENSION: "HAL_EXTENSION";
39
+ readonly IP_SECURITY_END_SYSTEM: "IP_SECURITY_END_SYSTEM";
40
+ readonly IP_SECURITY_IKE_INTERMEDIATE: "IP_SECURITY_IKE_INTERMEDIATE";
41
+ readonly IP_SECURITY_TUNNEL_TERMINATION: "IP_SECURITY_TUNNEL_TERMINATION";
42
+ readonly IP_SECURITY_USER: "IP_SECURITY_USER";
43
+ readonly ISOLATED_USER_MODE: "ISOLATED_USER_MODE";
44
+ readonly KDC_AUTHENTICATION: "KDC_AUTHENTICATION";
45
+ readonly KERNEL_MODE_CODE_SIGNING: "KERNEL_MODE_CODE_SIGNING";
46
+ readonly KEY_PACK_LICENSES: "KEY_PACK_LICENSES";
47
+ readonly KEY_RECOVERY: "KEY_RECOVERY";
48
+ readonly KEY_RECOVERY_AGENT: "KEY_RECOVERY_AGENT";
49
+ readonly LICENSE_SERVER_VERIFICATION: "LICENSE_SERVER_VERIFICATION";
50
+ readonly LIFETIME_SIGNING: "LIFETIME_SIGNING";
51
+ readonly MICROSOFT_PUBLISHER: "MICROSOFT_PUBLISHER";
52
+ readonly MICROSOFT_TIME_STAMPING: "MICROSOFT_TIME_STAMPING";
53
+ readonly MICROSOFT_TRUST_LIST_SIGNING: "MICROSOFT_TRUST_LIST_SIGNING";
54
+ readonly OCSP_SIGNING: "OCSP_SIGNING";
55
+ readonly OEM_WINDOWS_SYSTEM_COMPONENT_VERIFICATION: "OEM_WINDOWS_SYSTEM_COMPONENT_VERIFICATION";
56
+ readonly PLATFORM_CERTIFICATE: "PLATFORM_CERTIFICATE";
57
+ readonly PREVIEW_BUILD_SIGNING: "PREVIEW_BUILD_SIGNING";
58
+ readonly PRIVATE_KEY_ARCHIVAL: "PRIVATE_KEY_ARCHIVAL";
59
+ readonly PROTECTED_PROCESS_LIGHT_VERIFICATION: "PROTECTED_PROCESS_LIGHT_VERIFICATION";
60
+ readonly PROTECTED_PROCESS_VERIFICATION: "PROTECTED_PROCESS_VERIFICATION";
61
+ readonly QUALIFIED_SUBORDINATION: "QUALIFIED_SUBORDINATION";
62
+ readonly REVOKED_LIST_SIGNER: "REVOKED_LIST_SIGNER";
63
+ readonly ROOT_LIST_SIGNER: "ROOT_LIST_SIGNER";
64
+ readonly ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION: "ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION";
65
+ readonly ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION: "ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION";
66
+ readonly ROOT_PROGRAM_NO_OSCP_FAILOVER_TO_CRL: "ROOT_PROGRAM_NO_OSCP_FAILOVER_TO_CRL";
67
+ readonly SECURE_EMAIL: "SECURE_EMAIL";
68
+ readonly SERVER_AUTHENTICATION: "SERVER_AUTHENTICATION";
69
+ readonly SMART_CARD_LOGIN: "SMART_CARD_LOGIN";
70
+ readonly SPC_ENCRYPTED_DIGEST_RETRY_COUNT: "SPC_ENCRYPTED_DIGEST_RETRY_COUNT";
71
+ readonly SPC_RELAXED_PE_MARKER_CHECK: "SPC_RELAXED_PE_MARKER_CHECK";
72
+ readonly TIME_STAMPING: "TIME_STAMPING";
73
+ readonly WINDOWS_HARDWARE_DRIVER_ATTESTED_VERIFICATION: "WINDOWS_HARDWARE_DRIVER_ATTESTED_VERIFICATION";
74
+ readonly WINDOWS_HARDWARE_DRIVER_EXTENDED_VERIFICATION: "WINDOWS_HARDWARE_DRIVER_EXTENDED_VERIFICATION";
75
+ readonly WINDOWS_HARDWARE_DRIVER_VERIFICATION: "WINDOWS_HARDWARE_DRIVER_VERIFICATION";
76
+ readonly WINDOWS_HELLO_RECOVERY_KEY_ENCRYPTION: "WINDOWS_HELLO_RECOVERY_KEY_ENCRYPTION";
77
+ readonly WINDOWS_KITS_COMPONENT: "WINDOWS_KITS_COMPONENT";
78
+ readonly WINDOWS_RT_VERIFICATION: "WINDOWS_RT_VERIFICATION";
79
+ readonly WINDOWS_SOFTWARE_EXTENSION_VERIFICATION: "WINDOWS_SOFTWARE_EXTENSION_VERIFICATION";
80
+ readonly WINDOWS_STORE: "WINDOWS_STORE";
81
+ readonly WINDOWS_SYSTEM_COMPONENT_VERIFICATION: "WINDOWS_SYSTEM_COMPONENT_VERIFICATION";
82
+ readonly WINDOWS_TCB_COMPONENT: "WINDOWS_TCB_COMPONENT";
83
+ readonly WINDOWS_THIRD_PARTY_APPLICATION_COMPONENT: "WINDOWS_THIRD_PARTY_APPLICATION_COMPONENT";
84
+ readonly WINDOWS_UPDATE: "WINDOWS_UPDATE";
85
+ };
86
+ /**
87
+ * @public
88
+ */
89
+ export type ApplicationPolicyType = (typeof ApplicationPolicyType)[keyof typeof ApplicationPolicyType];
90
+ /**
91
+ * @public
92
+ * @enum
93
+ */
94
+ export declare const ValidityPeriodType: {
95
+ readonly DAYS: "DAYS";
96
+ readonly HOURS: "HOURS";
97
+ readonly MONTHS: "MONTHS";
98
+ readonly WEEKS: "WEEKS";
99
+ readonly YEARS: "YEARS";
100
+ };
101
+ /**
102
+ * @public
103
+ */
104
+ export type ValidityPeriodType = (typeof ValidityPeriodType)[keyof typeof ValidityPeriodType];
105
+ /**
106
+ * @public
107
+ * @enum
108
+ */
109
+ export declare const ClientCompatibilityV2: {
110
+ readonly WINDOWS_SERVER_2003: "WINDOWS_SERVER_2003";
111
+ readonly WINDOWS_SERVER_2008: "WINDOWS_SERVER_2008";
112
+ readonly WINDOWS_SERVER_2008_R2: "WINDOWS_SERVER_2008_R2";
113
+ readonly WINDOWS_SERVER_2012: "WINDOWS_SERVER_2012";
114
+ readonly WINDOWS_SERVER_2012_R2: "WINDOWS_SERVER_2012_R2";
115
+ readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type ClientCompatibilityV2 = (typeof ClientCompatibilityV2)[keyof typeof ClientCompatibilityV2];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const ClientCompatibilityV3: {
126
+ readonly WINDOWS_SERVER_2008: "WINDOWS_SERVER_2008";
127
+ readonly WINDOWS_SERVER_2008_R2: "WINDOWS_SERVER_2008_R2";
128
+ readonly WINDOWS_SERVER_2012: "WINDOWS_SERVER_2012";
129
+ readonly WINDOWS_SERVER_2012_R2: "WINDOWS_SERVER_2012_R2";
130
+ readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
131
+ };
132
+ /**
133
+ * @public
134
+ */
135
+ export type ClientCompatibilityV3 = (typeof ClientCompatibilityV3)[keyof typeof ClientCompatibilityV3];
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const ClientCompatibilityV4: {
141
+ readonly WINDOWS_SERVER_2012: "WINDOWS_SERVER_2012";
142
+ readonly WINDOWS_SERVER_2012_R2: "WINDOWS_SERVER_2012_R2";
143
+ readonly WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016";
144
+ };
145
+ /**
146
+ * @public
147
+ */
148
+ export type ClientCompatibilityV4 = (typeof ClientCompatibilityV4)[keyof typeof ClientCompatibilityV4];
149
+ /**
150
+ * @public
151
+ * @enum
152
+ */
153
+ export declare const ConnectorStatus: {
154
+ readonly ACTIVE: "ACTIVE";
155
+ readonly CREATING: "CREATING";
156
+ readonly DELETING: "DELETING";
157
+ readonly FAILED: "FAILED";
158
+ };
159
+ /**
160
+ * @public
161
+ */
162
+ export type ConnectorStatus = (typeof ConnectorStatus)[keyof typeof ConnectorStatus];
163
+ /**
164
+ * @public
165
+ * @enum
166
+ */
167
+ export declare const ConnectorStatusReason: {
168
+ readonly CA_CERTIFICATE_REGISTRATION_FAILED: "CA_CERTIFICATE_REGISTRATION_FAILED";
169
+ readonly DIRECTORY_ACCESS_DENIED: "DIRECTORY_ACCESS_DENIED";
170
+ readonly INSUFFICIENT_FREE_ADDRESSES: "INSUFFICIENT_FREE_ADDRESSES";
171
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
172
+ readonly INVALID_SUBNET_IP_PROTOCOL: "INVALID_SUBNET_IP_PROTOCOL";
173
+ readonly PRIVATECA_ACCESS_DENIED: "PRIVATECA_ACCESS_DENIED";
174
+ readonly PRIVATECA_RESOURCE_NOT_FOUND: "PRIVATECA_RESOURCE_NOT_FOUND";
175
+ readonly SECURITY_GROUP_NOT_IN_VPC: "SECURITY_GROUP_NOT_IN_VPC";
176
+ readonly VPC_ACCESS_DENIED: "VPC_ACCESS_DENIED";
177
+ readonly VPC_ENDPOINT_LIMIT_EXCEEDED: "VPC_ENDPOINT_LIMIT_EXCEEDED";
178
+ readonly VPC_RESOURCE_NOT_FOUND: "VPC_RESOURCE_NOT_FOUND";
179
+ };
180
+ /**
181
+ * @public
182
+ */
183
+ export type ConnectorStatusReason = (typeof ConnectorStatusReason)[keyof typeof ConnectorStatusReason];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const IpAddressType: {
189
+ readonly DUALSTACK: "DUALSTACK";
190
+ readonly IPV4: "IPV4";
191
+ };
192
+ /**
193
+ * @public
194
+ */
195
+ export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
196
+ /**
197
+ * @public
198
+ * @enum
199
+ */
200
+ export declare const ValidationExceptionReason: {
201
+ readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
202
+ readonly INVALID_CA_SUBJECT: "INVALID_CA_SUBJECT";
203
+ readonly INVALID_PERMISSION: "INVALID_PERMISSION";
204
+ readonly INVALID_STATE: "INVALID_STATE";
205
+ readonly MISMATCHED_CONNECTOR: "MISMATCHED_CONNECTOR";
206
+ readonly MISMATCHED_VPC: "MISMATCHED_VPC";
207
+ readonly NO_CLIENT_TOKEN: "NO_CLIENT_TOKEN";
208
+ readonly OTHER: "OTHER";
209
+ readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
210
+ };
211
+ /**
212
+ * @public
213
+ */
214
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
215
+ /**
216
+ * @public
217
+ * @enum
218
+ */
219
+ export declare const KeySpec: {
220
+ readonly KEY_EXCHANGE: "KEY_EXCHANGE";
221
+ readonly SIGNATURE: "SIGNATURE";
222
+ };
223
+ /**
224
+ * @public
225
+ */
226
+ export type KeySpec = (typeof KeySpec)[keyof typeof KeySpec];
227
+ /**
228
+ * @public
229
+ * @enum
230
+ */
231
+ export declare const HashAlgorithm: {
232
+ readonly SHA256: "SHA256";
233
+ readonly SHA384: "SHA384";
234
+ readonly SHA512: "SHA512";
235
+ };
236
+ /**
237
+ * @public
238
+ */
239
+ export type HashAlgorithm = (typeof HashAlgorithm)[keyof typeof HashAlgorithm];
240
+ /**
241
+ * @public
242
+ * @enum
243
+ */
244
+ export declare const PrivateKeyAlgorithm: {
245
+ readonly ECDH_P256: "ECDH_P256";
246
+ readonly ECDH_P384: "ECDH_P384";
247
+ readonly ECDH_P521: "ECDH_P521";
248
+ readonly RSA: "RSA";
249
+ };
250
+ /**
251
+ * @public
252
+ */
253
+ export type PrivateKeyAlgorithm = (typeof PrivateKeyAlgorithm)[keyof typeof PrivateKeyAlgorithm];
254
+ /**
255
+ * @public
256
+ * @enum
257
+ */
258
+ export declare const KeyUsagePropertyType: {
259
+ readonly ALL: "ALL";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type KeyUsagePropertyType = (typeof KeyUsagePropertyType)[keyof typeof KeyUsagePropertyType];
265
+ /**
266
+ * @public
267
+ * @enum
268
+ */
269
+ export declare const DirectoryRegistrationStatus: {
270
+ readonly ACTIVE: "ACTIVE";
271
+ readonly CREATING: "CREATING";
272
+ readonly DELETING: "DELETING";
273
+ readonly FAILED: "FAILED";
274
+ };
275
+ /**
276
+ * @public
277
+ */
278
+ export type DirectoryRegistrationStatus = (typeof DirectoryRegistrationStatus)[keyof typeof DirectoryRegistrationStatus];
279
+ /**
280
+ * @public
281
+ * @enum
282
+ */
283
+ export declare const DirectoryRegistrationStatusReason: {
284
+ readonly DIRECTORY_ACCESS_DENIED: "DIRECTORY_ACCESS_DENIED";
285
+ readonly DIRECTORY_NOT_ACTIVE: "DIRECTORY_NOT_ACTIVE";
286
+ readonly DIRECTORY_NOT_REACHABLE: "DIRECTORY_NOT_REACHABLE";
287
+ readonly DIRECTORY_RESOURCE_NOT_FOUND: "DIRECTORY_RESOURCE_NOT_FOUND";
288
+ readonly DIRECTORY_TYPE_NOT_SUPPORTED: "DIRECTORY_TYPE_NOT_SUPPORTED";
289
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
290
+ };
291
+ /**
292
+ * @public
293
+ */
294
+ export type DirectoryRegistrationStatusReason = (typeof DirectoryRegistrationStatusReason)[keyof typeof DirectoryRegistrationStatusReason];
295
+ /**
296
+ * @public
297
+ * @enum
298
+ */
299
+ export declare const ServicePrincipalNameStatus: {
300
+ readonly ACTIVE: "ACTIVE";
301
+ readonly CREATING: "CREATING";
302
+ readonly DELETING: "DELETING";
303
+ readonly FAILED: "FAILED";
304
+ };
305
+ /**
306
+ * @public
307
+ */
308
+ export type ServicePrincipalNameStatus = (typeof ServicePrincipalNameStatus)[keyof typeof ServicePrincipalNameStatus];
309
+ /**
310
+ * @public
311
+ * @enum
312
+ */
313
+ export declare const ServicePrincipalNameStatusReason: {
314
+ readonly DIRECTORY_ACCESS_DENIED: "DIRECTORY_ACCESS_DENIED";
315
+ readonly DIRECTORY_NOT_REACHABLE: "DIRECTORY_NOT_REACHABLE";
316
+ readonly DIRECTORY_RESOURCE_NOT_FOUND: "DIRECTORY_RESOURCE_NOT_FOUND";
317
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
318
+ readonly SPN_EXISTS_ON_DIFFERENT_AD_OBJECT: "SPN_EXISTS_ON_DIFFERENT_AD_OBJECT";
319
+ readonly SPN_LIMIT_EXCEEDED: "SPN_LIMIT_EXCEEDED";
320
+ };
321
+ /**
322
+ * @public
323
+ */
324
+ export type ServicePrincipalNameStatusReason = (typeof ServicePrincipalNameStatusReason)[keyof typeof ServicePrincipalNameStatusReason];
325
+ /**
326
+ * @public
327
+ * @enum
328
+ */
329
+ export declare const TemplateStatus: {
330
+ readonly ACTIVE: "ACTIVE";
331
+ readonly DELETING: "DELETING";
332
+ };
333
+ /**
334
+ * @public
335
+ */
336
+ export type TemplateStatus = (typeof TemplateStatus)[keyof typeof TemplateStatus];
@@ -0,0 +1,162 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { PcaConnectorAdServiceException as __BaseException } from "./PcaConnectorAdServiceException";
4
+ /**
5
+ * <p>You can receive this error if you attempt to create a resource share when you don't have
6
+ * the required permissions. This can be caused by insufficient permissions in policies
7
+ * attached to your Amazon Web Services Identity and Access Management (IAM) principal. It can also happen
8
+ * because of restrictions in place from an Amazon Web Services Organizations service control policy (SCP)
9
+ * that affects your Amazon Web Services account. </p>
10
+ * @public
11
+ */
12
+ export declare class AccessDeniedException extends __BaseException {
13
+ readonly name: "AccessDeniedException";
14
+ readonly $fault: "client";
15
+ Message: string | undefined;
16
+ /**
17
+ * @internal
18
+ */
19
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
20
+ }
21
+ /**
22
+ * <p>This request cannot be completed for one of the following reasons because the requested
23
+ * resource was being concurrently modified by another request.</p>
24
+ * @public
25
+ */
26
+ export declare class ConflictException extends __BaseException {
27
+ readonly name: "ConflictException";
28
+ readonly $fault: "client";
29
+ Message: string | undefined;
30
+ /**
31
+ * <p>The identifier of the Amazon Web Services resource.</p>
32
+ * @public
33
+ */
34
+ ResourceId: string | undefined;
35
+ /**
36
+ * <p>The resource type, which can be one of <code>Connector</code>, <code>Template</code>, <code>TemplateGroupAccessControlEntry</code>, <code>ServicePrincipalName</code>, or <code>DirectoryRegistration</code>.</p>
37
+ * @public
38
+ */
39
+ ResourceType: string | undefined;
40
+ /**
41
+ * @internal
42
+ */
43
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
44
+ }
45
+ /**
46
+ * <p>The request processing has failed because of an unknown error, exception or failure with
47
+ * an internal server. </p>
48
+ * @public
49
+ */
50
+ export declare class InternalServerException extends __BaseException {
51
+ readonly name: "InternalServerException";
52
+ readonly $fault: "server";
53
+ $retryable: {};
54
+ Message: string | undefined;
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>The operation tried to access a nonexistent resource. The resource might not be
62
+ * specified correctly, or its status might not be ACTIVE.</p>
63
+ * @public
64
+ */
65
+ export declare class ResourceNotFoundException extends __BaseException {
66
+ readonly name: "ResourceNotFoundException";
67
+ readonly $fault: "client";
68
+ Message: string | undefined;
69
+ /**
70
+ * <p>The identifier of the Amazon Web Services resource.</p>
71
+ * @public
72
+ */
73
+ ResourceId: string | undefined;
74
+ /**
75
+ * <p>The resource type, which can be one of <code>Connector</code>, <code>Template</code>, <code>TemplateGroupAccessControlEntry</code>, <code>ServicePrincipalName</code>, or <code>DirectoryRegistration</code>.</p>
76
+ * @public
77
+ */
78
+ ResourceType: string | undefined;
79
+ /**
80
+ * @internal
81
+ */
82
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
83
+ }
84
+ /**
85
+ * <p>Request would cause a service quota to be exceeded.</p>
86
+ * @public
87
+ */
88
+ export declare class ServiceQuotaExceededException extends __BaseException {
89
+ readonly name: "ServiceQuotaExceededException";
90
+ readonly $fault: "client";
91
+ Message: string | undefined;
92
+ /**
93
+ * <p>The identifier of the Amazon Web Services resource.</p>
94
+ * @public
95
+ */
96
+ ResourceId: string | undefined;
97
+ /**
98
+ * <p>The resource type, which can be one of <code>Connector</code>, <code>Template</code>, <code>TemplateGroupAccessControlEntry</code>, <code>ServicePrincipalName</code>, or <code>DirectoryRegistration</code>.</p>
99
+ * @public
100
+ */
101
+ ResourceType: string | undefined;
102
+ /**
103
+ * <p>Identifies the originating service.</p>
104
+ * @public
105
+ */
106
+ ServiceCode: string | undefined;
107
+ /**
108
+ * <p>The code associated with the service quota.</p>
109
+ * @public
110
+ */
111
+ QuotaCode: string | undefined;
112
+ /**
113
+ * @internal
114
+ */
115
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
116
+ }
117
+ /**
118
+ * <p>The limit on the number of requests per second was exceeded. </p>
119
+ * @public
120
+ */
121
+ export declare class ThrottlingException extends __BaseException {
122
+ readonly name: "ThrottlingException";
123
+ readonly $fault: "client";
124
+ $retryable: {
125
+ throttling: boolean;
126
+ };
127
+ Message: string | undefined;
128
+ /**
129
+ * <p>Identifies the originating service.</p>
130
+ * @public
131
+ */
132
+ ServiceCode?: string | undefined;
133
+ /**
134
+ * <p>The code associated with the quota.</p>
135
+ * @public
136
+ */
137
+ QuotaCode?: string | undefined;
138
+ /**
139
+ * @internal
140
+ */
141
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
142
+ }
143
+ /**
144
+ * <p>An input validation error occurred. For example, invalid characters in a template name,
145
+ * or if a pagination token is invalid. </p>
146
+ * @public
147
+ */
148
+ export declare class ValidationException extends __BaseException {
149
+ readonly name: "ValidationException";
150
+ readonly $fault: "client";
151
+ Message: string | undefined;
152
+ /**
153
+ * <p>The reason for the validation error. This won't be return for every
154
+ * validation exception.</p>
155
+ * @public
156
+ */
157
+ Reason?: ValidationExceptionReason | undefined;
158
+ /**
159
+ * @internal
160
+ */
161
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
162
+ }