@aws-sdk/client-clouddirectory 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 +84 -83
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +83 -0
- package/dist-es/models/errors.js +495 -0
- package/dist-es/models/models_0.js +1 -578
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +171 -0
- package/dist-types/models/errors.d.ts +472 -0
- package/dist-types/models/models_0.d.ts +1 -642
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +291 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -391
- 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
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { CloudDirectoryExtensionConfiguration } 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 { CloudDirectoryServiceException } from "./models/CloudDirectoryServiceException";
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
export declare const ConsistencyLevel: {
|
|
2
|
+
readonly EVENTUAL: "EVENTUAL";
|
|
3
|
+
readonly SERIALIZABLE: "SERIALIZABLE";
|
|
4
|
+
};
|
|
5
|
+
export type ConsistencyLevel =
|
|
6
|
+
(typeof ConsistencyLevel)[keyof typeof ConsistencyLevel];
|
|
7
|
+
export declare const RangeMode: {
|
|
8
|
+
readonly EXCLUSIVE: "EXCLUSIVE";
|
|
9
|
+
readonly FIRST: "FIRST";
|
|
10
|
+
readonly INCLUSIVE: "INCLUSIVE";
|
|
11
|
+
readonly LAST: "LAST";
|
|
12
|
+
readonly LAST_BEFORE_MISSING_VALUES: "LAST_BEFORE_MISSING_VALUES";
|
|
13
|
+
};
|
|
14
|
+
export type RangeMode = (typeof RangeMode)[keyof typeof RangeMode];
|
|
15
|
+
export declare const BatchReadExceptionType: {
|
|
16
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
17
|
+
readonly CannotListParentOfRootException: "CannotListParentOfRootException";
|
|
18
|
+
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
19
|
+
readonly FacetValidationException: "FacetValidationException";
|
|
20
|
+
readonly InternalServiceException: "InternalServiceException";
|
|
21
|
+
readonly InvalidArnException: "InvalidArnException";
|
|
22
|
+
readonly InvalidNextTokenException: "InvalidNextTokenException";
|
|
23
|
+
readonly LimitExceededException: "LimitExceededException";
|
|
24
|
+
readonly NotIndexException: "NotIndexException";
|
|
25
|
+
readonly NotNodeException: "NotNodeException";
|
|
26
|
+
readonly NotPolicyException: "NotPolicyException";
|
|
27
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
28
|
+
readonly ValidationException: "ValidationException";
|
|
29
|
+
};
|
|
30
|
+
export type BatchReadExceptionType =
|
|
31
|
+
(typeof BatchReadExceptionType)[keyof typeof BatchReadExceptionType];
|
|
32
|
+
export declare const BatchWriteExceptionType: {
|
|
33
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
34
|
+
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
35
|
+
readonly FacetValidationException: "FacetValidationException";
|
|
36
|
+
readonly IndexedAttributeMissingException: "IndexedAttributeMissingException";
|
|
37
|
+
readonly InternalServiceException: "InternalServiceException";
|
|
38
|
+
readonly InvalidArnException: "InvalidArnException";
|
|
39
|
+
readonly InvalidAttachmentException: "InvalidAttachmentException";
|
|
40
|
+
readonly LimitExceededException: "LimitExceededException";
|
|
41
|
+
readonly LinkNameAlreadyInUseException: "LinkNameAlreadyInUseException";
|
|
42
|
+
readonly NotIndexException: "NotIndexException";
|
|
43
|
+
readonly NotNodeException: "NotNodeException";
|
|
44
|
+
readonly NotPolicyException: "NotPolicyException";
|
|
45
|
+
readonly ObjectAlreadyDetachedException: "ObjectAlreadyDetachedException";
|
|
46
|
+
readonly ObjectNotDetachedException: "ObjectNotDetachedException";
|
|
47
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
48
|
+
readonly StillContainsLinksException: "StillContainsLinksException";
|
|
49
|
+
readonly UnsupportedIndexTypeException: "UnsupportedIndexTypeException";
|
|
50
|
+
readonly ValidationException: "ValidationException";
|
|
51
|
+
};
|
|
52
|
+
export type BatchWriteExceptionType =
|
|
53
|
+
(typeof BatchWriteExceptionType)[keyof typeof BatchWriteExceptionType];
|
|
54
|
+
export declare const UpdateActionType: {
|
|
55
|
+
readonly CREATE_OR_UPDATE: "CREATE_OR_UPDATE";
|
|
56
|
+
readonly DELETE: "DELETE";
|
|
57
|
+
};
|
|
58
|
+
export type UpdateActionType =
|
|
59
|
+
(typeof UpdateActionType)[keyof typeof UpdateActionType];
|
|
60
|
+
export declare const RuleType: {
|
|
61
|
+
readonly BINARY_LENGTH: "BINARY_LENGTH";
|
|
62
|
+
readonly NUMBER_COMPARISON: "NUMBER_COMPARISON";
|
|
63
|
+
readonly STRING_FROM_SET: "STRING_FROM_SET";
|
|
64
|
+
readonly STRING_LENGTH: "STRING_LENGTH";
|
|
65
|
+
};
|
|
66
|
+
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
67
|
+
export declare const FacetAttributeType: {
|
|
68
|
+
readonly BINARY: "BINARY";
|
|
69
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
70
|
+
readonly DATETIME: "DATETIME";
|
|
71
|
+
readonly NUMBER: "NUMBER";
|
|
72
|
+
readonly STRING: "STRING";
|
|
73
|
+
readonly VARIANT: "VARIANT";
|
|
74
|
+
};
|
|
75
|
+
export type FacetAttributeType =
|
|
76
|
+
(typeof FacetAttributeType)[keyof typeof FacetAttributeType];
|
|
77
|
+
export declare const RequiredAttributeBehavior: {
|
|
78
|
+
readonly NOT_REQUIRED: "NOT_REQUIRED";
|
|
79
|
+
readonly REQUIRED_ALWAYS: "REQUIRED_ALWAYS";
|
|
80
|
+
};
|
|
81
|
+
export type RequiredAttributeBehavior =
|
|
82
|
+
(typeof RequiredAttributeBehavior)[keyof typeof RequiredAttributeBehavior];
|
|
83
|
+
export declare const FacetStyle: {
|
|
84
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
85
|
+
readonly STATIC: "STATIC";
|
|
86
|
+
};
|
|
87
|
+
export type FacetStyle = (typeof FacetStyle)[keyof typeof FacetStyle];
|
|
88
|
+
export declare const ObjectType: {
|
|
89
|
+
readonly INDEX: "INDEX";
|
|
90
|
+
readonly LEAF_NODE: "LEAF_NODE";
|
|
91
|
+
readonly NODE: "NODE";
|
|
92
|
+
readonly POLICY: "POLICY";
|
|
93
|
+
};
|
|
94
|
+
export type ObjectType = (typeof ObjectType)[keyof typeof ObjectType];
|
|
95
|
+
export declare const DirectoryState: {
|
|
96
|
+
readonly DELETED: "DELETED";
|
|
97
|
+
readonly DISABLED: "DISABLED";
|
|
98
|
+
readonly ENABLED: "ENABLED";
|
|
99
|
+
};
|
|
100
|
+
export type DirectoryState =
|
|
101
|
+
(typeof DirectoryState)[keyof typeof DirectoryState];
|
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException";
|
|
3
|
+
import { BatchWriteExceptionType } from "./enums";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare class DirectoryNotEnabledException extends __BaseException {
|
|
13
|
+
readonly name: "DirectoryNotEnabledException";
|
|
14
|
+
readonly $fault: "client";
|
|
15
|
+
Message?: string | undefined;
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<DirectoryNotEnabledException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export declare class FacetValidationException extends __BaseException {
|
|
21
|
+
readonly name: "FacetValidationException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
constructor(
|
|
25
|
+
opts: __ExceptionOptionType<FacetValidationException, __BaseException>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
export declare class InternalServiceException extends __BaseException {
|
|
29
|
+
readonly name: "InternalServiceException";
|
|
30
|
+
readonly $fault: "server";
|
|
31
|
+
Message?: string | undefined;
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<InternalServiceException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class InvalidArnException extends __BaseException {
|
|
37
|
+
readonly name: "InvalidArnException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
Message?: string | undefined;
|
|
40
|
+
constructor(
|
|
41
|
+
opts: __ExceptionOptionType<InvalidArnException, __BaseException>
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
export declare class LimitExceededException extends __BaseException {
|
|
45
|
+
readonly name: "LimitExceededException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
Message?: string | undefined;
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
53
|
+
readonly name: "ResourceNotFoundException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
Message?: string | undefined;
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class RetryableConflictException extends __BaseException {
|
|
61
|
+
readonly name: "RetryableConflictException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Message?: string | undefined;
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<RetryableConflictException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class ValidationException extends __BaseException {
|
|
69
|
+
readonly name: "ValidationException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
Message?: string | undefined;
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
export declare class InvalidAttachmentException extends __BaseException {
|
|
77
|
+
readonly name: "InvalidAttachmentException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
Message?: string | undefined;
|
|
80
|
+
constructor(
|
|
81
|
+
opts: __ExceptionOptionType<InvalidAttachmentException, __BaseException>
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
export declare class SchemaAlreadyExistsException extends __BaseException {
|
|
85
|
+
readonly name: "SchemaAlreadyExistsException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
Message?: string | undefined;
|
|
88
|
+
constructor(
|
|
89
|
+
opts: __ExceptionOptionType<SchemaAlreadyExistsException, __BaseException>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
export declare class LinkNameAlreadyInUseException extends __BaseException {
|
|
93
|
+
readonly name: "LinkNameAlreadyInUseException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
Message?: string | undefined;
|
|
96
|
+
constructor(
|
|
97
|
+
opts: __ExceptionOptionType<LinkNameAlreadyInUseException, __BaseException>
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
export declare class NotPolicyException extends __BaseException {
|
|
101
|
+
readonly name: "NotPolicyException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
Message?: string | undefined;
|
|
104
|
+
constructor(opts: __ExceptionOptionType<NotPolicyException, __BaseException>);
|
|
105
|
+
}
|
|
106
|
+
export declare class IndexedAttributeMissingException extends __BaseException {
|
|
107
|
+
readonly name: "IndexedAttributeMissingException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message?: string | undefined;
|
|
110
|
+
constructor(
|
|
111
|
+
opts: __ExceptionOptionType<
|
|
112
|
+
IndexedAttributeMissingException,
|
|
113
|
+
__BaseException
|
|
114
|
+
>
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
export declare class NotIndexException extends __BaseException {
|
|
118
|
+
readonly name: "NotIndexException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
Message?: string | undefined;
|
|
121
|
+
constructor(opts: __ExceptionOptionType<NotIndexException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
export declare class BatchWriteException extends __BaseException {
|
|
124
|
+
readonly name: "BatchWriteException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
Index?: number | undefined;
|
|
127
|
+
Type?: BatchWriteExceptionType | undefined;
|
|
128
|
+
Message?: string | undefined;
|
|
129
|
+
constructor(
|
|
130
|
+
opts: __ExceptionOptionType<BatchWriteException, __BaseException>
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
export declare class DirectoryAlreadyExistsException extends __BaseException {
|
|
134
|
+
readonly name: "DirectoryAlreadyExistsException";
|
|
135
|
+
readonly $fault: "client";
|
|
136
|
+
Message?: string | undefined;
|
|
137
|
+
constructor(
|
|
138
|
+
opts: __ExceptionOptionType<
|
|
139
|
+
DirectoryAlreadyExistsException,
|
|
140
|
+
__BaseException
|
|
141
|
+
>
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
export declare class FacetAlreadyExistsException extends __BaseException {
|
|
145
|
+
readonly name: "FacetAlreadyExistsException";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
Message?: string | undefined;
|
|
148
|
+
constructor(
|
|
149
|
+
opts: __ExceptionOptionType<FacetAlreadyExistsException, __BaseException>
|
|
150
|
+
);
|
|
151
|
+
}
|
|
152
|
+
export declare class InvalidRuleException extends __BaseException {
|
|
153
|
+
readonly name: "InvalidRuleException";
|
|
154
|
+
readonly $fault: "client";
|
|
155
|
+
Message?: string | undefined;
|
|
156
|
+
constructor(
|
|
157
|
+
opts: __ExceptionOptionType<InvalidRuleException, __BaseException>
|
|
158
|
+
);
|
|
159
|
+
}
|
|
160
|
+
export declare class UnsupportedIndexTypeException extends __BaseException {
|
|
161
|
+
readonly name: "UnsupportedIndexTypeException";
|
|
162
|
+
readonly $fault: "client";
|
|
163
|
+
Message?: string | undefined;
|
|
164
|
+
constructor(
|
|
165
|
+
opts: __ExceptionOptionType<UnsupportedIndexTypeException, __BaseException>
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
export declare class DirectoryDeletedException extends __BaseException {
|
|
169
|
+
readonly name: "DirectoryDeletedException";
|
|
170
|
+
readonly $fault: "client";
|
|
171
|
+
Message?: string | undefined;
|
|
172
|
+
constructor(
|
|
173
|
+
opts: __ExceptionOptionType<DirectoryDeletedException, __BaseException>
|
|
174
|
+
);
|
|
175
|
+
}
|
|
176
|
+
export declare class DirectoryNotDisabledException extends __BaseException {
|
|
177
|
+
readonly name: "DirectoryNotDisabledException";
|
|
178
|
+
readonly $fault: "client";
|
|
179
|
+
Message?: string | undefined;
|
|
180
|
+
constructor(
|
|
181
|
+
opts: __ExceptionOptionType<DirectoryNotDisabledException, __BaseException>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
184
|
+
export declare class FacetInUseException extends __BaseException {
|
|
185
|
+
readonly name: "FacetInUseException";
|
|
186
|
+
readonly $fault: "client";
|
|
187
|
+
Message?: string | undefined;
|
|
188
|
+
constructor(
|
|
189
|
+
opts: __ExceptionOptionType<FacetInUseException, __BaseException>
|
|
190
|
+
);
|
|
191
|
+
}
|
|
192
|
+
export declare class FacetNotFoundException extends __BaseException {
|
|
193
|
+
readonly name: "FacetNotFoundException";
|
|
194
|
+
readonly $fault: "client";
|
|
195
|
+
Message?: string | undefined;
|
|
196
|
+
constructor(
|
|
197
|
+
opts: __ExceptionOptionType<FacetNotFoundException, __BaseException>
|
|
198
|
+
);
|
|
199
|
+
}
|
|
200
|
+
export declare class ObjectNotDetachedException extends __BaseException {
|
|
201
|
+
readonly name: "ObjectNotDetachedException";
|
|
202
|
+
readonly $fault: "client";
|
|
203
|
+
Message?: string | undefined;
|
|
204
|
+
constructor(
|
|
205
|
+
opts: __ExceptionOptionType<ObjectNotDetachedException, __BaseException>
|
|
206
|
+
);
|
|
207
|
+
}
|
|
208
|
+
export declare class StillContainsLinksException extends __BaseException {
|
|
209
|
+
readonly name: "StillContainsLinksException";
|
|
210
|
+
readonly $fault: "client";
|
|
211
|
+
Message?: string | undefined;
|
|
212
|
+
constructor(
|
|
213
|
+
opts: __ExceptionOptionType<StillContainsLinksException, __BaseException>
|
|
214
|
+
);
|
|
215
|
+
}
|
|
216
|
+
export declare class ObjectAlreadyDetachedException extends __BaseException {
|
|
217
|
+
readonly name: "ObjectAlreadyDetachedException";
|
|
218
|
+
readonly $fault: "client";
|
|
219
|
+
Message?: string | undefined;
|
|
220
|
+
constructor(
|
|
221
|
+
opts: __ExceptionOptionType<ObjectAlreadyDetachedException, __BaseException>
|
|
222
|
+
);
|
|
223
|
+
}
|
|
224
|
+
export declare class NotNodeException extends __BaseException {
|
|
225
|
+
readonly name: "NotNodeException";
|
|
226
|
+
readonly $fault: "client";
|
|
227
|
+
Message?: string | undefined;
|
|
228
|
+
constructor(opts: __ExceptionOptionType<NotNodeException, __BaseException>);
|
|
229
|
+
}
|
|
230
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
231
|
+
readonly name: "InvalidNextTokenException";
|
|
232
|
+
readonly $fault: "client";
|
|
233
|
+
Message?: string | undefined;
|
|
234
|
+
constructor(
|
|
235
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
236
|
+
);
|
|
237
|
+
}
|
|
238
|
+
export declare class CannotListParentOfRootException extends __BaseException {
|
|
239
|
+
readonly name: "CannotListParentOfRootException";
|
|
240
|
+
readonly $fault: "client";
|
|
241
|
+
Message?: string | undefined;
|
|
242
|
+
constructor(
|
|
243
|
+
opts: __ExceptionOptionType<
|
|
244
|
+
CannotListParentOfRootException,
|
|
245
|
+
__BaseException
|
|
246
|
+
>
|
|
247
|
+
);
|
|
248
|
+
}
|
|
249
|
+
export declare class InvalidTaggingRequestException extends __BaseException {
|
|
250
|
+
readonly name: "InvalidTaggingRequestException";
|
|
251
|
+
readonly $fault: "client";
|
|
252
|
+
Message?: string | undefined;
|
|
253
|
+
constructor(
|
|
254
|
+
opts: __ExceptionOptionType<InvalidTaggingRequestException, __BaseException>
|
|
255
|
+
);
|
|
256
|
+
}
|
|
257
|
+
export declare class SchemaAlreadyPublishedException extends __BaseException {
|
|
258
|
+
readonly name: "SchemaAlreadyPublishedException";
|
|
259
|
+
readonly $fault: "client";
|
|
260
|
+
Message?: string | undefined;
|
|
261
|
+
constructor(
|
|
262
|
+
opts: __ExceptionOptionType<
|
|
263
|
+
SchemaAlreadyPublishedException,
|
|
264
|
+
__BaseException
|
|
265
|
+
>
|
|
266
|
+
);
|
|
267
|
+
}
|
|
268
|
+
export declare class InvalidSchemaDocException extends __BaseException {
|
|
269
|
+
readonly name: "InvalidSchemaDocException";
|
|
270
|
+
readonly $fault: "client";
|
|
271
|
+
Message?: string | undefined;
|
|
272
|
+
constructor(
|
|
273
|
+
opts: __ExceptionOptionType<InvalidSchemaDocException, __BaseException>
|
|
274
|
+
);
|
|
275
|
+
}
|
|
276
|
+
export declare class InvalidFacetUpdateException extends __BaseException {
|
|
277
|
+
readonly name: "InvalidFacetUpdateException";
|
|
278
|
+
readonly $fault: "client";
|
|
279
|
+
Message?: string | undefined;
|
|
280
|
+
constructor(
|
|
281
|
+
opts: __ExceptionOptionType<InvalidFacetUpdateException, __BaseException>
|
|
282
|
+
);
|
|
283
|
+
}
|
|
284
|
+
export declare class IncompatibleSchemaException extends __BaseException {
|
|
285
|
+
readonly name: "IncompatibleSchemaException";
|
|
286
|
+
readonly $fault: "client";
|
|
287
|
+
Message?: string | undefined;
|
|
288
|
+
constructor(
|
|
289
|
+
opts: __ExceptionOptionType<IncompatibleSchemaException, __BaseException>
|
|
290
|
+
);
|
|
291
|
+
}
|