@aws-sdk/client-efs 3.934.0 → 3.936.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 +79 -78
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +78 -0
- package/dist-es/models/errors.js +517 -0
- package/dist-es/models/models_0.js +1 -595
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +182 -0
- package/dist-types/models/errors.d.ts +905 -0
- package/dist-types/models/models_0.d.ts +1 -1087
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +100 -0
- package/dist-types/ts3.4/models/errors.d.ts +277 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -377
- package/package.json +19 -19
- 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 { EFSExtensionConfiguration } 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 { EFSServiceException } from "./models/EFSServiceException";
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export declare const LifeCycleState: {
|
|
2
|
+
readonly AVAILABLE: "available";
|
|
3
|
+
readonly CREATING: "creating";
|
|
4
|
+
readonly DELETED: "deleted";
|
|
5
|
+
readonly DELETING: "deleting";
|
|
6
|
+
readonly ERROR: "error";
|
|
7
|
+
readonly UPDATING: "updating";
|
|
8
|
+
};
|
|
9
|
+
export type LifeCycleState =
|
|
10
|
+
(typeof LifeCycleState)[keyof typeof LifeCycleState];
|
|
11
|
+
export declare const Status: {
|
|
12
|
+
readonly DISABLED: "DISABLED";
|
|
13
|
+
readonly DISABLING: "DISABLING";
|
|
14
|
+
readonly ENABLED: "ENABLED";
|
|
15
|
+
readonly ENABLING: "ENABLING";
|
|
16
|
+
};
|
|
17
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
18
|
+
export declare const PerformanceMode: {
|
|
19
|
+
readonly GENERAL_PURPOSE: "generalPurpose";
|
|
20
|
+
readonly MAX_IO: "maxIO";
|
|
21
|
+
};
|
|
22
|
+
export type PerformanceMode =
|
|
23
|
+
(typeof PerformanceMode)[keyof typeof PerformanceMode];
|
|
24
|
+
export declare const ThroughputMode: {
|
|
25
|
+
readonly BURSTING: "bursting";
|
|
26
|
+
readonly ELASTIC: "elastic";
|
|
27
|
+
readonly PROVISIONED: "provisioned";
|
|
28
|
+
};
|
|
29
|
+
export type ThroughputMode =
|
|
30
|
+
(typeof ThroughputMode)[keyof typeof ThroughputMode];
|
|
31
|
+
export declare const ReplicationOverwriteProtection: {
|
|
32
|
+
readonly DISABLED: "DISABLED";
|
|
33
|
+
readonly ENABLED: "ENABLED";
|
|
34
|
+
readonly REPLICATING: "REPLICATING";
|
|
35
|
+
};
|
|
36
|
+
export type ReplicationOverwriteProtection =
|
|
37
|
+
(typeof ReplicationOverwriteProtection)[keyof typeof ReplicationOverwriteProtection];
|
|
38
|
+
export declare const IpAddressType: {
|
|
39
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
40
|
+
readonly IPV4_ONLY: "IPV4_ONLY";
|
|
41
|
+
readonly IPV6_ONLY: "IPV6_ONLY";
|
|
42
|
+
};
|
|
43
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
44
|
+
export declare const ReplicationStatus: {
|
|
45
|
+
readonly DELETING: "DELETING";
|
|
46
|
+
readonly ENABLED: "ENABLED";
|
|
47
|
+
readonly ENABLING: "ENABLING";
|
|
48
|
+
readonly ERROR: "ERROR";
|
|
49
|
+
readonly PAUSED: "PAUSED";
|
|
50
|
+
readonly PAUSING: "PAUSING";
|
|
51
|
+
};
|
|
52
|
+
export type ReplicationStatus =
|
|
53
|
+
(typeof ReplicationStatus)[keyof typeof ReplicationStatus];
|
|
54
|
+
export declare const DeletionMode: {
|
|
55
|
+
readonly ALL_CONFIGURATIONS: "ALL_CONFIGURATIONS";
|
|
56
|
+
readonly LOCAL_CONFIGURATION_ONLY: "LOCAL_CONFIGURATION_ONLY";
|
|
57
|
+
};
|
|
58
|
+
export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
|
|
59
|
+
export declare const ResourceIdType: {
|
|
60
|
+
readonly LongId: "LONG_ID";
|
|
61
|
+
readonly ShortId: "SHORT_ID";
|
|
62
|
+
};
|
|
63
|
+
export type ResourceIdType =
|
|
64
|
+
(typeof ResourceIdType)[keyof typeof ResourceIdType];
|
|
65
|
+
export declare const Resource: {
|
|
66
|
+
readonly FileSystem: "FILE_SYSTEM";
|
|
67
|
+
readonly MountTarget: "MOUNT_TARGET";
|
|
68
|
+
};
|
|
69
|
+
export type Resource = (typeof Resource)[keyof typeof Resource];
|
|
70
|
+
export declare const TransitionToArchiveRules: {
|
|
71
|
+
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
72
|
+
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
73
|
+
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
74
|
+
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
75
|
+
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
76
|
+
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
77
|
+
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
78
|
+
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
79
|
+
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
80
|
+
};
|
|
81
|
+
export type TransitionToArchiveRules =
|
|
82
|
+
(typeof TransitionToArchiveRules)[keyof typeof TransitionToArchiveRules];
|
|
83
|
+
export declare const TransitionToIARules: {
|
|
84
|
+
readonly AFTER_14_DAYS: "AFTER_14_DAYS";
|
|
85
|
+
readonly AFTER_180_DAYS: "AFTER_180_DAYS";
|
|
86
|
+
readonly AFTER_1_DAY: "AFTER_1_DAY";
|
|
87
|
+
readonly AFTER_270_DAYS: "AFTER_270_DAYS";
|
|
88
|
+
readonly AFTER_30_DAYS: "AFTER_30_DAYS";
|
|
89
|
+
readonly AFTER_365_DAYS: "AFTER_365_DAYS";
|
|
90
|
+
readonly AFTER_60_DAYS: "AFTER_60_DAYS";
|
|
91
|
+
readonly AFTER_7_DAYS: "AFTER_7_DAYS";
|
|
92
|
+
readonly AFTER_90_DAYS: "AFTER_90_DAYS";
|
|
93
|
+
};
|
|
94
|
+
export type TransitionToIARules =
|
|
95
|
+
(typeof TransitionToIARules)[keyof typeof TransitionToIARules];
|
|
96
|
+
export declare const TransitionToPrimaryStorageClassRules: {
|
|
97
|
+
readonly AFTER_1_ACCESS: "AFTER_1_ACCESS";
|
|
98
|
+
};
|
|
99
|
+
export type TransitionToPrimaryStorageClassRules =
|
|
100
|
+
(typeof TransitionToPrimaryStorageClassRules)[keyof typeof TransitionToPrimaryStorageClassRules];
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EFSServiceException as __BaseException } from "./EFSServiceException";
|
|
3
|
+
export declare class AccessPointAlreadyExists extends __BaseException {
|
|
4
|
+
readonly name: "AccessPointAlreadyExists";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
ErrorCode: string | undefined;
|
|
7
|
+
Message?: string | undefined;
|
|
8
|
+
AccessPointId: string | undefined;
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<AccessPointAlreadyExists, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
export declare class AccessPointLimitExceeded extends __BaseException {
|
|
14
|
+
readonly name: "AccessPointLimitExceeded";
|
|
15
|
+
readonly $fault: "client";
|
|
16
|
+
ErrorCode: string | undefined;
|
|
17
|
+
Message?: string | undefined;
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<AccessPointLimitExceeded, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class AccessPointNotFound extends __BaseException {
|
|
23
|
+
readonly name: "AccessPointNotFound";
|
|
24
|
+
readonly $fault: "client";
|
|
25
|
+
ErrorCode: string | undefined;
|
|
26
|
+
Message?: string | undefined;
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<AccessPointNotFound, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class AvailabilityZonesMismatch extends __BaseException {
|
|
32
|
+
readonly name: "AvailabilityZonesMismatch";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
ErrorCode?: string | undefined;
|
|
35
|
+
Message?: string | undefined;
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<AvailabilityZonesMismatch, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class BadRequest extends __BaseException {
|
|
41
|
+
readonly name: "BadRequest";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
ErrorCode: string | undefined;
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(opts: __ExceptionOptionType<BadRequest, __BaseException>);
|
|
46
|
+
}
|
|
47
|
+
export declare class ConflictException extends __BaseException {
|
|
48
|
+
readonly name: "ConflictException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
ErrorCode?: string | undefined;
|
|
51
|
+
Message?: string | undefined;
|
|
52
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
53
|
+
}
|
|
54
|
+
export declare class FileSystemNotFound extends __BaseException {
|
|
55
|
+
readonly name: "FileSystemNotFound";
|
|
56
|
+
readonly $fault: "client";
|
|
57
|
+
ErrorCode: string | undefined;
|
|
58
|
+
Message?: string | undefined;
|
|
59
|
+
constructor(opts: __ExceptionOptionType<FileSystemNotFound, __BaseException>);
|
|
60
|
+
}
|
|
61
|
+
export declare class IncorrectFileSystemLifeCycleState extends __BaseException {
|
|
62
|
+
readonly name: "IncorrectFileSystemLifeCycleState";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
ErrorCode: string | undefined;
|
|
65
|
+
Message?: string | undefined;
|
|
66
|
+
constructor(
|
|
67
|
+
opts: __ExceptionOptionType<
|
|
68
|
+
IncorrectFileSystemLifeCycleState,
|
|
69
|
+
__BaseException
|
|
70
|
+
>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
export declare class InternalServerError extends __BaseException {
|
|
74
|
+
readonly name: "InternalServerError";
|
|
75
|
+
readonly $fault: "server";
|
|
76
|
+
ErrorCode: string | undefined;
|
|
77
|
+
Message?: string | undefined;
|
|
78
|
+
constructor(
|
|
79
|
+
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
80
|
+
);
|
|
81
|
+
}
|
|
82
|
+
export declare class ThrottlingException extends __BaseException {
|
|
83
|
+
readonly name: "ThrottlingException";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
ErrorCode?: string | undefined;
|
|
86
|
+
Message?: string | undefined;
|
|
87
|
+
constructor(
|
|
88
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
export declare class FileSystemAlreadyExists extends __BaseException {
|
|
92
|
+
readonly name: "FileSystemAlreadyExists";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
ErrorCode: string | undefined;
|
|
95
|
+
Message?: string | undefined;
|
|
96
|
+
FileSystemId: string | undefined;
|
|
97
|
+
constructor(
|
|
98
|
+
opts: __ExceptionOptionType<FileSystemAlreadyExists, __BaseException>
|
|
99
|
+
);
|
|
100
|
+
}
|
|
101
|
+
export declare class FileSystemLimitExceeded extends __BaseException {
|
|
102
|
+
readonly name: "FileSystemLimitExceeded";
|
|
103
|
+
readonly $fault: "client";
|
|
104
|
+
ErrorCode: string | undefined;
|
|
105
|
+
Message?: string | undefined;
|
|
106
|
+
constructor(
|
|
107
|
+
opts: __ExceptionOptionType<FileSystemLimitExceeded, __BaseException>
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
export declare class InsufficientThroughputCapacity extends __BaseException {
|
|
111
|
+
readonly name: "InsufficientThroughputCapacity";
|
|
112
|
+
readonly $fault: "server";
|
|
113
|
+
ErrorCode: string | undefined;
|
|
114
|
+
Message?: string | undefined;
|
|
115
|
+
constructor(
|
|
116
|
+
opts: __ExceptionOptionType<InsufficientThroughputCapacity, __BaseException>
|
|
117
|
+
);
|
|
118
|
+
}
|
|
119
|
+
export declare class ThroughputLimitExceeded extends __BaseException {
|
|
120
|
+
readonly name: "ThroughputLimitExceeded";
|
|
121
|
+
readonly $fault: "client";
|
|
122
|
+
ErrorCode: string | undefined;
|
|
123
|
+
Message?: string | undefined;
|
|
124
|
+
constructor(
|
|
125
|
+
opts: __ExceptionOptionType<ThroughputLimitExceeded, __BaseException>
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
export declare class UnsupportedAvailabilityZone extends __BaseException {
|
|
129
|
+
readonly name: "UnsupportedAvailabilityZone";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
ErrorCode: string | undefined;
|
|
132
|
+
Message?: string | undefined;
|
|
133
|
+
constructor(
|
|
134
|
+
opts: __ExceptionOptionType<UnsupportedAvailabilityZone, __BaseException>
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
export declare class IpAddressInUse extends __BaseException {
|
|
138
|
+
readonly name: "IpAddressInUse";
|
|
139
|
+
readonly $fault: "client";
|
|
140
|
+
ErrorCode: string | undefined;
|
|
141
|
+
Message?: string | undefined;
|
|
142
|
+
constructor(opts: __ExceptionOptionType<IpAddressInUse, __BaseException>);
|
|
143
|
+
}
|
|
144
|
+
export declare class MountTargetConflict extends __BaseException {
|
|
145
|
+
readonly name: "MountTargetConflict";
|
|
146
|
+
readonly $fault: "client";
|
|
147
|
+
ErrorCode: string | undefined;
|
|
148
|
+
Message?: string | undefined;
|
|
149
|
+
constructor(
|
|
150
|
+
opts: __ExceptionOptionType<MountTargetConflict, __BaseException>
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
export declare class NetworkInterfaceLimitExceeded extends __BaseException {
|
|
154
|
+
readonly name: "NetworkInterfaceLimitExceeded";
|
|
155
|
+
readonly $fault: "client";
|
|
156
|
+
ErrorCode: string | undefined;
|
|
157
|
+
Message?: string | undefined;
|
|
158
|
+
constructor(
|
|
159
|
+
opts: __ExceptionOptionType<NetworkInterfaceLimitExceeded, __BaseException>
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
export declare class NoFreeAddressesInSubnet extends __BaseException {
|
|
163
|
+
readonly name: "NoFreeAddressesInSubnet";
|
|
164
|
+
readonly $fault: "client";
|
|
165
|
+
ErrorCode: string | undefined;
|
|
166
|
+
Message?: string | undefined;
|
|
167
|
+
constructor(
|
|
168
|
+
opts: __ExceptionOptionType<NoFreeAddressesInSubnet, __BaseException>
|
|
169
|
+
);
|
|
170
|
+
}
|
|
171
|
+
export declare class SecurityGroupLimitExceeded extends __BaseException {
|
|
172
|
+
readonly name: "SecurityGroupLimitExceeded";
|
|
173
|
+
readonly $fault: "client";
|
|
174
|
+
ErrorCode: string | undefined;
|
|
175
|
+
Message?: string | undefined;
|
|
176
|
+
constructor(
|
|
177
|
+
opts: __ExceptionOptionType<SecurityGroupLimitExceeded, __BaseException>
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
export declare class SecurityGroupNotFound extends __BaseException {
|
|
181
|
+
readonly name: "SecurityGroupNotFound";
|
|
182
|
+
readonly $fault: "client";
|
|
183
|
+
ErrorCode: string | undefined;
|
|
184
|
+
Message?: string | undefined;
|
|
185
|
+
constructor(
|
|
186
|
+
opts: __ExceptionOptionType<SecurityGroupNotFound, __BaseException>
|
|
187
|
+
);
|
|
188
|
+
}
|
|
189
|
+
export declare class SubnetNotFound extends __BaseException {
|
|
190
|
+
readonly name: "SubnetNotFound";
|
|
191
|
+
readonly $fault: "client";
|
|
192
|
+
ErrorCode: string | undefined;
|
|
193
|
+
Message?: string | undefined;
|
|
194
|
+
constructor(opts: __ExceptionOptionType<SubnetNotFound, __BaseException>);
|
|
195
|
+
}
|
|
196
|
+
export declare class ReplicationNotFound extends __BaseException {
|
|
197
|
+
readonly name: "ReplicationNotFound";
|
|
198
|
+
readonly $fault: "client";
|
|
199
|
+
ErrorCode?: string | undefined;
|
|
200
|
+
Message?: string | undefined;
|
|
201
|
+
constructor(
|
|
202
|
+
opts: __ExceptionOptionType<ReplicationNotFound, __BaseException>
|
|
203
|
+
);
|
|
204
|
+
}
|
|
205
|
+
export declare class ValidationException extends __BaseException {
|
|
206
|
+
readonly name: "ValidationException";
|
|
207
|
+
readonly $fault: "client";
|
|
208
|
+
ErrorCode: string | undefined;
|
|
209
|
+
Message?: string | undefined;
|
|
210
|
+
constructor(
|
|
211
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
212
|
+
);
|
|
213
|
+
}
|
|
214
|
+
export declare class FileSystemInUse extends __BaseException {
|
|
215
|
+
readonly name: "FileSystemInUse";
|
|
216
|
+
readonly $fault: "client";
|
|
217
|
+
ErrorCode: string | undefined;
|
|
218
|
+
Message?: string | undefined;
|
|
219
|
+
constructor(opts: __ExceptionOptionType<FileSystemInUse, __BaseException>);
|
|
220
|
+
}
|
|
221
|
+
export declare class DependencyTimeout extends __BaseException {
|
|
222
|
+
readonly name: "DependencyTimeout";
|
|
223
|
+
readonly $fault: "server";
|
|
224
|
+
ErrorCode: string | undefined;
|
|
225
|
+
Message?: string | undefined;
|
|
226
|
+
constructor(opts: __ExceptionOptionType<DependencyTimeout, __BaseException>);
|
|
227
|
+
}
|
|
228
|
+
export declare class MountTargetNotFound extends __BaseException {
|
|
229
|
+
readonly name: "MountTargetNotFound";
|
|
230
|
+
readonly $fault: "client";
|
|
231
|
+
ErrorCode: string | undefined;
|
|
232
|
+
Message?: string | undefined;
|
|
233
|
+
constructor(
|
|
234
|
+
opts: __ExceptionOptionType<MountTargetNotFound, __BaseException>
|
|
235
|
+
);
|
|
236
|
+
}
|
|
237
|
+
export declare class PolicyNotFound extends __BaseException {
|
|
238
|
+
readonly name: "PolicyNotFound";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
ErrorCode?: string | undefined;
|
|
241
|
+
Message?: string | undefined;
|
|
242
|
+
constructor(opts: __ExceptionOptionType<PolicyNotFound, __BaseException>);
|
|
243
|
+
}
|
|
244
|
+
export declare class IncorrectMountTargetState extends __BaseException {
|
|
245
|
+
readonly name: "IncorrectMountTargetState";
|
|
246
|
+
readonly $fault: "client";
|
|
247
|
+
ErrorCode: string | undefined;
|
|
248
|
+
Message?: string | undefined;
|
|
249
|
+
constructor(
|
|
250
|
+
opts: __ExceptionOptionType<IncorrectMountTargetState, __BaseException>
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
export declare class InvalidPolicyException extends __BaseException {
|
|
254
|
+
readonly name: "InvalidPolicyException";
|
|
255
|
+
readonly $fault: "client";
|
|
256
|
+
ErrorCode?: string | undefined;
|
|
257
|
+
Message?: string | undefined;
|
|
258
|
+
constructor(
|
|
259
|
+
opts: __ExceptionOptionType<InvalidPolicyException, __BaseException>
|
|
260
|
+
);
|
|
261
|
+
}
|
|
262
|
+
export declare class TooManyRequests extends __BaseException {
|
|
263
|
+
readonly name: "TooManyRequests";
|
|
264
|
+
readonly $fault: "client";
|
|
265
|
+
ErrorCode: string | undefined;
|
|
266
|
+
Message?: string | undefined;
|
|
267
|
+
constructor(opts: __ExceptionOptionType<TooManyRequests, __BaseException>);
|
|
268
|
+
}
|
|
269
|
+
export declare class ReplicationAlreadyExists extends __BaseException {
|
|
270
|
+
readonly name: "ReplicationAlreadyExists";
|
|
271
|
+
readonly $fault: "client";
|
|
272
|
+
ErrorCode?: string | undefined;
|
|
273
|
+
Message?: string | undefined;
|
|
274
|
+
constructor(
|
|
275
|
+
opts: __ExceptionOptionType<ReplicationAlreadyExists, __BaseException>
|
|
276
|
+
);
|
|
277
|
+
}
|