@aws-sdk/client-odb 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 +126 -125
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +125 -0
- package/dist-es/models/errors.js +108 -0
- package/dist-es/models/models_0.js +1 -233
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +277 -0
- package/dist-types/models/errors.d.ts +144 -0
- package/dist-types/models/models_0.d.ts +1 -419
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +156 -0
- package/dist-types/ts3.4/models/errors.d.ts +63 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -217
- 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
|
@@ -1,233 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ConflictException extends __BaseException {
|
|
15
|
-
name = "ConflictException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
resourceId;
|
|
18
|
-
resourceType;
|
|
19
|
-
constructor(opts) {
|
|
20
|
-
super({
|
|
21
|
-
name: "ConflictException",
|
|
22
|
-
$fault: "client",
|
|
23
|
-
...opts,
|
|
24
|
-
});
|
|
25
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
26
|
-
this.resourceId = opts.resourceId;
|
|
27
|
-
this.resourceType = opts.resourceType;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
export class InternalServerException extends __BaseException {
|
|
31
|
-
name = "InternalServerException";
|
|
32
|
-
$fault = "server";
|
|
33
|
-
$retryable = {};
|
|
34
|
-
retryAfterSeconds;
|
|
35
|
-
constructor(opts) {
|
|
36
|
-
super({
|
|
37
|
-
name: "InternalServerException",
|
|
38
|
-
$fault: "server",
|
|
39
|
-
...opts,
|
|
40
|
-
});
|
|
41
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
42
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export class ThrottlingException extends __BaseException {
|
|
46
|
-
name = "ThrottlingException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
retryAfterSeconds;
|
|
49
|
-
constructor(opts) {
|
|
50
|
-
super({
|
|
51
|
-
name: "ThrottlingException",
|
|
52
|
-
$fault: "client",
|
|
53
|
-
...opts,
|
|
54
|
-
});
|
|
55
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
56
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
export const ValidationExceptionReason = {
|
|
60
|
-
CANNOT_PARSE: "cannotParse",
|
|
61
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
62
|
-
OTHER: "other",
|
|
63
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
64
|
-
};
|
|
65
|
-
export class ValidationException extends __BaseException {
|
|
66
|
-
name = "ValidationException";
|
|
67
|
-
$fault = "client";
|
|
68
|
-
reason;
|
|
69
|
-
fieldList;
|
|
70
|
-
constructor(opts) {
|
|
71
|
-
super({
|
|
72
|
-
name: "ValidationException",
|
|
73
|
-
$fault: "client",
|
|
74
|
-
...opts,
|
|
75
|
-
});
|
|
76
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
77
|
-
this.reason = opts.reason;
|
|
78
|
-
this.fieldList = opts.fieldList;
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
export const Access = {
|
|
82
|
-
DISABLED: "DISABLED",
|
|
83
|
-
ENABLED: "ENABLED",
|
|
84
|
-
};
|
|
85
|
-
export const ResourceStatus = {
|
|
86
|
-
AVAILABLE: "AVAILABLE",
|
|
87
|
-
FAILED: "FAILED",
|
|
88
|
-
MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS",
|
|
89
|
-
PROVISIONING: "PROVISIONING",
|
|
90
|
-
TERMINATED: "TERMINATED",
|
|
91
|
-
TERMINATING: "TERMINATING",
|
|
92
|
-
UPDATING: "UPDATING",
|
|
93
|
-
};
|
|
94
|
-
export const ComputeModel = {
|
|
95
|
-
ECPU: "ECPU",
|
|
96
|
-
OCPU: "OCPU",
|
|
97
|
-
};
|
|
98
|
-
export const LicenseModel = {
|
|
99
|
-
BRING_YOUR_OWN_LICENSE: "BRING_YOUR_OWN_LICENSE",
|
|
100
|
-
LICENSE_INCLUDED: "LICENSE_INCLUDED",
|
|
101
|
-
};
|
|
102
|
-
export const DayOfWeekName = {
|
|
103
|
-
FRIDAY: "FRIDAY",
|
|
104
|
-
MONDAY: "MONDAY",
|
|
105
|
-
SATURDAY: "SATURDAY",
|
|
106
|
-
SUNDAY: "SUNDAY",
|
|
107
|
-
THURSDAY: "THURSDAY",
|
|
108
|
-
TUESDAY: "TUESDAY",
|
|
109
|
-
WEDNESDAY: "WEDNESDAY",
|
|
110
|
-
};
|
|
111
|
-
export const MonthName = {
|
|
112
|
-
APRIL: "APRIL",
|
|
113
|
-
AUGUST: "AUGUST",
|
|
114
|
-
DECEMBER: "DECEMBER",
|
|
115
|
-
FEBRUARY: "FEBRUARY",
|
|
116
|
-
JANUARY: "JANUARY",
|
|
117
|
-
JULY: "JULY",
|
|
118
|
-
JUNE: "JUNE",
|
|
119
|
-
MARCH: "MARCH",
|
|
120
|
-
MAY: "MAY",
|
|
121
|
-
NOVEMBER: "NOVEMBER",
|
|
122
|
-
OCTOBER: "OCTOBER",
|
|
123
|
-
SEPTEMBER: "SEPTEMBER",
|
|
124
|
-
};
|
|
125
|
-
export const PatchingModeType = {
|
|
126
|
-
NONROLLING: "NONROLLING",
|
|
127
|
-
ROLLING: "ROLLING",
|
|
128
|
-
};
|
|
129
|
-
export const PreferenceType = {
|
|
130
|
-
CUSTOM_PREFERENCE: "CUSTOM_PREFERENCE",
|
|
131
|
-
NO_PREFERENCE: "NO_PREFERENCE",
|
|
132
|
-
};
|
|
133
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
134
|
-
name = "ResourceNotFoundException";
|
|
135
|
-
$fault = "client";
|
|
136
|
-
resourceId;
|
|
137
|
-
resourceType;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "ResourceNotFoundException",
|
|
141
|
-
$fault: "client",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
145
|
-
this.resourceId = opts.resourceId;
|
|
146
|
-
this.resourceType = opts.resourceType;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
150
|
-
name = "ServiceQuotaExceededException";
|
|
151
|
-
$fault = "client";
|
|
152
|
-
resourceId;
|
|
153
|
-
resourceType;
|
|
154
|
-
quotaCode;
|
|
155
|
-
constructor(opts) {
|
|
156
|
-
super({
|
|
157
|
-
name: "ServiceQuotaExceededException",
|
|
158
|
-
$fault: "client",
|
|
159
|
-
...opts,
|
|
160
|
-
});
|
|
161
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
162
|
-
this.resourceId = opts.resourceId;
|
|
163
|
-
this.resourceType = opts.resourceType;
|
|
164
|
-
this.quotaCode = opts.quotaCode;
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
export const DbServerPatchingStatus = {
|
|
168
|
-
COMPLETE: "COMPLETE",
|
|
169
|
-
FAILED: "FAILED",
|
|
170
|
-
MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS",
|
|
171
|
-
SCHEDULED: "SCHEDULED",
|
|
172
|
-
};
|
|
173
|
-
export const DiskRedundancy = {
|
|
174
|
-
HIGH: "HIGH",
|
|
175
|
-
NORMAL: "NORMAL",
|
|
176
|
-
};
|
|
177
|
-
export const IormLifecycleState = {
|
|
178
|
-
BOOTSTRAPPING: "BOOTSTRAPPING",
|
|
179
|
-
DISABLED: "DISABLED",
|
|
180
|
-
ENABLED: "ENABLED",
|
|
181
|
-
FAILED: "FAILED",
|
|
182
|
-
UPDATING: "UPDATING",
|
|
183
|
-
};
|
|
184
|
-
export const Objective = {
|
|
185
|
-
AUTO: "AUTO",
|
|
186
|
-
BALANCED: "BALANCED",
|
|
187
|
-
BASIC: "BASIC",
|
|
188
|
-
HIGH_THROUGHPUT: "HIGH_THROUGHPUT",
|
|
189
|
-
LOW_LATENCY: "LOW_LATENCY",
|
|
190
|
-
};
|
|
191
|
-
export const DbNodeMaintenanceType = {
|
|
192
|
-
VMDB_REBOOT_MIGRATION: "VMDB_REBOOT_MIGRATION",
|
|
193
|
-
};
|
|
194
|
-
export const DbNodeResourceStatus = {
|
|
195
|
-
AVAILABLE: "AVAILABLE",
|
|
196
|
-
FAILED: "FAILED",
|
|
197
|
-
PROVISIONING: "PROVISIONING",
|
|
198
|
-
STARTING: "STARTING",
|
|
199
|
-
STOPPED: "STOPPED",
|
|
200
|
-
STOPPING: "STOPPING",
|
|
201
|
-
TERMINATED: "TERMINATED",
|
|
202
|
-
TERMINATING: "TERMINATING",
|
|
203
|
-
UPDATING: "UPDATING",
|
|
204
|
-
};
|
|
205
|
-
export const ShapeType = {
|
|
206
|
-
AMD: "AMD",
|
|
207
|
-
AMPERE_FLEX_A1: "AMPERE_FLEX_A1",
|
|
208
|
-
INTEL: "INTEL",
|
|
209
|
-
INTEL_FLEX_X9: "INTEL_FLEX_X9",
|
|
210
|
-
};
|
|
211
|
-
export const OciOnboardingStatus = {
|
|
212
|
-
ACTIVATING: "ACTIVATING",
|
|
213
|
-
ACTIVE: "ACTIVE",
|
|
214
|
-
ACTIVE_IN_HOME_REGION: "ACTIVE_IN_HOME_REGION",
|
|
215
|
-
ACTIVE_LIMITED: "ACTIVE_LIMITED",
|
|
216
|
-
CANCELED: "CANCELED",
|
|
217
|
-
FAILED: "FAILED",
|
|
218
|
-
NOT_STARTED: "NOT_STARTED",
|
|
219
|
-
PENDING_CUSTOMER_ACTION: "PENDING_CUSTOMER_ACTION",
|
|
220
|
-
PENDING_INITIALIZATION: "PENDING_INITIALIZATION",
|
|
221
|
-
PENDING_LINK_GENERATION: "PENDING_LINK_GENERATION",
|
|
222
|
-
PUBLIC_OFFER_UNSUPPORTED: "PUBLIC_OFFER_UNSUPPORTED",
|
|
223
|
-
SUSPENDED: "SUSPENDED",
|
|
224
|
-
};
|
|
225
|
-
export const ManagedResourceStatus = {
|
|
226
|
-
DISABLED: "DISABLED",
|
|
227
|
-
DISABLING: "DISABLING",
|
|
228
|
-
ENABLED: "ENABLED",
|
|
229
|
-
ENABLING: "ENABLING",
|
|
230
|
-
};
|
|
231
|
-
export const VpcEndpointType = {
|
|
232
|
-
SERVICENETWORK: "SERVICENETWORK",
|
|
233
|
-
};
|
|
1
|
+
export {};
|
|
@@ -439,7 +439,7 @@ const _wOM = "weeksOfMonth";
|
|
|
439
439
|
const _zEA = "zeroEtlAccess";
|
|
440
440
|
const n0 = "com.amazonaws.odb";
|
|
441
441
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
442
|
-
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
442
|
+
import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
443
443
|
import { OdbServiceException as __OdbServiceException } from "../models/OdbServiceException";
|
|
444
444
|
export var SensitiveString = [0, n0, _SS, 8, 0];
|
|
445
445
|
export var AcceptMarketplaceRegistrationInput = [3, n0, _AMRI, 0, [_mRT], [0]];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { OdbExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { OdbServiceException } from "./models/OdbServiceException";
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ValidationExceptionReason: {
|
|
6
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
7
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
8
|
+
readonly OTHER: "other";
|
|
9
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const Access: {
|
|
20
|
+
readonly DISABLED: "DISABLED";
|
|
21
|
+
readonly ENABLED: "ENABLED";
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export type Access = (typeof Access)[keyof typeof Access];
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
* @enum
|
|
30
|
+
*/
|
|
31
|
+
export declare const ResourceStatus: {
|
|
32
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
33
|
+
readonly FAILED: "FAILED";
|
|
34
|
+
readonly MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS";
|
|
35
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
36
|
+
readonly TERMINATED: "TERMINATED";
|
|
37
|
+
readonly TERMINATING: "TERMINATING";
|
|
38
|
+
readonly UPDATING: "UPDATING";
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
* @enum
|
|
47
|
+
*/
|
|
48
|
+
export declare const ComputeModel: {
|
|
49
|
+
readonly ECPU: "ECPU";
|
|
50
|
+
readonly OCPU: "OCPU";
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export type ComputeModel = (typeof ComputeModel)[keyof typeof ComputeModel];
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* @enum
|
|
59
|
+
*/
|
|
60
|
+
export declare const LicenseModel: {
|
|
61
|
+
readonly BRING_YOUR_OWN_LICENSE: "BRING_YOUR_OWN_LICENSE";
|
|
62
|
+
readonly LICENSE_INCLUDED: "LICENSE_INCLUDED";
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export type LicenseModel = (typeof LicenseModel)[keyof typeof LicenseModel];
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
* @enum
|
|
71
|
+
*/
|
|
72
|
+
export declare const DayOfWeekName: {
|
|
73
|
+
readonly FRIDAY: "FRIDAY";
|
|
74
|
+
readonly MONDAY: "MONDAY";
|
|
75
|
+
readonly SATURDAY: "SATURDAY";
|
|
76
|
+
readonly SUNDAY: "SUNDAY";
|
|
77
|
+
readonly THURSDAY: "THURSDAY";
|
|
78
|
+
readonly TUESDAY: "TUESDAY";
|
|
79
|
+
readonly WEDNESDAY: "WEDNESDAY";
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export type DayOfWeekName = (typeof DayOfWeekName)[keyof typeof DayOfWeekName];
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
* @enum
|
|
88
|
+
*/
|
|
89
|
+
export declare const MonthName: {
|
|
90
|
+
readonly APRIL: "APRIL";
|
|
91
|
+
readonly AUGUST: "AUGUST";
|
|
92
|
+
readonly DECEMBER: "DECEMBER";
|
|
93
|
+
readonly FEBRUARY: "FEBRUARY";
|
|
94
|
+
readonly JANUARY: "JANUARY";
|
|
95
|
+
readonly JULY: "JULY";
|
|
96
|
+
readonly JUNE: "JUNE";
|
|
97
|
+
readonly MARCH: "MARCH";
|
|
98
|
+
readonly MAY: "MAY";
|
|
99
|
+
readonly NOVEMBER: "NOVEMBER";
|
|
100
|
+
readonly OCTOBER: "OCTOBER";
|
|
101
|
+
readonly SEPTEMBER: "SEPTEMBER";
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
export type MonthName = (typeof MonthName)[keyof typeof MonthName];
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
* @enum
|
|
110
|
+
*/
|
|
111
|
+
export declare const PatchingModeType: {
|
|
112
|
+
readonly NONROLLING: "NONROLLING";
|
|
113
|
+
readonly ROLLING: "ROLLING";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type PatchingModeType = (typeof PatchingModeType)[keyof typeof PatchingModeType];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const PreferenceType: {
|
|
124
|
+
readonly CUSTOM_PREFERENCE: "CUSTOM_PREFERENCE";
|
|
125
|
+
readonly NO_PREFERENCE: "NO_PREFERENCE";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type PreferenceType = (typeof PreferenceType)[keyof typeof PreferenceType];
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* @enum
|
|
134
|
+
*/
|
|
135
|
+
export declare const DbServerPatchingStatus: {
|
|
136
|
+
readonly COMPLETE: "COMPLETE";
|
|
137
|
+
readonly FAILED: "FAILED";
|
|
138
|
+
readonly MAINTENANCE_IN_PROGRESS: "MAINTENANCE_IN_PROGRESS";
|
|
139
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type DbServerPatchingStatus = (typeof DbServerPatchingStatus)[keyof typeof DbServerPatchingStatus];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const DiskRedundancy: {
|
|
150
|
+
readonly HIGH: "HIGH";
|
|
151
|
+
readonly NORMAL: "NORMAL";
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export type DiskRedundancy = (typeof DiskRedundancy)[keyof typeof DiskRedundancy];
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const IormLifecycleState: {
|
|
162
|
+
readonly BOOTSTRAPPING: "BOOTSTRAPPING";
|
|
163
|
+
readonly DISABLED: "DISABLED";
|
|
164
|
+
readonly ENABLED: "ENABLED";
|
|
165
|
+
readonly FAILED: "FAILED";
|
|
166
|
+
readonly UPDATING: "UPDATING";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type IormLifecycleState = (typeof IormLifecycleState)[keyof typeof IormLifecycleState];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const Objective: {
|
|
177
|
+
readonly AUTO: "AUTO";
|
|
178
|
+
readonly BALANCED: "BALANCED";
|
|
179
|
+
readonly BASIC: "BASIC";
|
|
180
|
+
readonly HIGH_THROUGHPUT: "HIGH_THROUGHPUT";
|
|
181
|
+
readonly LOW_LATENCY: "LOW_LATENCY";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type Objective = (typeof Objective)[keyof typeof Objective];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const DbNodeMaintenanceType: {
|
|
192
|
+
readonly VMDB_REBOOT_MIGRATION: "VMDB_REBOOT_MIGRATION";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export type DbNodeMaintenanceType = (typeof DbNodeMaintenanceType)[keyof typeof DbNodeMaintenanceType];
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* @enum
|
|
201
|
+
*/
|
|
202
|
+
export declare const DbNodeResourceStatus: {
|
|
203
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
204
|
+
readonly FAILED: "FAILED";
|
|
205
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
206
|
+
readonly STARTING: "STARTING";
|
|
207
|
+
readonly STOPPED: "STOPPED";
|
|
208
|
+
readonly STOPPING: "STOPPING";
|
|
209
|
+
readonly TERMINATED: "TERMINATED";
|
|
210
|
+
readonly TERMINATING: "TERMINATING";
|
|
211
|
+
readonly UPDATING: "UPDATING";
|
|
212
|
+
};
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
export type DbNodeResourceStatus = (typeof DbNodeResourceStatus)[keyof typeof DbNodeResourceStatus];
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
* @enum
|
|
220
|
+
*/
|
|
221
|
+
export declare const ShapeType: {
|
|
222
|
+
readonly AMD: "AMD";
|
|
223
|
+
readonly AMPERE_FLEX_A1: "AMPERE_FLEX_A1";
|
|
224
|
+
readonly INTEL: "INTEL";
|
|
225
|
+
readonly INTEL_FLEX_X9: "INTEL_FLEX_X9";
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
export type ShapeType = (typeof ShapeType)[keyof typeof ShapeType];
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
* @enum
|
|
234
|
+
*/
|
|
235
|
+
export declare const OciOnboardingStatus: {
|
|
236
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
237
|
+
readonly ACTIVE: "ACTIVE";
|
|
238
|
+
readonly ACTIVE_IN_HOME_REGION: "ACTIVE_IN_HOME_REGION";
|
|
239
|
+
readonly ACTIVE_LIMITED: "ACTIVE_LIMITED";
|
|
240
|
+
readonly CANCELED: "CANCELED";
|
|
241
|
+
readonly FAILED: "FAILED";
|
|
242
|
+
readonly NOT_STARTED: "NOT_STARTED";
|
|
243
|
+
readonly PENDING_CUSTOMER_ACTION: "PENDING_CUSTOMER_ACTION";
|
|
244
|
+
readonly PENDING_INITIALIZATION: "PENDING_INITIALIZATION";
|
|
245
|
+
readonly PENDING_LINK_GENERATION: "PENDING_LINK_GENERATION";
|
|
246
|
+
readonly PUBLIC_OFFER_UNSUPPORTED: "PUBLIC_OFFER_UNSUPPORTED";
|
|
247
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* @public
|
|
251
|
+
*/
|
|
252
|
+
export type OciOnboardingStatus = (typeof OciOnboardingStatus)[keyof typeof OciOnboardingStatus];
|
|
253
|
+
/**
|
|
254
|
+
* @public
|
|
255
|
+
* @enum
|
|
256
|
+
*/
|
|
257
|
+
export declare const ManagedResourceStatus: {
|
|
258
|
+
readonly DISABLED: "DISABLED";
|
|
259
|
+
readonly DISABLING: "DISABLING";
|
|
260
|
+
readonly ENABLED: "ENABLED";
|
|
261
|
+
readonly ENABLING: "ENABLING";
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
export type ManagedResourceStatus = (typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
* @enum
|
|
270
|
+
*/
|
|
271
|
+
export declare const VpcEndpointType: {
|
|
272
|
+
readonly SERVICENETWORK: "SERVICENETWORK";
|
|
273
|
+
};
|
|
274
|
+
/**
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
export type VpcEndpointType = (typeof VpcEndpointType)[keyof typeof VpcEndpointType];
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
|
+
import { OdbServiceException as __BaseException } from "./OdbServiceException";
|
|
5
|
+
/**
|
|
6
|
+
* <p>You don't have sufficient access to perform this action. Make sure you have the required permissions and try again.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
10
|
+
readonly name: "AccessDeniedException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>Occurs when a conflict with the current status of your resource. Fix any inconsistencies with your resource and try again.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class ConflictException extends __BaseException {
|
|
22
|
+
readonly name: "ConflictException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
/**
|
|
25
|
+
* <p>The identifier of the resource that caused the conflict.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
resourceId: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The type of resource that caused the conflict.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
resourceType: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>Occurs when there is an internal failure in the Oracle Database@Amazon Web Services service. Wait and try again.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InternalServerException extends __BaseException {
|
|
44
|
+
readonly name: "InternalServerException";
|
|
45
|
+
readonly $fault: "server";
|
|
46
|
+
$retryable: {};
|
|
47
|
+
/**
|
|
48
|
+
* <p>The number of seconds to wait before retrying the request after an internal server error.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
retryAfterSeconds?: number | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>The request was denied due to request throttling.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class ThrottlingException extends __BaseException {
|
|
62
|
+
readonly name: "ThrottlingException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
/**
|
|
65
|
+
* <p>The number of seconds to wait before retrying the request after being throttled.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
retryAfterSeconds?: number | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
72
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* <p>The request has failed validation because it is missing required fields or has invalid inputs.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class ValidationException extends __BaseException {
|
|
79
|
+
readonly name: "ValidationException";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
/**
|
|
82
|
+
* <p>The reason why the validation failed.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
reason: ValidationExceptionReason | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>A list of fields that failed validation.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>The operation tried to access a resource that doesn't exist. Make sure you provided the correct resource and try again.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
101
|
+
readonly name: "ResourceNotFoundException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
/**
|
|
104
|
+
* <p>The identifier of the resource that was not found.</p>
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
107
|
+
resourceId: string | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* <p>The type of resource that was not found.</p>
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
resourceType: string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
116
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* <p>You have exceeded the service quota.</p>
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
123
|
+
readonly name: "ServiceQuotaExceededException";
|
|
124
|
+
readonly $fault: "client";
|
|
125
|
+
/**
|
|
126
|
+
* <p>The identifier of the resource that exceeded the service quota.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
resourceId: string | undefined;
|
|
130
|
+
/**
|
|
131
|
+
* <p>The type of resource that exceeded the service quota.</p>
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
resourceType: string | undefined;
|
|
135
|
+
/**
|
|
136
|
+
* <p>The unqiue identifier of the service quota that was exceeded.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
quotaCode: string | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
144
|
+
}
|