@aws-sdk/client-bedrock-agent-runtime 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.
Files changed (59) hide show
  1. package/dist-cjs/index.js +345 -345
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +330 -0
  4. package/dist-es/models/errors.js +127 -0
  5. package/dist-es/models/models_0.js +1 -431
  6. package/dist-es/schemas/schemas_0.js +1 -1
  7. package/dist-types/commands/CreateInvocationCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateSessionCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteSessionCommand.d.ts +1 -1
  10. package/dist-types/commands/EndSessionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetInvocationStepCommand.d.ts +1 -1
  12. package/dist-types/commands/GetSessionCommand.d.ts +1 -1
  13. package/dist-types/commands/InvokeAgentCommand.d.ts +1 -2
  14. package/dist-types/commands/InvokeInlineAgentCommand.d.ts +1 -2
  15. package/dist-types/commands/ListInvocationStepsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListInvocationsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListSessionsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/PutInvocationStepCommand.d.ts +1 -1
  20. package/dist-types/commands/RetrieveAndGenerateCommand.d.ts +1 -1
  21. package/dist-types/commands/RetrieveAndGenerateStreamCommand.d.ts +1 -1
  22. package/dist-types/commands/RetrieveCommand.d.ts +1 -1
  23. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  24. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateSessionCommand.d.ts +1 -1
  26. package/dist-types/index.d.ts +3 -1
  27. package/dist-types/models/enums.d.ts +850 -0
  28. package/dist-types/models/errors.d.ts +137 -0
  29. package/dist-types/models/models_0.d.ts +2078 -914
  30. package/dist-types/ts3.4/commands/CreateInvocationCommand.d.ts +1 -1
  31. package/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +1 -1
  32. package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +1 -1
  33. package/dist-types/ts3.4/commands/EndSessionCommand.d.ts +1 -1
  34. package/dist-types/ts3.4/commands/GetInvocationStepCommand.d.ts +1 -1
  35. package/dist-types/ts3.4/commands/GetSessionCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/commands/InvokeAgentCommand.d.ts +1 -2
  37. package/dist-types/ts3.4/commands/InvokeInlineAgentCommand.d.ts +4 -2
  38. package/dist-types/ts3.4/commands/ListInvocationStepsCommand.d.ts +1 -1
  39. package/dist-types/ts3.4/commands/ListInvocationsCommand.d.ts +1 -1
  40. package/dist-types/ts3.4/commands/ListSessionsCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/PutInvocationStepCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/RetrieveAndGenerateCommand.d.ts +1 -1
  44. package/dist-types/ts3.4/commands/RetrieveAndGenerateStreamCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/RetrieveCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/UpdateSessionCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/index.d.ts +3 -1
  50. package/dist-types/ts3.4/models/enums.d.ts +442 -0
  51. package/dist-types/ts3.4/models/errors.d.ts +73 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +968 -479
  53. package/package.json +12 -12
  54. package/dist-es/models/index.js +0 -2
  55. package/dist-es/models/models_1.js +0 -26
  56. package/dist-types/models/index.d.ts +0 -2
  57. package/dist-types/models/models_1.d.ts +0 -2151
  58. package/dist-types/ts3.4/models/index.d.ts +0 -2
  59. package/dist-types/ts3.4/models/models_1.d.ts +0 -969
package/dist-es/index.js CHANGED
@@ -2,5 +2,6 @@ export * from "./BedrockAgentRuntimeClient";
2
2
  export * from "./BedrockAgentRuntime";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
- export * from "./models";
5
+ export * from "./models/enums";
6
+ export * from "./models/errors";
6
7
  export { BedrockAgentRuntimeServiceException } from "./models/BedrockAgentRuntimeServiceException";
