@aws-sdk/client-bedrock-agentcore-control 3.939.0 → 3.943.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/README.md +216 -0
- package/dist-cjs/index.js +2140 -143
- package/dist-es/BedrockAgentCoreControl.js +54 -0
- package/dist-es/commands/CreateEvaluatorCommand.js +16 -0
- package/dist-es/commands/CreateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/CreatePolicyCommand.js +16 -0
- package/dist-es/commands/CreatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteEvaluatorCommand.js +16 -0
- package/dist-es/commands/DeleteOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/DeletePolicyCommand.js +16 -0
- package/dist-es/commands/DeletePolicyEngineCommand.js +16 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/dist-es/commands/GetEvaluatorCommand.js +16 -0
- package/dist-es/commands/GetOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/GetPolicyCommand.js +16 -0
- package/dist-es/commands/GetPolicyEngineCommand.js +16 -0
- package/dist-es/commands/GetPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/dist-es/commands/ListEvaluatorsCommand.js +16 -0
- package/dist-es/commands/ListOnlineEvaluationConfigsCommand.js +16 -0
- package/dist-es/commands/ListPoliciesCommand.js +16 -0
- package/dist-es/commands/ListPolicyEnginesCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationAssetsCommand.js +16 -0
- package/dist-es/commands/ListPolicyGenerationsCommand.js +16 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/dist-es/commands/StartPolicyGenerationCommand.js +16 -0
- package/dist-es/commands/UpdateEvaluatorCommand.js +16 -0
- package/dist-es/commands/UpdateOnlineEvaluationConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyCommand.js +16 -0
- package/dist-es/commands/UpdatePolicyEngineCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListEvaluatorsPaginator.js +4 -0
- package/dist-es/pagination/ListOnlineEvaluationConfigsPaginator.js +4 -0
- package/dist-es/pagination/ListPoliciesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyEnginesPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationAssetsPaginator.js +4 -0
- package/dist-es/pagination/ListPolicyGenerationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/schemas/schemas_0.js +1320 -97
- package/dist-es/waiters/index.js +5 -0
- package/dist-es/waiters/waitForPolicyActive.js +58 -0
- package/dist-es/waiters/waitForPolicyDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyEngineActive.js +58 -0
- package/dist-es/waiters/waitForPolicyEngineDeleted.js +43 -0
- package/dist-es/waiters/waitForPolicyGenerationCompleted.js +58 -0
- package/dist-types/BedrockAgentCoreControl.d.ts +192 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +29 -2
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/CreateEvaluatorCommand.d.ts +132 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/CreateMemoryCommand.d.ts +52 -5
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +140 -0
- package/dist-types/commands/CreatePolicyCommand.d.ts +119 -0
- package/dist-types/commands/CreatePolicyEngineCommand.d.ts +103 -0
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEvaluatorCommand.d.ts +94 -0
- package/dist-types/commands/DeleteMemoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +94 -0
- package/dist-types/commands/DeletePolicyCommand.d.ts +108 -0
- package/dist-types/commands/DeletePolicyEngineCommand.d.ts +101 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +87 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +19 -0
- package/dist-types/commands/GetEvaluatorCommand.d.ts +131 -0
- package/dist-types/commands/GetGatewayCommand.d.ts +22 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +26 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +27 -5
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +137 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +105 -0
- package/dist-types/commands/GetPolicyEngineCommand.d.ts +98 -0
- package/dist-types/commands/GetPolicyGenerationCommand.d.ts +103 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +89 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListEvaluatorsCommand.d.ts +101 -0
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +100 -0
- package/dist-types/commands/ListPoliciesCommand.d.ts +113 -0
- package/dist-types/commands/ListPolicyEnginesCommand.d.ts +101 -0
- package/dist-types/commands/ListPolicyGenerationAssetsCommand.d.ts +109 -0
- package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +90 -0
- package/dist-types/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/commands/StartPolicyGenerationCommand.d.ts +116 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +26 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +18 -0
- package/dist-types/commands/UpdateEvaluatorCommand.d.ts +135 -0
- package/dist-types/commands/UpdateGatewayCommand.d.ts +44 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +49 -1
- package/dist-types/commands/UpdateMemoryCommand.d.ts +73 -8
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +138 -0
- package/dist-types/commands/UpdatePolicyCommand.d.ts +115 -0
- package/dist-types/commands/UpdatePolicyEngineCommand.d.ts +102 -0
- package/dist-types/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +232 -0
- package/dist-types/models/models_0.d.ts +4160 -2169
- package/dist-types/models/models_1.d.ts +1009 -0
- package/dist-types/pagination/ListEvaluatorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPoliciesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyEnginesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +462 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +162 -0
- package/dist-types/ts3.4/commands/CreateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeletePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEvaluatorCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetGatewayTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetPolicyEngineCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListEvaluatorsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ListPolicyEnginesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationAssetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SetTokenVaultCMKCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEvaluatorCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGatewayTargetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateOnlineEvaluationConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdatePolicyEngineCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/models_0.d.ts +835 -188
- package/dist-types/ts3.4/models/models_1.d.ts +331 -0
- package/dist-types/ts3.4/pagination/ListEvaluatorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOnlineEvaluationConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyEnginesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +156 -0
- package/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/dist-types/ts3.4/waiters/waitForPolicyActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyEngineDeleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForPolicyGenerationCompleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +5 -0
- package/dist-types/waiters/waitForPolicyActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineActive.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyEngineDeleted.d.ts +14 -0
- package/dist-types/waiters/waitForPolicyGenerationCompleted.d.ts +14 -0
- package/package.json +5 -5
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
import {
|
|
2
|
+
PolicyStatus,
|
|
3
|
+
PolicyValidationMode,
|
|
4
|
+
SchemaType,
|
|
5
|
+
TargetStatus,
|
|
6
|
+
} from "./enums";
|
|
7
|
+
import {
|
|
8
|
+
ApiGatewayTargetConfiguration,
|
|
9
|
+
ApiSchemaConfiguration,
|
|
10
|
+
CredentialProviderConfiguration,
|
|
11
|
+
KmsConfiguration,
|
|
12
|
+
McpServerTargetConfiguration,
|
|
13
|
+
PolicyDefinition,
|
|
14
|
+
S3Configuration,
|
|
15
|
+
} from "./models_0";
|
|
16
|
+
export interface Policy {
|
|
17
|
+
policyId: string | undefined;
|
|
18
|
+
name: string | undefined;
|
|
19
|
+
policyEngineId: string | undefined;
|
|
20
|
+
definition: PolicyDefinition | undefined;
|
|
21
|
+
description?: string | undefined;
|
|
22
|
+
createdAt: Date | undefined;
|
|
23
|
+
updatedAt: Date | undefined;
|
|
24
|
+
policyArn: string | undefined;
|
|
25
|
+
status: PolicyStatus | undefined;
|
|
26
|
+
statusReasons: string[] | undefined;
|
|
27
|
+
}
|
|
28
|
+
export interface ListPoliciesResponse {
|
|
29
|
+
policies: Policy[] | undefined;
|
|
30
|
+
nextToken?: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface UpdatePolicyRequest {
|
|
33
|
+
policyEngineId: string | undefined;
|
|
34
|
+
policyId: string | undefined;
|
|
35
|
+
description?: string | undefined;
|
|
36
|
+
definition: PolicyDefinition | undefined;
|
|
37
|
+
validationMode?: PolicyValidationMode | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface UpdatePolicyResponse {
|
|
40
|
+
policyId: string | undefined;
|
|
41
|
+
name: string | undefined;
|
|
42
|
+
policyEngineId: string | undefined;
|
|
43
|
+
definition: PolicyDefinition | undefined;
|
|
44
|
+
description?: string | undefined;
|
|
45
|
+
createdAt: Date | undefined;
|
|
46
|
+
updatedAt: Date | undefined;
|
|
47
|
+
policyArn: string | undefined;
|
|
48
|
+
status: PolicyStatus | undefined;
|
|
49
|
+
statusReasons: string[] | undefined;
|
|
50
|
+
}
|
|
51
|
+
export interface PutResourcePolicyRequest {
|
|
52
|
+
resourceArn: string | undefined;
|
|
53
|
+
policy: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface PutResourcePolicyResponse {
|
|
56
|
+
policy: string | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface SetTokenVaultCMKRequest {
|
|
59
|
+
tokenVaultId?: string | undefined;
|
|
60
|
+
kmsConfiguration: KmsConfiguration | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface SetTokenVaultCMKResponse {
|
|
63
|
+
tokenVaultId: string | undefined;
|
|
64
|
+
kmsConfiguration: KmsConfiguration | undefined;
|
|
65
|
+
lastModifiedDate: Date | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface TagResourceRequest {
|
|
68
|
+
resourceArn: string | undefined;
|
|
69
|
+
tags: Record<string, string> | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface TagResourceResponse {}
|
|
72
|
+
export interface UntagResourceRequest {
|
|
73
|
+
resourceArn: string | undefined;
|
|
74
|
+
tagKeys: string[] | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface UntagResourceResponse {}
|
|
77
|
+
export interface CreateWorkloadIdentityRequest {
|
|
78
|
+
name: string | undefined;
|
|
79
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
80
|
+
tags?: Record<string, string> | undefined;
|
|
81
|
+
}
|
|
82
|
+
export interface CreateWorkloadIdentityResponse {
|
|
83
|
+
name: string | undefined;
|
|
84
|
+
workloadIdentityArn: string | undefined;
|
|
85
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface DeleteWorkloadIdentityRequest {
|
|
88
|
+
name: string | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface DeleteWorkloadIdentityResponse {}
|
|
91
|
+
export interface GetWorkloadIdentityRequest {
|
|
92
|
+
name: string | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface GetWorkloadIdentityResponse {
|
|
95
|
+
name: string | undefined;
|
|
96
|
+
workloadIdentityArn: string | undefined;
|
|
97
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
98
|
+
createdTime: Date | undefined;
|
|
99
|
+
lastUpdatedTime: Date | undefined;
|
|
100
|
+
}
|
|
101
|
+
export interface ListWorkloadIdentitiesRequest {
|
|
102
|
+
nextToken?: string | undefined;
|
|
103
|
+
maxResults?: number | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface WorkloadIdentityType {
|
|
106
|
+
name: string | undefined;
|
|
107
|
+
workloadIdentityArn: string | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface ListWorkloadIdentitiesResponse {
|
|
110
|
+
workloadIdentities: WorkloadIdentityType[] | undefined;
|
|
111
|
+
nextToken?: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface UpdateWorkloadIdentityRequest {
|
|
114
|
+
name: string | undefined;
|
|
115
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
116
|
+
}
|
|
117
|
+
export interface UpdateWorkloadIdentityResponse {
|
|
118
|
+
name: string | undefined;
|
|
119
|
+
workloadIdentityArn: string | undefined;
|
|
120
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
121
|
+
createdTime: Date | undefined;
|
|
122
|
+
lastUpdatedTime: Date | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface SchemaDefinition {
|
|
125
|
+
type: SchemaType | undefined;
|
|
126
|
+
properties?: Record<string, SchemaDefinition> | undefined;
|
|
127
|
+
required?: string[] | undefined;
|
|
128
|
+
items?: SchemaDefinition | undefined;
|
|
129
|
+
description?: string | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface ToolDefinition {
|
|
132
|
+
name: string | undefined;
|
|
133
|
+
description: string | undefined;
|
|
134
|
+
inputSchema: SchemaDefinition | undefined;
|
|
135
|
+
outputSchema?: SchemaDefinition | undefined;
|
|
136
|
+
}
|
|
137
|
+
export type ToolSchema =
|
|
138
|
+
| ToolSchema.InlinePayloadMember
|
|
139
|
+
| ToolSchema.S3Member
|
|
140
|
+
| ToolSchema.$UnknownMember;
|
|
141
|
+
export declare namespace ToolSchema {
|
|
142
|
+
interface S3Member {
|
|
143
|
+
s3: S3Configuration;
|
|
144
|
+
inlinePayload?: never;
|
|
145
|
+
$unknown?: never;
|
|
146
|
+
}
|
|
147
|
+
interface InlinePayloadMember {
|
|
148
|
+
s3?: never;
|
|
149
|
+
inlinePayload: ToolDefinition[];
|
|
150
|
+
$unknown?: never;
|
|
151
|
+
}
|
|
152
|
+
interface $UnknownMember {
|
|
153
|
+
s3?: never;
|
|
154
|
+
inlinePayload?: never;
|
|
155
|
+
$unknown: [string, any];
|
|
156
|
+
}
|
|
157
|
+
interface Visitor<T> {
|
|
158
|
+
s3: (value: S3Configuration) => T;
|
|
159
|
+
inlinePayload: (value: ToolDefinition[]) => T;
|
|
160
|
+
_: (name: string, value: any) => T;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
export interface McpLambdaTargetConfiguration {
|
|
164
|
+
lambdaArn: string | undefined;
|
|
165
|
+
toolSchema: ToolSchema | undefined;
|
|
166
|
+
}
|
|
167
|
+
export type McpTargetConfiguration =
|
|
168
|
+
| McpTargetConfiguration.ApiGatewayMember
|
|
169
|
+
| McpTargetConfiguration.LambdaMember
|
|
170
|
+
| McpTargetConfiguration.McpServerMember
|
|
171
|
+
| McpTargetConfiguration.OpenApiSchemaMember
|
|
172
|
+
| McpTargetConfiguration.SmithyModelMember
|
|
173
|
+
| McpTargetConfiguration.$UnknownMember;
|
|
174
|
+
export declare namespace McpTargetConfiguration {
|
|
175
|
+
interface OpenApiSchemaMember {
|
|
176
|
+
openApiSchema: ApiSchemaConfiguration;
|
|
177
|
+
smithyModel?: never;
|
|
178
|
+
lambda?: never;
|
|
179
|
+
mcpServer?: never;
|
|
180
|
+
apiGateway?: never;
|
|
181
|
+
$unknown?: never;
|
|
182
|
+
}
|
|
183
|
+
interface SmithyModelMember {
|
|
184
|
+
openApiSchema?: never;
|
|
185
|
+
smithyModel: ApiSchemaConfiguration;
|
|
186
|
+
lambda?: never;
|
|
187
|
+
mcpServer?: never;
|
|
188
|
+
apiGateway?: never;
|
|
189
|
+
$unknown?: never;
|
|
190
|
+
}
|
|
191
|
+
interface LambdaMember {
|
|
192
|
+
openApiSchema?: never;
|
|
193
|
+
smithyModel?: never;
|
|
194
|
+
lambda: McpLambdaTargetConfiguration;
|
|
195
|
+
mcpServer?: never;
|
|
196
|
+
apiGateway?: never;
|
|
197
|
+
$unknown?: never;
|
|
198
|
+
}
|
|
199
|
+
interface McpServerMember {
|
|
200
|
+
openApiSchema?: never;
|
|
201
|
+
smithyModel?: never;
|
|
202
|
+
lambda?: never;
|
|
203
|
+
mcpServer: McpServerTargetConfiguration;
|
|
204
|
+
apiGateway?: never;
|
|
205
|
+
$unknown?: never;
|
|
206
|
+
}
|
|
207
|
+
interface ApiGatewayMember {
|
|
208
|
+
openApiSchema?: never;
|
|
209
|
+
smithyModel?: never;
|
|
210
|
+
lambda?: never;
|
|
211
|
+
mcpServer?: never;
|
|
212
|
+
apiGateway: ApiGatewayTargetConfiguration;
|
|
213
|
+
$unknown?: never;
|
|
214
|
+
}
|
|
215
|
+
interface $UnknownMember {
|
|
216
|
+
openApiSchema?: never;
|
|
217
|
+
smithyModel?: never;
|
|
218
|
+
lambda?: never;
|
|
219
|
+
mcpServer?: never;
|
|
220
|
+
apiGateway?: never;
|
|
221
|
+
$unknown: [string, any];
|
|
222
|
+
}
|
|
223
|
+
interface Visitor<T> {
|
|
224
|
+
openApiSchema: (value: ApiSchemaConfiguration) => T;
|
|
225
|
+
smithyModel: (value: ApiSchemaConfiguration) => T;
|
|
226
|
+
lambda: (value: McpLambdaTargetConfiguration) => T;
|
|
227
|
+
mcpServer: (value: McpServerTargetConfiguration) => T;
|
|
228
|
+
apiGateway: (value: ApiGatewayTargetConfiguration) => T;
|
|
229
|
+
_: (name: string, value: any) => T;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export type TargetConfiguration =
|
|
233
|
+
| TargetConfiguration.McpMember
|
|
234
|
+
| TargetConfiguration.$UnknownMember;
|
|
235
|
+
export declare namespace TargetConfiguration {
|
|
236
|
+
interface McpMember {
|
|
237
|
+
mcp: McpTargetConfiguration;
|
|
238
|
+
$unknown?: never;
|
|
239
|
+
}
|
|
240
|
+
interface $UnknownMember {
|
|
241
|
+
mcp?: never;
|
|
242
|
+
$unknown: [string, any];
|
|
243
|
+
}
|
|
244
|
+
interface Visitor<T> {
|
|
245
|
+
mcp: (value: McpTargetConfiguration) => T;
|
|
246
|
+
_: (name: string, value: any) => T;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
export interface CreateGatewayTargetRequest {
|
|
250
|
+
gatewayIdentifier: string | undefined;
|
|
251
|
+
name: string | undefined;
|
|
252
|
+
description?: string | undefined;
|
|
253
|
+
clientToken?: string | undefined;
|
|
254
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
255
|
+
credentialProviderConfigurations?:
|
|
256
|
+
| CredentialProviderConfiguration[]
|
|
257
|
+
| undefined;
|
|
258
|
+
}
|
|
259
|
+
export interface CreateGatewayTargetResponse {
|
|
260
|
+
gatewayArn: string | undefined;
|
|
261
|
+
targetId: string | undefined;
|
|
262
|
+
createdAt: Date | undefined;
|
|
263
|
+
updatedAt: Date | undefined;
|
|
264
|
+
status: TargetStatus | undefined;
|
|
265
|
+
statusReasons?: string[] | undefined;
|
|
266
|
+
name: string | undefined;
|
|
267
|
+
description?: string | undefined;
|
|
268
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
269
|
+
credentialProviderConfigurations:
|
|
270
|
+
| CredentialProviderConfiguration[]
|
|
271
|
+
| undefined;
|
|
272
|
+
lastSynchronizedAt?: Date | undefined;
|
|
273
|
+
}
|
|
274
|
+
export interface GatewayTarget {
|
|
275
|
+
gatewayArn: string | undefined;
|
|
276
|
+
targetId: string | undefined;
|
|
277
|
+
createdAt: Date | undefined;
|
|
278
|
+
updatedAt: Date | undefined;
|
|
279
|
+
status: TargetStatus | undefined;
|
|
280
|
+
statusReasons?: string[] | undefined;
|
|
281
|
+
name: string | undefined;
|
|
282
|
+
description?: string | undefined;
|
|
283
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
284
|
+
credentialProviderConfigurations:
|
|
285
|
+
| CredentialProviderConfiguration[]
|
|
286
|
+
| undefined;
|
|
287
|
+
lastSynchronizedAt?: Date | undefined;
|
|
288
|
+
}
|
|
289
|
+
export interface GetGatewayTargetResponse {
|
|
290
|
+
gatewayArn: string | undefined;
|
|
291
|
+
targetId: string | undefined;
|
|
292
|
+
createdAt: Date | undefined;
|
|
293
|
+
updatedAt: Date | undefined;
|
|
294
|
+
status: TargetStatus | undefined;
|
|
295
|
+
statusReasons?: string[] | undefined;
|
|
296
|
+
name: string | undefined;
|
|
297
|
+
description?: string | undefined;
|
|
298
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
299
|
+
credentialProviderConfigurations:
|
|
300
|
+
| CredentialProviderConfiguration[]
|
|
301
|
+
| undefined;
|
|
302
|
+
lastSynchronizedAt?: Date | undefined;
|
|
303
|
+
}
|
|
304
|
+
export interface UpdateGatewayTargetRequest {
|
|
305
|
+
gatewayIdentifier: string | undefined;
|
|
306
|
+
targetId: string | undefined;
|
|
307
|
+
name: string | undefined;
|
|
308
|
+
description?: string | undefined;
|
|
309
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
310
|
+
credentialProviderConfigurations?:
|
|
311
|
+
| CredentialProviderConfiguration[]
|
|
312
|
+
| undefined;
|
|
313
|
+
}
|
|
314
|
+
export interface UpdateGatewayTargetResponse {
|
|
315
|
+
gatewayArn: string | undefined;
|
|
316
|
+
targetId: string | undefined;
|
|
317
|
+
createdAt: Date | undefined;
|
|
318
|
+
updatedAt: Date | undefined;
|
|
319
|
+
status: TargetStatus | undefined;
|
|
320
|
+
statusReasons?: string[] | undefined;
|
|
321
|
+
name: string | undefined;
|
|
322
|
+
description?: string | undefined;
|
|
323
|
+
targetConfiguration: TargetConfiguration | undefined;
|
|
324
|
+
credentialProviderConfigurations:
|
|
325
|
+
| CredentialProviderConfiguration[]
|
|
326
|
+
| undefined;
|
|
327
|
+
lastSynchronizedAt?: Date | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface SynchronizeGatewayTargetsResponse {
|
|
330
|
+
targets?: GatewayTarget[] | undefined;
|
|
331
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEvaluatorsCommandInput,
|
|
4
|
+
ListEvaluatorsCommandOutput,
|
|
5
|
+
} from "../commands/ListEvaluatorsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEvaluators: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListEvaluatorsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEvaluatorsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOnlineEvaluationConfigsCommandInput,
|
|
4
|
+
ListOnlineEvaluationConfigsCommandOutput,
|
|
5
|
+
} from "../commands/ListOnlineEvaluationConfigsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListOnlineEvaluationConfigs: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListOnlineEvaluationConfigsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListOnlineEvaluationConfigsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPoliciesCommandInput,
|
|
4
|
+
ListPoliciesCommandOutput,
|
|
5
|
+
} from "../commands/ListPoliciesCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicies: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListPoliciesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPoliciesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyEnginesCommandInput,
|
|
4
|
+
ListPolicyEnginesCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyEnginesCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicyEngines: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListPolicyEnginesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPolicyEnginesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyGenerationAssetsCommandInput,
|
|
4
|
+
ListPolicyGenerationAssetsCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyGenerationAssetsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicyGenerationAssets: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListPolicyGenerationAssetsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPolicyGenerationAssetsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPolicyGenerationsCommandInput,
|
|
4
|
+
ListPolicyGenerationsCommandOutput,
|
|
5
|
+
} from "../commands/ListPolicyGenerationsCommand";
|
|
6
|
+
import { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPolicyGenerations: (
|
|
8
|
+
config: BedrockAgentCoreControlPaginationConfiguration,
|
|
9
|
+
input: ListPolicyGenerationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPolicyGenerationsCommandOutput>;
|
|
@@ -5,8 +5,14 @@ export * from "./ListAgentRuntimesPaginator";
|
|
|
5
5
|
export * from "./ListApiKeyCredentialProvidersPaginator";
|
|
6
6
|
export * from "./ListBrowsersPaginator";
|
|
7
7
|
export * from "./ListCodeInterpretersPaginator";
|
|
8
|
+
export * from "./ListEvaluatorsPaginator";
|
|
8
9
|
export * from "./ListGatewayTargetsPaginator";
|
|
9
10
|
export * from "./ListGatewaysPaginator";
|
|
10
11
|
export * from "./ListMemoriesPaginator";
|
|
11
12
|
export * from "./ListOauth2CredentialProvidersPaginator";
|
|
13
|
+
export * from "./ListOnlineEvaluationConfigsPaginator";
|
|
14
|
+
export * from "./ListPoliciesPaginator";
|
|
15
|
+
export * from "./ListPolicyEnginesPaginator";
|
|
16
|
+
export * from "./ListPolicyGenerationAssetsPaginator";
|
|
17
|
+
export * from "./ListPolicyGenerationsPaginator";
|
|
12
18
|
export * from "./ListWorkloadIdentitiesPaginator";
|