@aws-sdk/client-bedrock-agentcore-control 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.
- package/dist-cjs/index.js +171 -170
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +170 -0
- package/dist-es/models/errors.js +175 -0
- package/dist-es/models/models_0.js +1 -345
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +378 -0
- package/dist-types/models/errors.d.ts +176 -0
- package/dist-types/models/models_0.d.ts +1 -552
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +212 -0
- package/dist-types/ts3.4/models/errors.d.ts +99 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -309
- 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,29 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BedrockAgentCoreControlServiceException as __BaseException } from "./BedrockAgentCoreControlServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>This exception is thrown when a request is denied per access permissions</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* <p>This exception is thrown when there is a conflict performing an operation</p>
|
|
17
|
-
* @public
|
|
18
|
-
*/
|
|
19
|
-
export declare class ConflictException extends __BaseException {
|
|
20
|
-
readonly name: "ConflictException";
|
|
21
|
-
readonly $fault: "client";
|
|
22
|
-
/**
|
|
23
|
-
* @internal
|
|
24
|
-
*/
|
|
25
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
26
|
-
}
|
|
1
|
+
import { AgentManagedRuntimeType, AgentRuntimeEndpointStatus, AgentRuntimeStatus, ApiKeyCredentialLocation, AuthorizerType, BrowserNetworkMode, BrowserStatus, CodeInterpreterNetworkMode, CodeInterpreterStatus, CredentialProviderType, CredentialProviderVendorType, ExceptionLevel, GatewayProtocolType, GatewayStatus, KeyType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, NetworkMode, OverrideType, ResourceType, SchemaType, SearchType, ServerProtocol, TargetStatus } from "./enums";
|
|
27
2
|
/**
|
|
28
3
|
* @public
|
|
29
4
|
*/
|
|
@@ -59,22 +34,6 @@ export interface CreateAgentRuntimeEndpointRequest {
|
|
|
59
34
|
*/
|
|
60
35
|
tags?: Record<string, string> | undefined;
|
|
61
36
|
}
|
|
62
|
-
/**
|
|
63
|
-
* @public
|
|
64
|
-
* @enum
|
|
65
|
-
*/
|
|
66
|
-
export declare const AgentRuntimeEndpointStatus: {
|
|
67
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
68
|
-
readonly CREATING: "CREATING";
|
|
69
|
-
readonly DELETING: "DELETING";
|
|
70
|
-
readonly READY: "READY";
|
|
71
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
72
|
-
readonly UPDATING: "UPDATING";
|
|
73
|
-
};
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export type AgentRuntimeEndpointStatus = (typeof AgentRuntimeEndpointStatus)[keyof typeof AgentRuntimeEndpointStatus];
|
|
78
37
|
/**
|
|
79
38
|
* @public
|
|
80
39
|
*/
|
|
@@ -115,54 +74,6 @@ export interface CreateAgentRuntimeEndpointResponse {
|
|
|
115
74
|
*/
|
|
116
75
|
createdAt: Date | undefined;
|
|
117
76
|
}
|
|
118
|
-
/**
|
|
119
|
-
* <p>This exception is thrown if there was an unexpected error during processing of request</p>
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
export declare class InternalServerException extends __BaseException {
|
|
123
|
-
readonly name: "InternalServerException";
|
|
124
|
-
readonly $fault: "server";
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* <p>This exception is thrown when a resource referenced by the operation does not exist</p>
|
|
132
|
-
* @public
|
|
133
|
-
*/
|
|
134
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
135
|
-
readonly name: "ResourceNotFoundException";
|
|
136
|
-
readonly $fault: "client";
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
141
|
-
}
|
|
142
|
-
/**
|
|
143
|
-
* <p>This exception is thrown when a request is made beyond the service quota</p>
|
|
144
|
-
* @public
|
|
145
|
-
*/
|
|
146
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
147
|
-
readonly name: "ServiceQuotaExceededException";
|
|
148
|
-
readonly $fault: "client";
|
|
149
|
-
/**
|
|
150
|
-
* @internal
|
|
151
|
-
*/
|
|
152
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
153
|
-
}
|
|
154
|
-
/**
|
|
155
|
-
* <p>This exception is thrown when the number of requests exceeds the limit</p>
|
|
156
|
-
* @public
|
|
157
|
-
*/
|
|
158
|
-
export declare class ThrottlingException extends __BaseException {
|
|
159
|
-
readonly name: "ThrottlingException";
|
|
160
|
-
readonly $fault: "client";
|
|
161
|
-
/**
|
|
162
|
-
* @internal
|
|
163
|
-
*/
|
|
164
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
165
|
-
}
|
|
166
77
|
/**
|
|
167
78
|
* <p>Stores information about a field passed inside a request that resulted in an exception.</p>
|
|
168
79
|
* @public
|
|
@@ -179,35 +90,6 @@ export interface ValidationExceptionField {
|
|
|
179
90
|
*/
|
|
180
91
|
message: string | undefined;
|
|
181
92
|
}
|
|
182
|
-
/**
|
|
183
|
-
* @public
|
|
184
|
-
* @enum
|
|
185
|
-
*/
|
|
186
|
-
export declare const ValidationExceptionReason: {
|
|
187
|
-
readonly CANNOT_PARSE: "CannotParse";
|
|
188
|
-
readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
|
|
189
|
-
readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
|
|
190
|
-
readonly RESOURCE_CONFLICT: "ResourceConflict";
|
|
191
|
-
readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
|
|
192
|
-
};
|
|
193
|
-
/**
|
|
194
|
-
* @public
|
|
195
|
-
*/
|
|
196
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
197
|
-
/**
|
|
198
|
-
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
199
|
-
* @public
|
|
200
|
-
*/
|
|
201
|
-
export declare class ValidationException extends __BaseException {
|
|
202
|
-
readonly name: "ValidationException";
|
|
203
|
-
readonly $fault: "client";
|
|
204
|
-
reason: ValidationExceptionReason | undefined;
|
|
205
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
210
|
-
}
|
|
211
93
|
/**
|
|
212
94
|
* @public
|
|
213
95
|
*/
|
|
@@ -484,20 +366,6 @@ export interface UpdateAgentRuntimeEndpointResponse {
|
|
|
484
366
|
*/
|
|
485
367
|
lastUpdatedAt: Date | undefined;
|
|
486
368
|
}
|
|
487
|
-
/**
|
|
488
|
-
* @public
|
|
489
|
-
* @enum
|
|
490
|
-
*/
|
|
491
|
-
export declare const AgentManagedRuntimeType: {
|
|
492
|
-
readonly PYTHON_3_10: "PYTHON_3_10";
|
|
493
|
-
readonly PYTHON_3_11: "PYTHON_3_11";
|
|
494
|
-
readonly PYTHON_3_12: "PYTHON_3_12";
|
|
495
|
-
readonly PYTHON_3_13: "PYTHON_3_13";
|
|
496
|
-
};
|
|
497
|
-
/**
|
|
498
|
-
* @public
|
|
499
|
-
*/
|
|
500
|
-
export type AgentManagedRuntimeType = (typeof AgentManagedRuntimeType)[keyof typeof AgentManagedRuntimeType];
|
|
501
369
|
/**
|
|
502
370
|
* <p>The Amazon S3 location for storing data. This structure defines where in Amazon S3 data is stored.</p>
|
|
503
371
|
* @public
|
|
@@ -699,18 +567,6 @@ export interface LifecycleConfiguration {
|
|
|
699
567
|
*/
|
|
700
568
|
maxLifetime?: number | undefined;
|
|
701
569
|
}
|
|
702
|
-
/**
|
|
703
|
-
* @public
|
|
704
|
-
* @enum
|
|
705
|
-
*/
|
|
706
|
-
export declare const NetworkMode: {
|
|
707
|
-
readonly PUBLIC: "PUBLIC";
|
|
708
|
-
readonly VPC: "VPC";
|
|
709
|
-
};
|
|
710
|
-
/**
|
|
711
|
-
* @public
|
|
712
|
-
*/
|
|
713
|
-
export type NetworkMode = (typeof NetworkMode)[keyof typeof NetworkMode];
|
|
714
570
|
/**
|
|
715
571
|
* <p>VpcConfig for the Agent.</p>
|
|
716
572
|
* @public
|
|
@@ -743,19 +599,6 @@ export interface NetworkConfiguration {
|
|
|
743
599
|
*/
|
|
744
600
|
networkModeConfig?: VpcConfig | undefined;
|
|
745
601
|
}
|
|
746
|
-
/**
|
|
747
|
-
* @public
|
|
748
|
-
* @enum
|
|
749
|
-
*/
|
|
750
|
-
export declare const ServerProtocol: {
|
|
751
|
-
readonly A2A: "A2A";
|
|
752
|
-
readonly HTTP: "HTTP";
|
|
753
|
-
readonly MCP: "MCP";
|
|
754
|
-
};
|
|
755
|
-
/**
|
|
756
|
-
* @public
|
|
757
|
-
*/
|
|
758
|
-
export type ServerProtocol = (typeof ServerProtocol)[keyof typeof ServerProtocol];
|
|
759
602
|
/**
|
|
760
603
|
* <p>The protocol configuration for an agent runtime. This structure defines how the agent runtime communicates with clients.</p>
|
|
761
604
|
* @public
|
|
@@ -865,22 +708,6 @@ export interface CreateAgentRuntimeRequest {
|
|
|
865
708
|
*/
|
|
866
709
|
tags?: Record<string, string> | undefined;
|
|
867
710
|
}
|
|
868
|
-
/**
|
|
869
|
-
* @public
|
|
870
|
-
* @enum
|
|
871
|
-
*/
|
|
872
|
-
export declare const AgentRuntimeStatus: {
|
|
873
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
874
|
-
readonly CREATING: "CREATING";
|
|
875
|
-
readonly DELETING: "DELETING";
|
|
876
|
-
readonly READY: "READY";
|
|
877
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
878
|
-
readonly UPDATING: "UPDATING";
|
|
879
|
-
};
|
|
880
|
-
/**
|
|
881
|
-
* @public
|
|
882
|
-
*/
|
|
883
|
-
export type AgentRuntimeStatus = (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
|
|
884
711
|
/**
|
|
885
712
|
* <p>The information about the workload identity.</p>
|
|
886
713
|
* @public
|
|
@@ -1319,54 +1146,6 @@ export interface CreateApiKeyCredentialProviderResponse {
|
|
|
1319
1146
|
*/
|
|
1320
1147
|
credentialProviderArn: string | undefined;
|
|
1321
1148
|
}
|
|
1322
|
-
/**
|
|
1323
|
-
* <p>Exception thrown when decryption of a secret fails.</p>
|
|
1324
|
-
* @public
|
|
1325
|
-
*/
|
|
1326
|
-
export declare class DecryptionFailure extends __BaseException {
|
|
1327
|
-
readonly name: "DecryptionFailure";
|
|
1328
|
-
readonly $fault: "client";
|
|
1329
|
-
/**
|
|
1330
|
-
* @internal
|
|
1331
|
-
*/
|
|
1332
|
-
constructor(opts: __ExceptionOptionType<DecryptionFailure, __BaseException>);
|
|
1333
|
-
}
|
|
1334
|
-
/**
|
|
1335
|
-
* <p>Exception thrown when encryption of a secret fails.</p>
|
|
1336
|
-
* @public
|
|
1337
|
-
*/
|
|
1338
|
-
export declare class EncryptionFailure extends __BaseException {
|
|
1339
|
-
readonly name: "EncryptionFailure";
|
|
1340
|
-
readonly $fault: "client";
|
|
1341
|
-
/**
|
|
1342
|
-
* @internal
|
|
1343
|
-
*/
|
|
1344
|
-
constructor(opts: __ExceptionOptionType<EncryptionFailure, __BaseException>);
|
|
1345
|
-
}
|
|
1346
|
-
/**
|
|
1347
|
-
* <p>Exception thrown when a resource limit is exceeded.</p>
|
|
1348
|
-
* @public
|
|
1349
|
-
*/
|
|
1350
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
1351
|
-
readonly name: "ResourceLimitExceededException";
|
|
1352
|
-
readonly $fault: "client";
|
|
1353
|
-
/**
|
|
1354
|
-
* @internal
|
|
1355
|
-
*/
|
|
1356
|
-
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
1357
|
-
}
|
|
1358
|
-
/**
|
|
1359
|
-
* <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
|
|
1360
|
-
* @public
|
|
1361
|
-
*/
|
|
1362
|
-
export declare class UnauthorizedException extends __BaseException {
|
|
1363
|
-
readonly name: "UnauthorizedException";
|
|
1364
|
-
readonly $fault: "client";
|
|
1365
|
-
/**
|
|
1366
|
-
* @internal
|
|
1367
|
-
*/
|
|
1368
|
-
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
1369
|
-
}
|
|
1370
1149
|
/**
|
|
1371
1150
|
* @public
|
|
1372
1151
|
*/
|
|
@@ -1534,18 +1313,6 @@ export interface BrowserSigningConfigInput {
|
|
|
1534
1313
|
*/
|
|
1535
1314
|
enabled: boolean | undefined;
|
|
1536
1315
|
}
|
|
1537
|
-
/**
|
|
1538
|
-
* @public
|
|
1539
|
-
* @enum
|
|
1540
|
-
*/
|
|
1541
|
-
export declare const BrowserNetworkMode: {
|
|
1542
|
-
readonly PUBLIC: "PUBLIC";
|
|
1543
|
-
readonly VPC: "VPC";
|
|
1544
|
-
};
|
|
1545
|
-
/**
|
|
1546
|
-
* @public
|
|
1547
|
-
*/
|
|
1548
|
-
export type BrowserNetworkMode = (typeof BrowserNetworkMode)[keyof typeof BrowserNetworkMode];
|
|
1549
1316
|
/**
|
|
1550
1317
|
* <p>The network configuration for a browser. This structure defines how the browser connects to the network.</p>
|
|
1551
1318
|
* @public
|
|
@@ -1623,22 +1390,6 @@ export interface CreateBrowserRequest {
|
|
|
1623
1390
|
*/
|
|
1624
1391
|
tags?: Record<string, string> | undefined;
|
|
1625
1392
|
}
|
|
1626
|
-
/**
|
|
1627
|
-
* @public
|
|
1628
|
-
* @enum
|
|
1629
|
-
*/
|
|
1630
|
-
export declare const BrowserStatus: {
|
|
1631
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1632
|
-
readonly CREATING: "CREATING";
|
|
1633
|
-
readonly DELETED: "DELETED";
|
|
1634
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1635
|
-
readonly DELETING: "DELETING";
|
|
1636
|
-
readonly READY: "READY";
|
|
1637
|
-
};
|
|
1638
|
-
/**
|
|
1639
|
-
* @public
|
|
1640
|
-
*/
|
|
1641
|
-
export type BrowserStatus = (typeof BrowserStatus)[keyof typeof BrowserStatus];
|
|
1642
1393
|
/**
|
|
1643
1394
|
* @public
|
|
1644
1395
|
*/
|
|
@@ -1785,18 +1536,6 @@ export interface GetBrowserResponse {
|
|
|
1785
1536
|
*/
|
|
1786
1537
|
lastUpdatedAt: Date | undefined;
|
|
1787
1538
|
}
|
|
1788
|
-
/**
|
|
1789
|
-
* @public
|
|
1790
|
-
* @enum
|
|
1791
|
-
*/
|
|
1792
|
-
export declare const ResourceType: {
|
|
1793
|
-
readonly CUSTOM: "CUSTOM";
|
|
1794
|
-
readonly SYSTEM: "SYSTEM";
|
|
1795
|
-
};
|
|
1796
|
-
/**
|
|
1797
|
-
* @public
|
|
1798
|
-
*/
|
|
1799
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
1800
1539
|
/**
|
|
1801
1540
|
* @public
|
|
1802
1541
|
*/
|
|
@@ -1873,19 +1612,6 @@ export interface ListBrowsersResponse {
|
|
|
1873
1612
|
*/
|
|
1874
1613
|
nextToken?: string | undefined;
|
|
1875
1614
|
}
|
|
1876
|
-
/**
|
|
1877
|
-
* @public
|
|
1878
|
-
* @enum
|
|
1879
|
-
*/
|
|
1880
|
-
export declare const CodeInterpreterNetworkMode: {
|
|
1881
|
-
readonly PUBLIC: "PUBLIC";
|
|
1882
|
-
readonly SANDBOX: "SANDBOX";
|
|
1883
|
-
readonly VPC: "VPC";
|
|
1884
|
-
};
|
|
1885
|
-
/**
|
|
1886
|
-
* @public
|
|
1887
|
-
*/
|
|
1888
|
-
export type CodeInterpreterNetworkMode = (typeof CodeInterpreterNetworkMode)[keyof typeof CodeInterpreterNetworkMode];
|
|
1889
1615
|
/**
|
|
1890
1616
|
* <p>The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.</p>
|
|
1891
1617
|
* @public
|
|
@@ -1937,22 +1663,6 @@ export interface CreateCodeInterpreterRequest {
|
|
|
1937
1663
|
*/
|
|
1938
1664
|
tags?: Record<string, string> | undefined;
|
|
1939
1665
|
}
|
|
1940
|
-
/**
|
|
1941
|
-
* @public
|
|
1942
|
-
* @enum
|
|
1943
|
-
*/
|
|
1944
|
-
export declare const CodeInterpreterStatus: {
|
|
1945
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1946
|
-
readonly CREATING: "CREATING";
|
|
1947
|
-
readonly DELETED: "DELETED";
|
|
1948
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1949
|
-
readonly DELETING: "DELETING";
|
|
1950
|
-
readonly READY: "READY";
|
|
1951
|
-
};
|
|
1952
|
-
/**
|
|
1953
|
-
* @public
|
|
1954
|
-
*/
|
|
1955
|
-
export type CodeInterpreterStatus = (typeof CodeInterpreterStatus)[keyof typeof CodeInterpreterStatus];
|
|
1956
1666
|
/**
|
|
1957
1667
|
* @public
|
|
1958
1668
|
*/
|
|
@@ -2154,40 +1864,6 @@ export interface ListCodeInterpretersResponse {
|
|
|
2154
1864
|
*/
|
|
2155
1865
|
nextToken?: string | undefined;
|
|
2156
1866
|
}
|
|
2157
|
-
/**
|
|
2158
|
-
* @public
|
|
2159
|
-
* @enum
|
|
2160
|
-
*/
|
|
2161
|
-
export declare const AuthorizerType: {
|
|
2162
|
-
readonly AWS_IAM: "AWS_IAM";
|
|
2163
|
-
readonly CUSTOM_JWT: "CUSTOM_JWT";
|
|
2164
|
-
};
|
|
2165
|
-
/**
|
|
2166
|
-
* @public
|
|
2167
|
-
*/
|
|
2168
|
-
export type AuthorizerType = (typeof AuthorizerType)[keyof typeof AuthorizerType];
|
|
2169
|
-
/**
|
|
2170
|
-
* @public
|
|
2171
|
-
* @enum
|
|
2172
|
-
*/
|
|
2173
|
-
export declare const ExceptionLevel: {
|
|
2174
|
-
readonly DEBUG: "DEBUG";
|
|
2175
|
-
};
|
|
2176
|
-
/**
|
|
2177
|
-
* @public
|
|
2178
|
-
*/
|
|
2179
|
-
export type ExceptionLevel = (typeof ExceptionLevel)[keyof typeof ExceptionLevel];
|
|
2180
|
-
/**
|
|
2181
|
-
* @public
|
|
2182
|
-
* @enum
|
|
2183
|
-
*/
|
|
2184
|
-
export declare const SearchType: {
|
|
2185
|
-
readonly SEMANTIC: "SEMANTIC";
|
|
2186
|
-
};
|
|
2187
|
-
/**
|
|
2188
|
-
* @public
|
|
2189
|
-
*/
|
|
2190
|
-
export type SearchType = (typeof SearchType)[keyof typeof SearchType];
|
|
2191
1867
|
/**
|
|
2192
1868
|
* <p>The configuration for a Model Context Protocol (MCP) gateway. This structure defines how the gateway implements the MCP protocol.</p>
|
|
2193
1869
|
* @public
|
|
@@ -2242,17 +1918,6 @@ export declare namespace GatewayProtocolConfiguration {
|
|
|
2242
1918
|
_: (name: string, value: any) => T;
|
|
2243
1919
|
}
|
|
2244
1920
|
}
|
|
2245
|
-
/**
|
|
2246
|
-
* @public
|
|
2247
|
-
* @enum
|
|
2248
|
-
*/
|
|
2249
|
-
export declare const GatewayProtocolType: {
|
|
2250
|
-
readonly MCP: "MCP";
|
|
2251
|
-
};
|
|
2252
|
-
/**
|
|
2253
|
-
* @public
|
|
2254
|
-
*/
|
|
2255
|
-
export type GatewayProtocolType = (typeof GatewayProtocolType)[keyof typeof GatewayProtocolType];
|
|
2256
1921
|
/**
|
|
2257
1922
|
* @public
|
|
2258
1923
|
*/
|
|
@@ -2313,22 +1978,6 @@ export interface CreateGatewayRequest {
|
|
|
2313
1978
|
*/
|
|
2314
1979
|
tags?: Record<string, string> | undefined;
|
|
2315
1980
|
}
|
|
2316
|
-
/**
|
|
2317
|
-
* @public
|
|
2318
|
-
* @enum
|
|
2319
|
-
*/
|
|
2320
|
-
export declare const GatewayStatus: {
|
|
2321
|
-
readonly CREATING: "CREATING";
|
|
2322
|
-
readonly DELETING: "DELETING";
|
|
2323
|
-
readonly FAILED: "FAILED";
|
|
2324
|
-
readonly READY: "READY";
|
|
2325
|
-
readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
|
|
2326
|
-
readonly UPDATING: "UPDATING";
|
|
2327
|
-
};
|
|
2328
|
-
/**
|
|
2329
|
-
* @public
|
|
2330
|
-
*/
|
|
2331
|
-
export type GatewayStatus = (typeof GatewayStatus)[keyof typeof GatewayStatus];
|
|
2332
1981
|
/**
|
|
2333
1982
|
* @public
|
|
2334
1983
|
*/
|
|
@@ -2770,18 +2419,6 @@ export interface UpdateGatewayResponse {
|
|
|
2770
2419
|
*/
|
|
2771
2420
|
exceptionLevel?: ExceptionLevel | undefined;
|
|
2772
2421
|
}
|
|
2773
|
-
/**
|
|
2774
|
-
* @public
|
|
2775
|
-
* @enum
|
|
2776
|
-
*/
|
|
2777
|
-
export declare const ApiKeyCredentialLocation: {
|
|
2778
|
-
readonly HEADER: "HEADER";
|
|
2779
|
-
readonly QUERY_PARAMETER: "QUERY_PARAMETER";
|
|
2780
|
-
};
|
|
2781
|
-
/**
|
|
2782
|
-
* @public
|
|
2783
|
-
*/
|
|
2784
|
-
export type ApiKeyCredentialLocation = (typeof ApiKeyCredentialLocation)[keyof typeof ApiKeyCredentialLocation];
|
|
2785
2422
|
/**
|
|
2786
2423
|
* <p>An API key credential provider for gateway authentication. This structure contains the configuration for authenticating with the target endpoint using an API key.</p>
|
|
2787
2424
|
* @public
|
|
@@ -2874,19 +2511,6 @@ export declare namespace CredentialProvider {
|
|
|
2874
2511
|
_: (name: string, value: any) => T;
|
|
2875
2512
|
}
|
|
2876
2513
|
}
|
|
2877
|
-
/**
|
|
2878
|
-
* @public
|
|
2879
|
-
* @enum
|
|
2880
|
-
*/
|
|
2881
|
-
export declare const CredentialProviderType: {
|
|
2882
|
-
readonly API_KEY: "API_KEY";
|
|
2883
|
-
readonly GATEWAY_IAM_ROLE: "GATEWAY_IAM_ROLE";
|
|
2884
|
-
readonly OAUTH: "OAUTH";
|
|
2885
|
-
};
|
|
2886
|
-
/**
|
|
2887
|
-
* @public
|
|
2888
|
-
*/
|
|
2889
|
-
export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
2890
2514
|
/**
|
|
2891
2515
|
* <p>The configuration for a credential provider. This structure defines how the gateway authenticates with the target endpoint.</p>
|
|
2892
2516
|
* @public
|
|
@@ -2903,22 +2527,6 @@ export interface CredentialProviderConfiguration {
|
|
|
2903
2527
|
*/
|
|
2904
2528
|
credentialProvider?: CredentialProvider | undefined;
|
|
2905
2529
|
}
|
|
2906
|
-
/**
|
|
2907
|
-
* @public
|
|
2908
|
-
* @enum
|
|
2909
|
-
*/
|
|
2910
|
-
export declare const SchemaType: {
|
|
2911
|
-
readonly ARRAY: "array";
|
|
2912
|
-
readonly BOOLEAN: "boolean";
|
|
2913
|
-
readonly INTEGER: "integer";
|
|
2914
|
-
readonly NUMBER: "number";
|
|
2915
|
-
readonly OBJECT: "object";
|
|
2916
|
-
readonly STRING: "string";
|
|
2917
|
-
};
|
|
2918
|
-
/**
|
|
2919
|
-
* @public
|
|
2920
|
-
*/
|
|
2921
|
-
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
|
|
2922
2530
|
/**
|
|
2923
2531
|
* <p>The Amazon S3 configuration for a gateway. This structure defines how the gateway accesses files in Amazon S3.</p>
|
|
2924
2532
|
* @public
|
|
@@ -2991,24 +2599,6 @@ export declare namespace ApiSchemaConfiguration {
|
|
|
2991
2599
|
_: (name: string, value: any) => T;
|
|
2992
2600
|
}
|
|
2993
2601
|
}
|
|
2994
|
-
/**
|
|
2995
|
-
* @public
|
|
2996
|
-
* @enum
|
|
2997
|
-
*/
|
|
2998
|
-
export declare const TargetStatus: {
|
|
2999
|
-
readonly CREATING: "CREATING";
|
|
3000
|
-
readonly DELETING: "DELETING";
|
|
3001
|
-
readonly FAILED: "FAILED";
|
|
3002
|
-
readonly READY: "READY";
|
|
3003
|
-
readonly SYNCHRONIZE_UNSUCCESSFUL: "SYNCHRONIZE_UNSUCCESSFUL";
|
|
3004
|
-
readonly SYNCHRONIZING: "SYNCHRONIZING";
|
|
3005
|
-
readonly UPDATE_UNSUCCESSFUL: "UPDATE_UNSUCCESSFUL";
|
|
3006
|
-
readonly UPDATING: "UPDATING";
|
|
3007
|
-
};
|
|
3008
|
-
/**
|
|
3009
|
-
* @public
|
|
3010
|
-
*/
|
|
3011
|
-
export type TargetStatus = (typeof TargetStatus)[keyof typeof TargetStatus];
|
|
3012
2602
|
/**
|
|
3013
2603
|
* @public
|
|
3014
2604
|
*/
|
|
@@ -3160,18 +2750,6 @@ export interface GetTokenVaultRequest {
|
|
|
3160
2750
|
*/
|
|
3161
2751
|
tokenVaultId?: string | undefined;
|
|
3162
2752
|
}
|
|
3163
|
-
/**
|
|
3164
|
-
* @public
|
|
3165
|
-
* @enum
|
|
3166
|
-
*/
|
|
3167
|
-
export declare const KeyType: {
|
|
3168
|
-
readonly CustomerManagedKey: "CustomerManagedKey";
|
|
3169
|
-
readonly ServiceManagedKey: "ServiceManagedKey";
|
|
3170
|
-
};
|
|
3171
|
-
/**
|
|
3172
|
-
* @public
|
|
3173
|
-
*/
|
|
3174
|
-
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
3175
2753
|
/**
|
|
3176
2754
|
* <p>Contains the KMS configuration for a resource.</p>
|
|
3177
2755
|
* @public
|
|
@@ -3764,20 +3342,6 @@ export interface CreateMemoryInput {
|
|
|
3764
3342
|
*/
|
|
3765
3343
|
tags?: Record<string, string> | undefined;
|
|
3766
3344
|
}
|
|
3767
|
-
/**
|
|
3768
|
-
* @public
|
|
3769
|
-
* @enum
|
|
3770
|
-
*/
|
|
3771
|
-
export declare const MemoryStatus: {
|
|
3772
|
-
readonly ACTIVE: "ACTIVE";
|
|
3773
|
-
readonly CREATING: "CREATING";
|
|
3774
|
-
readonly DELETING: "DELETING";
|
|
3775
|
-
readonly FAILED: "FAILED";
|
|
3776
|
-
};
|
|
3777
|
-
/**
|
|
3778
|
-
* @public
|
|
3779
|
-
*/
|
|
3780
|
-
export type MemoryStatus = (typeof MemoryStatus)[keyof typeof MemoryStatus];
|
|
3781
3345
|
/**
|
|
3782
3346
|
* <p>Contains semantic consolidation override configuration.</p>
|
|
3783
3347
|
* @public
|
|
@@ -4157,20 +3721,6 @@ export interface SelfManagedConfiguration {
|
|
|
4157
3721
|
*/
|
|
4158
3722
|
historicalContextWindowSize: number | undefined;
|
|
4159
3723
|
}
|
|
4160
|
-
/**
|
|
4161
|
-
* @public
|
|
4162
|
-
* @enum
|
|
4163
|
-
*/
|
|
4164
|
-
export declare const OverrideType: {
|
|
4165
|
-
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
4166
|
-
readonly SEMANTIC_OVERRIDE: "SEMANTIC_OVERRIDE";
|
|
4167
|
-
readonly SUMMARY_OVERRIDE: "SUMMARY_OVERRIDE";
|
|
4168
|
-
readonly USER_PREFERENCE_OVERRIDE: "USER_PREFERENCE_OVERRIDE";
|
|
4169
|
-
};
|
|
4170
|
-
/**
|
|
4171
|
-
* @public
|
|
4172
|
-
*/
|
|
4173
|
-
export type OverrideType = (typeof OverrideType)[keyof typeof OverrideType];
|
|
4174
3724
|
/**
|
|
4175
3725
|
* <p>Contains configuration information for a memory strategy.</p>
|
|
4176
3726
|
* @public
|
|
@@ -4197,34 +3747,6 @@ export interface StrategyConfiguration {
|
|
|
4197
3747
|
*/
|
|
4198
3748
|
selfManagedConfiguration?: SelfManagedConfiguration | undefined;
|
|
4199
3749
|
}
|
|
4200
|
-
/**
|
|
4201
|
-
* @public
|
|
4202
|
-
* @enum
|
|
4203
|
-
*/
|
|
4204
|
-
export declare const MemoryStrategyStatus: {
|
|
4205
|
-
readonly ACTIVE: "ACTIVE";
|
|
4206
|
-
readonly CREATING: "CREATING";
|
|
4207
|
-
readonly DELETING: "DELETING";
|
|
4208
|
-
readonly FAILED: "FAILED";
|
|
4209
|
-
};
|
|
4210
|
-
/**
|
|
4211
|
-
* @public
|
|
4212
|
-
*/
|
|
4213
|
-
export type MemoryStrategyStatus = (typeof MemoryStrategyStatus)[keyof typeof MemoryStrategyStatus];
|
|
4214
|
-
/**
|
|
4215
|
-
* @public
|
|
4216
|
-
* @enum
|
|
4217
|
-
*/
|
|
4218
|
-
export declare const MemoryStrategyType: {
|
|
4219
|
-
readonly CUSTOM: "CUSTOM";
|
|
4220
|
-
readonly SEMANTIC: "SEMANTIC";
|
|
4221
|
-
readonly SUMMARIZATION: "SUMMARIZATION";
|
|
4222
|
-
readonly USER_PREFERENCE: "USER_PREFERENCE";
|
|
4223
|
-
};
|
|
4224
|
-
/**
|
|
4225
|
-
* @public
|
|
4226
|
-
*/
|
|
4227
|
-
export type MemoryStrategyType = (typeof MemoryStrategyType)[keyof typeof MemoryStrategyType];
|
|
4228
3750
|
/**
|
|
4229
3751
|
* <p>Contains information about a memory strategy.</p>
|
|
4230
3752
|
* @public
|
|
@@ -4352,32 +3874,6 @@ export interface CreateMemoryOutput {
|
|
|
4352
3874
|
*/
|
|
4353
3875
|
memory?: Memory | undefined;
|
|
4354
3876
|
}
|
|
4355
|
-
/**
|
|
4356
|
-
* <p>An internal error occurred.</p>
|
|
4357
|
-
* @public
|
|
4358
|
-
*/
|
|
4359
|
-
export declare class ServiceException extends __BaseException {
|
|
4360
|
-
readonly name: "ServiceException";
|
|
4361
|
-
readonly $fault: "server";
|
|
4362
|
-
$retryable: {};
|
|
4363
|
-
/**
|
|
4364
|
-
* @internal
|
|
4365
|
-
*/
|
|
4366
|
-
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
4367
|
-
}
|
|
4368
|
-
/**
|
|
4369
|
-
* <p>API rate limit has been exceeded.</p>
|
|
4370
|
-
* @public
|
|
4371
|
-
*/
|
|
4372
|
-
export declare class ThrottledException extends __BaseException {
|
|
4373
|
-
readonly name: "ThrottledException";
|
|
4374
|
-
readonly $fault: "client";
|
|
4375
|
-
$retryable: {};
|
|
4376
|
-
/**
|
|
4377
|
-
* @internal
|
|
4378
|
-
*/
|
|
4379
|
-
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
4380
|
-
}
|
|
4381
3877
|
/**
|
|
4382
3878
|
* @public
|
|
4383
3879
|
*/
|
|
@@ -4820,41 +4316,6 @@ export interface UpdateMemoryOutput {
|
|
|
4820
4316
|
*/
|
|
4821
4317
|
memory?: Memory | undefined;
|
|
4822
4318
|
}
|
|
4823
|
-
/**
|
|
4824
|
-
* @public
|
|
4825
|
-
* @enum
|
|
4826
|
-
*/
|
|
4827
|
-
export declare const CredentialProviderVendorType: {
|
|
4828
|
-
readonly AtlassianOauth2: "AtlassianOauth2";
|
|
4829
|
-
readonly Auth0Oauth2: "Auth0Oauth2";
|
|
4830
|
-
readonly CognitoOauth2: "CognitoOauth2";
|
|
4831
|
-
readonly CustomOauth2: "CustomOauth2";
|
|
4832
|
-
readonly CyberArkOauth2: "CyberArkOauth2";
|
|
4833
|
-
readonly DropboxOauth2: "DropboxOauth2";
|
|
4834
|
-
readonly FacebookOauth2: "FacebookOauth2";
|
|
4835
|
-
readonly FusionAuthOauth2: "FusionAuthOauth2";
|
|
4836
|
-
readonly GithubOauth2: "GithubOauth2";
|
|
4837
|
-
readonly GoogleOauth2: "GoogleOauth2";
|
|
4838
|
-
readonly HubspotOauth2: "HubspotOauth2";
|
|
4839
|
-
readonly LinkedinOauth2: "LinkedinOauth2";
|
|
4840
|
-
readonly MicrosoftOauth2: "MicrosoftOauth2";
|
|
4841
|
-
readonly NotionOauth2: "NotionOauth2";
|
|
4842
|
-
readonly OktaOauth2: "OktaOauth2";
|
|
4843
|
-
readonly OneLoginOauth2: "OneLoginOauth2";
|
|
4844
|
-
readonly PingOneOauth2: "PingOneOauth2";
|
|
4845
|
-
readonly RedditOauth2: "RedditOauth2";
|
|
4846
|
-
readonly SalesforceOauth2: "SalesforceOauth2";
|
|
4847
|
-
readonly SlackOauth2: "SlackOauth2";
|
|
4848
|
-
readonly SpotifyOauth2: "SpotifyOauth2";
|
|
4849
|
-
readonly TwitchOauth2: "TwitchOauth2";
|
|
4850
|
-
readonly XOauth2: "XOauth2";
|
|
4851
|
-
readonly YandexOauth2: "YandexOauth2";
|
|
4852
|
-
readonly ZoomOauth2: "ZoomOauth2";
|
|
4853
|
-
};
|
|
4854
|
-
/**
|
|
4855
|
-
* @public
|
|
4856
|
-
*/
|
|
4857
|
-
export type CredentialProviderVendorType = (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
|
|
4858
4319
|
/**
|
|
4859
4320
|
* <p>Configuration settings for connecting to Atlassian services using OAuth2 authentication. This includes the client credentials required to authenticate with Atlassian's OAuth2 authorization server.</p>
|
|
4860
4321
|
* @public
|
|
@@ -5865,18 +5326,6 @@ export interface UpdateOauth2CredentialProviderResponse {
|
|
|
5865
5326
|
*/
|
|
5866
5327
|
lastUpdatedTime: Date | undefined;
|
|
5867
5328
|
}
|
|
5868
|
-
/**
|
|
5869
|
-
* <p>Exception thrown when a resource is modified concurrently by multiple requests.</p>
|
|
5870
|
-
* @public
|
|
5871
|
-
*/
|
|
5872
|
-
export declare class ConcurrentModificationException extends __BaseException {
|
|
5873
|
-
readonly name: "ConcurrentModificationException";
|
|
5874
|
-
readonly $fault: "client";
|
|
5875
|
-
/**
|
|
5876
|
-
* @internal
|
|
5877
|
-
*/
|
|
5878
|
-
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
5879
|
-
}
|
|
5880
5329
|
/**
|
|
5881
5330
|
* @public
|
|
5882
5331
|
*/
|