@@ -0,0 +1,330 @@
1
+ export const CustomControlMethod = {
2
+ RETURN_CONTROL: "RETURN_CONTROL",
3
+ };
4
+ export const ExecutionType = {
5
+ LAMBDA: "LAMBDA",
6
+ RETURN_CONTROL: "RETURN_CONTROL",
7
+ };
8
+ export const ActionGroupSignature = {
9
+ AMAZON_CODEINTERPRETER: "AMAZON.CodeInterpreter",
10
+ AMAZON_USERINPUT: "AMAZON.UserInput",
11
+ ANTHROPIC_BASH: "ANTHROPIC.Bash",
12
+ ANTHROPIC_COMPUTER: "ANTHROPIC.Computer",
13
+ ANTHROPIC_TEXTEDITOR: "ANTHROPIC.TextEditor",
14
+ };
15
+ export const ActionInvocationType = {
16
+ RESULT: "RESULT",
17
+ USER_CONFIRMATION: "USER_CONFIRMATION",
18
+ USER_CONFIRMATION_AND_RESULT: "USER_CONFIRMATION_AND_RESULT",
19
+ };
20
+ export const ParameterType = {
21
+ ARRAY: "array",
22
+ BOOLEAN: "boolean",
23
+ INTEGER: "integer",
24
+ NUMBER: "number",
25
+ STRING: "string",
26
+ };
27
+ export const RequireConfirmation = {
28
+ DISABLED: "DISABLED",
29
+ ENABLED: "ENABLED",
30
+ };
31
+ export const AgentCollaboration = {
32
+ DISABLED: "DISABLED",
33
+ SUPERVISOR: "SUPERVISOR",
34
+ SUPERVISOR_ROUTER: "SUPERVISOR_ROUTER",
35
+ };
36
+ export const ConfirmationState = {
37
+ CONFIRM: "CONFIRM",
38
+ DENY: "DENY",
39
+ };
40
+ export const ImageInputFormat = {
41
+ GIF: "gif",
42
+ JPEG: "jpeg",
43
+ PNG: "png",
44
+ WEBP: "webp",
45
+ };
46
+ export const ResponseState = {
47
+ FAILURE: "FAILURE",
48
+ REPROMPT: "REPROMPT",
49
+ };
50
+ export const PayloadType = {
51
+ RETURN_CONTROL: "RETURN_CONTROL",
52
+ TEXT: "TEXT",
53
+ };
54
+ export const GuardrailAction = {
55
+ INTERVENED: "INTERVENED",
56
+ NONE: "NONE",
57
+ };
58
+ export const GuardrailContentPolicyAction = {
59
+ BLOCKED: "BLOCKED",
60
+ };
61
+ export const GuardrailContentFilterConfidence = {
62
+ HIGH: "HIGH",
63
+ LOW: "LOW",
64
+ MEDIUM: "MEDIUM",
65
+ NONE: "NONE",
66
+ };
67
+ export const GuardrailContentFilterType = {
68
+ HATE: "HATE",
69
+ INSULTS: "INSULTS",
70
+ MISCONDUCT: "MISCONDUCT",
71
+ PROMPT_ATTACK: "PROMPT_ATTACK",
72
+ SEXUAL: "SEXUAL",
73
+ VIOLENCE: "VIOLENCE",
74
+ };
75
+ export const GuardrailSensitiveInformationPolicyAction = {
76
+ ANONYMIZED: "ANONYMIZED",
77
+ BLOCKED: "BLOCKED",
78
+ };
79
+ export const GuardrailPiiEntityType = {
80
+ ADDRESS: "ADDRESS",
81
+ AGE: "AGE",
82
+ AWS_ACCESS_KEY: "AWS_ACCESS_KEY",
83
+ AWS_SECRET_KEY: "AWS_SECRET_KEY",
84
+ CA_HEALTH_NUMBER: "CA_HEALTH_NUMBER",
85
+ CA_SOCIAL_INSURANCE_NUMBER: "CA_SOCIAL_INSURANCE_NUMBER",
86
+ CREDIT_DEBIT_CARD_CVV: "CREDIT_DEBIT_CARD_CVV",
87
+ CREDIT_DEBIT_CARD_EXPIRY: "CREDIT_DEBIT_CARD_EXPIRY",
88
+ CREDIT_DEBIT_CARD_NUMBER: "CREDIT_DEBIT_CARD_NUMBER",
89
+ DRIVER_ID: "DRIVER_ID",
90
+ EMAIL: "EMAIL",
91
+ INTERNATIONAL_BANK_ACCOUNT_NUMBER: "INTERNATIONAL_BANK_ACCOUNT_NUMBER",
92
+ IP_ADDRESS: "IP_ADDRESS",
93
+ LICENSE_PLATE: "LICENSE_PLATE",
94
+ MAC_ADDRESS: "MAC_ADDRESS",
95
+ NAME: "NAME",
96
+ PASSWORD: "PASSWORD",
97
+ PHONE: "PHONE",
98
+ PIN: "PIN",
99
+ SWIFT_CODE: "SWIFT_CODE",
100
+ UK_NATIONAL_HEALTH_SERVICE_NUMBER: "UK_NATIONAL_HEALTH_SERVICE_NUMBER",
101
+ UK_NATIONAL_INSURANCE_NUMBER: "UK_NATIONAL_INSURANCE_NUMBER",
102
+ UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER: "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER",
103
+ URL: "URL",
104
+ USERNAME: "USERNAME",
105
+ US_BANK_ACCOUNT_NUMBER: "US_BANK_ACCOUNT_NUMBER",
106
+ US_BANK_ROUTING_NUMBER: "US_BANK_ROUTING_NUMBER",
107
+ US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER: "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER",
108
+ US_PASSPORT_NUMBER: "US_PASSPORT_NUMBER",
109
+ US_SOCIAL_SECURITY_NUMBER: "US_SOCIAL_SECURITY_NUMBER",
110
+ VEHICLE_IDENTIFICATION_NUMBER: "VEHICLE_IDENTIFICATION_NUMBER",
111
+ };
112
+ export const GuardrailTopicPolicyAction = {
113
+ BLOCKED: "BLOCKED",
114
+ };
115
+ export const GuardrailTopicType = {
116
+ DENY: "DENY",
117
+ };
118
+ export const GuardrailWordPolicyAction = {
119
+ BLOCKED: "BLOCKED",
120
+ };
121
+ export const GuardrailManagedWordType = {
122
+ PROFANITY: "PROFANITY",
123
+ };
124
+ export const InvocationType = {
125
+ ACTION_GROUP: "ACTION_GROUP",
126
+ ACTION_GROUP_CODE_INTERPRETER: "ACTION_GROUP_CODE_INTERPRETER",
127
+ AGENT_COLLABORATOR: "AGENT_COLLABORATOR",
128
+ FINISH: "FINISH",
129
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
130
+ };
131
+ export const CreationMode = {
132
+ DEFAULT: "DEFAULT",
133
+ OVERRIDDEN: "OVERRIDDEN",
134
+ };
135
+ export const PromptType = {
136
+ KNOWLEDGE_BASE_RESPONSE_GENERATION: "KNOWLEDGE_BASE_RESPONSE_GENERATION",
137
+ ORCHESTRATION: "ORCHESTRATION",
138
+ POST_PROCESSING: "POST_PROCESSING",
139
+ PRE_PROCESSING: "PRE_PROCESSING",
140
+ ROUTING_CLASSIFIER: "ROUTING_CLASSIFIER",
141
+ };
142
+ export const RetrievalResultContentColumnType = {
143
+ BLOB: "BLOB",
144
+ BOOLEAN: "BOOLEAN",
145
+ DOUBLE: "DOUBLE",
146
+ LONG: "LONG",
147
+ NULL: "NULL",
148
+ STRING: "STRING",
149
+ };
150
+ export const RetrievalResultContentType = {
151
+ IMAGE: "IMAGE",
152
+ ROW: "ROW",
153
+ TEXT: "TEXT",
154
+ };
155
+ export const RetrievalResultLocationType = {
156
+ CONFLUENCE: "CONFLUENCE",
157
+ CUSTOM: "CUSTOM",
158
+ KENDRA: "KENDRA",
159
+ S3: "S3",
160
+ SALESFORCE: "SALESFORCE",
161
+ SHAREPOINT: "SHAREPOINT",
162
+ SQL: "SQL",
163
+ WEB: "WEB",
164
+ };
165
+ export const Source = {
166
+ ACTION_GROUP: "ACTION_GROUP",
167
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
168
+ PARSER: "PARSER",
169
+ };
170
+ export const Type = {
171
+ ACTION_GROUP: "ACTION_GROUP",
172
+ AGENT_COLLABORATOR: "AGENT_COLLABORATOR",
173
+ ASK_USER: "ASK_USER",
174
+ FINISH: "FINISH",
175
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
176
+ REPROMPT: "REPROMPT",
177
+ };
178
+ export const FlowExecutionErrorType = {
179
+ TIMED_OUT: "ExecutionTimedOut",
180
+ };
181
+ export const FlowExecutionStatus = {
182
+ ABORTED: "Aborted",
183
+ FAILED: "Failed",
184
+ RUNNING: "Running",
185
+ SUCCEEDED: "Succeeded",
186
+ TIMED_OUT: "TimedOut",
187
+ };
188
+ export const FlowExecutionEventType = {
189
+ FLOW: "Flow",
190
+ NODE: "Node",
191
+ };
192
+ export const FlowErrorCode = {
193
+ INTERNAL_SERVER: "INTERNAL_SERVER",
194
+ NODE_EXECUTION_FAILED: "NODE_EXECUTION_FAILED",
195
+ VALIDATION: "VALIDATION",
196
+ };
197
+ export const NodeErrorCode = {
198
+ BAD_GATEWAY: "BAD_GATEWAY",
199
+ DEPENDENCY_FAILED: "DEPENDENCY_FAILED",
200
+ INTERNAL_SERVER: "INTERNAL_SERVER",
201
+ VALIDATION: "VALIDATION",
202
+ };
203
+ export const FlowNodeInputCategory = {
204
+ EXIT_LOOP: "ExitLoop",
205
+ LOOP_CONDITION: "LoopCondition",
206
+ RETURN_VALUE_TO_LOOP_START: "ReturnValueToLoopStart",
207
+ };
208
+ export const FlowControlNodeType = {
209
+ ITERATOR: "Iterator",
210
+ LOOP: "Loop",
211
+ };
212
+ export const FlowNodeIODataType = {
213
+ ARRAY: "Array",
214
+ BOOLEAN: "Boolean",
215
+ NUMBER: "Number",
216
+ OBJECT: "Object",
217
+ STRING: "String",
218
+ };
219
+ export const PerformanceConfigLatency = {
220
+ OPTIMIZED: "optimized",
221
+ STANDARD: "standard",
222
+ };
223
+ export const FlowCompletionReason = {
224
+ INPUT_REQUIRED: "INPUT_REQUIRED",
225
+ SUCCESS: "SUCCESS",
226
+ };
227
+ export const NodeType = {
228
+ CONDITION_NODE: "ConditionNode",
229
+ FLOW_INPUT_NODE: "FlowInputNode",
230
+ FLOW_OUTPUT_NODE: "FlowOutputNode",
231
+ KNOWLEDGE_BASE_NODE: "KnowledgeBaseNode",
232
+ LAMBDA_FUNCTION_NODE: "LambdaFunctionNode",
233
+ LEX_NODE: "LexNode",
234
+ PROMPT_NODE: "PromptNode",
235
+ };
236
+ export const InputQueryType = {
237
+ TEXT: "TEXT",
238
+ };
239
+ export const QueryTransformationMode = {
240
+ TEXT_TO_SQL: "TEXT_TO_SQL",
241
+ };
242
+ export const TextToSqlConfigurationType = {
243
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
244
+ };
245
+ export const GeneratedQueryType = {
246
+ REDSHIFT_SQL: "REDSHIFT_SQL",
247
+ };
248
+ export const ConversationRole = {
249
+ ASSISTANT: "assistant",
250
+ USER: "user",
251
+ };
252
+ export const FileSourceType = {
253
+ BYTE_CONTENT: "BYTE_CONTENT",
254
+ S3: "S3",
255
+ };
256
+ export const FileUseCase = {
257
+ CHAT: "CHAT",
258
+ CODE_INTERPRETER: "CODE_INTERPRETER",
259
+ };
260
+ export const AttributeType = {
261
+ BOOLEAN: "BOOLEAN",
262
+ NUMBER: "NUMBER",
263
+ STRING: "STRING",
264
+ STRING_LIST: "STRING_LIST",
265
+ };
266
+ export const SearchType = {
267
+ HYBRID: "HYBRID",
268
+ SEMANTIC: "SEMANTIC",
269
+ };
270
+ export const RerankingMetadataSelectionMode = {
271
+ ALL: "ALL",
272
+ SELECTIVE: "SELECTIVE",
273
+ };
274
+ export const VectorSearchRerankingConfigurationType = {
275
+ BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL",
276
+ };
277
+ export const RelayConversationHistory = {
278
+ DISABLED: "DISABLED",
279
+ TO_COLLABORATOR: "TO_COLLABORATOR",
280
+ };
281
+ export const PromptState = {
282
+ DISABLED: "DISABLED",
283
+ ENABLED: "ENABLED",
284
+ };
285
+ export const OrchestrationType = {
286
+ CUSTOM_ORCHESTRATION: "CUSTOM_ORCHESTRATION",
287
+ DEFAULT: "DEFAULT",
288
+ };
289
+ export const MemoryType = {
290
+ SESSION_SUMMARY: "SESSION_SUMMARY",
291
+ };
292
+ export const RerankQueryContentType = {
293
+ TEXT: "TEXT",
294
+ };
295
+ export const RerankingConfigurationType = {
296
+ BEDROCK_RERANKING_MODEL: "BEDROCK_RERANKING_MODEL",
297
+ };
298
+ export const RerankDocumentType = {
299
+ JSON: "JSON",
300
+ TEXT: "TEXT",
301
+ };
302
+ export const RerankSourceType = {
303
+ INLINE: "INLINE",
304
+ };
305
+ export const ExternalSourceType = {
306
+ BYTE_CONTENT: "BYTE_CONTENT",
307
+ S3: "S3",
308
+ };
309
+ export const QueryTransformationType = {
310
+ QUERY_DECOMPOSITION: "QUERY_DECOMPOSITION",
311
+ };
312
+ export const RetrieveAndGenerateType = {
313
+ EXTERNAL_SOURCES: "EXTERNAL_SOURCES",
314
+ KNOWLEDGE_BASE: "KNOWLEDGE_BASE",
315
+ };
316
+ export const GuadrailAction = {
317
+ INTERVENED: "INTERVENED",
318
+ NONE: "NONE",
319
+ };
320
+ export const SessionStatus = {
321
+ ACTIVE: "ACTIVE",
322
+ ENDED: "ENDED",
323
+ EXPIRED: "EXPIRED",
324
+ };
325
+ export const ImageFormat = {
326
+ GIF: "gif",
327
+ JPEG: "jpeg",
328
+ PNG: "png",
329
+ WEBP: "webp",
330
+ };
@@ -0,0 +1,127 @@
1
+ import { BedrockAgentRuntimeServiceException as __BaseException } from "./BedrockAgentRuntimeServiceException";
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 InternalServerException extends __BaseException {
15
+ name = "InternalServerException";
16
+ $fault = "server";
17
+ reason;
18
+ constructor(opts) {
19
+ super({
20
+ name: "InternalServerException",
21
+ $fault: "server",
22
+ ...opts,
23
+ });
24
+ Object.setPrototypeOf(this, InternalServerException.prototype);
25
+ this.reason = opts.reason;
26
+ }
27
+ }
28
+ export class ResourceNotFoundException extends __BaseException {
29
+ name = "ResourceNotFoundException";
30
+ $fault = "client";
31
+ constructor(opts) {
32
+ super({
33
+ name: "ResourceNotFoundException",
34
+ $fault: "client",
35
+ ...opts,
36
+ });
37
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
38
+ }
39
+ }
40
+ export class ThrottlingException extends __BaseException {
41
+ name = "ThrottlingException";
42
+ $fault = "client";
43
+ constructor(opts) {
44
+ super({
45
+ name: "ThrottlingException",
46
+ $fault: "client",
47
+ ...opts,
48
+ });
49
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
50
+ }
51
+ }
52
+ export class ValidationException extends __BaseException {
53
+ name = "ValidationException";
54
+ $fault = "client";
55
+ constructor(opts) {
56
+ super({
57
+ name: "ValidationException",
58
+ $fault: "client",
59
+ ...opts,
60
+ });
61
+ Object.setPrototypeOf(this, ValidationException.prototype);
62
+ }
63
+ }
64
+ export class BadGatewayException extends __BaseException {
65
+ name = "BadGatewayException";
66
+ $fault = "server";
67
+ resourceName;
68
+ constructor(opts) {
69
+ super({
70
+ name: "BadGatewayException",
71
+ $fault: "server",
72
+ ...opts,
73
+ });
74
+ Object.setPrototypeOf(this, BadGatewayException.prototype);
75
+ this.resourceName = opts.resourceName;
76
+ }
77
+ }
78
+ export class ConflictException extends __BaseException {
79
+ name = "ConflictException";
80
+ $fault = "client";
81
+ constructor(opts) {
82
+ super({
83
+ name: "ConflictException",
84
+ $fault: "client",
85
+ ...opts,
86
+ });
87
+ Object.setPrototypeOf(this, ConflictException.prototype);
88
+ }
89
+ }
90
+ export class DependencyFailedException extends __BaseException {
91
+ name = "DependencyFailedException";
92
+ $fault = "client";
93
+ resourceName;
94
+ constructor(opts) {
95
+ super({
96
+ name: "DependencyFailedException",
97
+ $fault: "client",
98
+ ...opts,
99
+ });
100
+ Object.setPrototypeOf(this, DependencyFailedException.prototype);
101
+ this.resourceName = opts.resourceName;
102
+ }
103
+ }
104
+ export class ServiceQuotaExceededException extends __BaseException {
105
+ name = "ServiceQuotaExceededException";
106
+ $fault = "client";
107
+ constructor(opts) {
108
+ super({
109
+ name: "ServiceQuotaExceededException",
110
+ $fault: "client",
111
+ ...opts,
112
+ });
113
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
114
+ }
115
+ }
116
+ export class ModelNotReadyException extends __BaseException {
117
+ name = "ModelNotReadyException";
118
+ $fault = "client";
119
+ constructor(opts) {
120
+ super({
121
+ name: "ModelNotReadyException",
122
+ $fault: "client",
123
+ ...opts,
124
+ });
125
+ Object.setPrototypeOf(this, ModelNotReadyException.prototype);
126
+ }
127
+ }