@aws-sdk/client-bedrock-agentcore-control 3.1033.0 → 3.1035.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 +35 -0
- package/dist-cjs/index.js +99 -0
- package/dist-cjs/schemas/schemas_0.js +473 -133
- package/dist-es/BedrockAgentCoreControl.js +12 -0
- package/dist-es/commands/CreateHarnessCommand.js +16 -0
- package/dist-es/commands/DeleteHarnessCommand.js +16 -0
- package/dist-es/commands/GetHarnessCommand.js +16 -0
- package/dist-es/commands/ListHarnessesCommand.js +16 -0
- package/dist-es/commands/UpdateHarnessCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +22 -0
- package/dist-es/pagination/ListHarnessesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +462 -123
- package/dist-types/BedrockAgentCoreControl.d.ts +43 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +7 -2
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -0
- package/dist-types/commands/CreateHarnessCommand.d.ts +451 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/DeleteHarnessCommand.d.ts +276 -0
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -0
- package/dist-types/commands/GetHarnessCommand.d.ts +272 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +2 -2
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -0
- package/dist-types/commands/ListHarnessesCommand.d.ts +97 -0
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
- package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +2 -3
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateHarnessCommand.d.ts +454 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +46 -0
- package/dist-types/models/models_0.d.ts +1952 -1926
- package/dist-types/models/models_1.d.ts +1246 -13
- package/dist-types/pagination/ListHarnessesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +45 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +93 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetHarnessCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOnlineEvaluationConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListHarnessesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListOnlineEvaluationConfigsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateHarnessCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateOauth2CredentialProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +27 -0
- package/dist-types/ts3.4/models/models_0.d.ts +470 -566
- package/dist-types/ts3.4/models/models_1.d.ts +574 -6
- package/dist-types/ts3.4/pagination/ListHarnessesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +45 -0
- package/package.json +18 -18
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListHarnessesCommandInput, ListHarnessesCommandOutput } from "../commands/ListHarnessesCommand";
|
|
3
|
+
import type { BedrockAgentCoreControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListHarnesses: (config: BedrockAgentCoreControlPaginationConfiguration, input: ListHarnessesCommandInput, ...rest: any[]) => Paginator<ListHarnessesCommandOutput>;
|
|
@@ -9,6 +9,7 @@ export * from "./ListCodeInterpretersPaginator";
|
|
|
9
9
|
export * from "./ListEvaluatorsPaginator";
|
|
10
10
|
export * from "./ListGatewaysPaginator";
|
|
11
11
|
export * from "./ListGatewayTargetsPaginator";
|
|
12
|
+
export * from "./ListHarnessesPaginator";
|
|
12
13
|
export * from "./ListMemoriesPaginator";
|
|
13
14
|
export * from "./ListOauth2CredentialProvidersPaginator";
|
|
14
15
|
export * from "./ListOnlineEvaluationConfigsPaginator";
|
|
@@ -70,6 +70,8 @@ export declare var CreateGatewayRequest$: StaticStructureSchema;
|
|
|
70
70
|
export declare var CreateGatewayResponse$: StaticStructureSchema;
|
|
71
71
|
export declare var CreateGatewayTargetRequest$: StaticStructureSchema;
|
|
72
72
|
export declare var CreateGatewayTargetResponse$: StaticStructureSchema;
|
|
73
|
+
export declare var CreateHarnessRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var CreateHarnessResponse$: StaticStructureSchema;
|
|
73
75
|
export declare var CreateMemoryInput$: StaticStructureSchema;
|
|
74
76
|
export declare var CreateMemoryOutput$: StaticStructureSchema;
|
|
75
77
|
export declare var CreateOauth2CredentialProviderRequest$: StaticStructureSchema;
|
|
@@ -111,6 +113,8 @@ export declare var DeleteGatewayRequest$: StaticStructureSchema;
|
|
|
111
113
|
export declare var DeleteGatewayResponse$: StaticStructureSchema;
|
|
112
114
|
export declare var DeleteGatewayTargetRequest$: StaticStructureSchema;
|
|
113
115
|
export declare var DeleteGatewayTargetResponse$: StaticStructureSchema;
|
|
116
|
+
export declare var DeleteHarnessRequest$: StaticStructureSchema;
|
|
117
|
+
export declare var DeleteHarnessResponse$: StaticStructureSchema;
|
|
114
118
|
export declare var DeleteMemoryInput$: StaticStructureSchema;
|
|
115
119
|
export declare var DeleteMemoryOutput$: StaticStructureSchema;
|
|
116
120
|
export declare var DeleteMemoryStrategyInput$: StaticStructureSchema;
|
|
@@ -168,6 +172,8 @@ export declare var GetGatewayRequest$: StaticStructureSchema;
|
|
|
168
172
|
export declare var GetGatewayResponse$: StaticStructureSchema;
|
|
169
173
|
export declare var GetGatewayTargetRequest$: StaticStructureSchema;
|
|
170
174
|
export declare var GetGatewayTargetResponse$: StaticStructureSchema;
|
|
175
|
+
export declare var GetHarnessRequest$: StaticStructureSchema;
|
|
176
|
+
export declare var GetHarnessResponse$: StaticStructureSchema;
|
|
171
177
|
export declare var GetMemoryInput$: StaticStructureSchema;
|
|
172
178
|
export declare var GetMemoryOutput$: StaticStructureSchema;
|
|
173
179
|
export declare var GetOauth2CredentialProviderRequest$: StaticStructureSchema;
|
|
@@ -194,6 +200,24 @@ export declare var GithubOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
|
194
200
|
export declare var GithubOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
195
201
|
export declare var GoogleOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
196
202
|
export declare var GoogleOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
203
|
+
export declare var Harness$: StaticStructureSchema;
|
|
204
|
+
export declare var HarnessAgentCoreBrowserConfig$: StaticStructureSchema;
|
|
205
|
+
export declare var HarnessAgentCoreCodeInterpreterConfig$: StaticStructureSchema;
|
|
206
|
+
export declare var HarnessAgentCoreGatewayConfig$: StaticStructureSchema;
|
|
207
|
+
export declare var HarnessAgentCoreMemoryConfiguration$: StaticStructureSchema;
|
|
208
|
+
export declare var HarnessAgentCoreMemoryRetrievalConfig$: StaticStructureSchema;
|
|
209
|
+
export declare var HarnessAgentCoreRuntimeEnvironment$: StaticStructureSchema;
|
|
210
|
+
export declare var HarnessAgentCoreRuntimeEnvironmentRequest$: StaticStructureSchema;
|
|
211
|
+
export declare var HarnessBedrockModelConfig$: StaticStructureSchema;
|
|
212
|
+
export declare var HarnessGeminiModelConfig$: StaticStructureSchema;
|
|
213
|
+
export declare var HarnessInlineFunctionConfig$: StaticStructureSchema;
|
|
214
|
+
export declare var HarnessOpenAiModelConfig$: StaticStructureSchema;
|
|
215
|
+
export declare var HarnessRemoteMcpConfig$: StaticStructureSchema;
|
|
216
|
+
export declare var HarnessSlidingWindowConfiguration$: StaticStructureSchema;
|
|
217
|
+
export declare var HarnessSummarizationConfiguration$: StaticStructureSchema;
|
|
218
|
+
export declare var HarnessSummary$: StaticStructureSchema;
|
|
219
|
+
export declare var HarnessTool$: StaticStructureSchema;
|
|
220
|
+
export declare var HarnessTruncationConfiguration$: StaticStructureSchema;
|
|
197
221
|
export declare var IamCredentialProvider$: StaticStructureSchema;
|
|
198
222
|
export declare var IncludedOauth2ProviderConfigInput$: StaticStructureSchema;
|
|
199
223
|
export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
@@ -228,6 +252,8 @@ export declare var ListGatewaysRequest$: StaticStructureSchema;
|
|
|
228
252
|
export declare var ListGatewaysResponse$: StaticStructureSchema;
|
|
229
253
|
export declare var ListGatewayTargetsRequest$: StaticStructureSchema;
|
|
230
254
|
export declare var ListGatewayTargetsResponse$: StaticStructureSchema;
|
|
255
|
+
export declare var ListHarnessesRequest$: StaticStructureSchema;
|
|
256
|
+
export declare var ListHarnessesResponse$: StaticStructureSchema;
|
|
231
257
|
export declare var ListMemoriesInput$: StaticStructureSchema;
|
|
232
258
|
export declare var ListMemoriesOutput$: StaticStructureSchema;
|
|
233
259
|
export declare var ListOauth2CredentialProvidersRequest$: StaticStructureSchema;
|
|
@@ -358,6 +384,8 @@ export declare var UpdatedCustomDescriptor$: StaticStructureSchema;
|
|
|
358
384
|
export declare var UpdatedDescription$: StaticStructureSchema;
|
|
359
385
|
export declare var UpdatedDescriptors$: StaticStructureSchema;
|
|
360
386
|
export declare var UpdatedDescriptorsUnion$: StaticStructureSchema;
|
|
387
|
+
export declare var UpdatedHarnessEnvironmentArtifact$: StaticStructureSchema;
|
|
388
|
+
export declare var UpdatedHarnessMemoryConfiguration$: StaticStructureSchema;
|
|
361
389
|
export declare var UpdatedMcpDescriptor$: StaticStructureSchema;
|
|
362
390
|
export declare var UpdatedMcpDescriptorFields$: StaticStructureSchema;
|
|
363
391
|
export declare var UpdatedServerDefinition$: StaticStructureSchema;
|
|
@@ -372,6 +400,8 @@ export declare var UpdateGatewayRequest$: StaticStructureSchema;
|
|
|
372
400
|
export declare var UpdateGatewayResponse$: StaticStructureSchema;
|
|
373
401
|
export declare var UpdateGatewayTargetRequest$: StaticStructureSchema;
|
|
374
402
|
export declare var UpdateGatewayTargetResponse$: StaticStructureSchema;
|
|
403
|
+
export declare var UpdateHarnessRequest$: StaticStructureSchema;
|
|
404
|
+
export declare var UpdateHarnessResponse$: StaticStructureSchema;
|
|
375
405
|
export declare var UpdateMemoryInput$: StaticStructureSchema;
|
|
376
406
|
export declare var UpdateMemoryOutput$: StaticStructureSchema;
|
|
377
407
|
export declare var UpdateOauth2CredentialProviderRequest$: StaticStructureSchema;
|
|
@@ -426,6 +456,16 @@ export declare var ExtractionConfiguration$: StaticUnionSchema;
|
|
|
426
456
|
export declare var FilesystemConfiguration$: StaticUnionSchema;
|
|
427
457
|
export declare var FilterValue$: StaticUnionSchema;
|
|
428
458
|
export declare var GatewayProtocolConfiguration$: StaticUnionSchema;
|
|
459
|
+
export declare var HarnessEnvironmentArtifact$: StaticUnionSchema;
|
|
460
|
+
export declare var HarnessEnvironmentProvider$: StaticUnionSchema;
|
|
461
|
+
export declare var HarnessEnvironmentProviderRequest$: StaticUnionSchema;
|
|
462
|
+
export declare var HarnessGatewayOutboundAuth$: StaticUnionSchema;
|
|
463
|
+
export declare var HarnessMemoryConfiguration$: StaticUnionSchema;
|
|
464
|
+
export declare var HarnessModelConfiguration$: StaticUnionSchema;
|
|
465
|
+
export declare var HarnessSkill$: StaticUnionSchema;
|
|
466
|
+
export declare var HarnessSystemContentBlock$: StaticUnionSchema;
|
|
467
|
+
export declare var HarnessToolConfiguration$: StaticUnionSchema;
|
|
468
|
+
export declare var HarnessTruncationStrategyConfiguration$: StaticUnionSchema;
|
|
429
469
|
export declare var InterceptorConfiguration$: StaticUnionSchema;
|
|
430
470
|
export declare var McpTargetConfiguration$: StaticUnionSchema;
|
|
431
471
|
export declare var McpToolSchemaConfiguration$: StaticUnionSchema;
|
|
@@ -459,6 +499,7 @@ export declare var CreateCodeInterpreter$: StaticOperationSchema;
|
|
|
459
499
|
export declare var CreateEvaluator$: StaticOperationSchema;
|
|
460
500
|
export declare var CreateGateway$: StaticOperationSchema;
|
|
461
501
|
export declare var CreateGatewayTarget$: StaticOperationSchema;
|
|
502
|
+
export declare var CreateHarness$: StaticOperationSchema;
|
|
462
503
|
export declare var CreateMemory$: StaticOperationSchema;
|
|
463
504
|
export declare var CreateOauth2CredentialProvider$: StaticOperationSchema;
|
|
464
505
|
export declare var CreateOnlineEvaluationConfig$: StaticOperationSchema;
|
|
@@ -476,6 +517,7 @@ export declare var DeleteCodeInterpreter$: StaticOperationSchema;
|
|
|
476
517
|
export declare var DeleteEvaluator$: StaticOperationSchema;
|
|
477
518
|
export declare var DeleteGateway$: StaticOperationSchema;
|
|
478
519
|
export declare var DeleteGatewayTarget$: StaticOperationSchema;
|
|
520
|
+
export declare var DeleteHarness$: StaticOperationSchema;
|
|
479
521
|
export declare var DeleteMemory$: StaticOperationSchema;
|
|
480
522
|
export declare var DeleteOauth2CredentialProvider$: StaticOperationSchema;
|
|
481
523
|
export declare var DeleteOnlineEvaluationConfig$: StaticOperationSchema;
|
|
@@ -494,6 +536,7 @@ export declare var GetCodeInterpreter$: StaticOperationSchema;
|
|
|
494
536
|
export declare var GetEvaluator$: StaticOperationSchema;
|
|
495
537
|
export declare var GetGateway$: StaticOperationSchema;
|
|
496
538
|
export declare var GetGatewayTarget$: StaticOperationSchema;
|
|
539
|
+
export declare var GetHarness$: StaticOperationSchema;
|
|
497
540
|
export declare var GetMemory$: StaticOperationSchema;
|
|
498
541
|
export declare var GetOauth2CredentialProvider$: StaticOperationSchema;
|
|
499
542
|
export declare var GetOnlineEvaluationConfig$: StaticOperationSchema;
|
|
@@ -515,6 +558,7 @@ export declare var ListCodeInterpreters$: StaticOperationSchema;
|
|
|
515
558
|
export declare var ListEvaluators$: StaticOperationSchema;
|
|
516
559
|
export declare var ListGateways$: StaticOperationSchema;
|
|
517
560
|
export declare var ListGatewayTargets$: StaticOperationSchema;
|
|
561
|
+
export declare var ListHarnesses$: StaticOperationSchema;
|
|
518
562
|
export declare var ListMemories$: StaticOperationSchema;
|
|
519
563
|
export declare var ListOauth2CredentialProviders$: StaticOperationSchema;
|
|
520
564
|
export declare var ListOnlineEvaluationConfigs$: StaticOperationSchema;
|
|
@@ -539,6 +583,7 @@ export declare var UpdateApiKeyCredentialProvider$: StaticOperationSchema;
|
|
|
539
583
|
export declare var UpdateEvaluator$: StaticOperationSchema;
|
|
540
584
|
export declare var UpdateGateway$: StaticOperationSchema;
|
|
541
585
|
export declare var UpdateGatewayTarget$: StaticOperationSchema;
|
|
586
|
+
export declare var UpdateHarness$: StaticOperationSchema;
|
|
542
587
|
export declare var UpdateMemory$: StaticOperationSchema;
|
|
543
588
|
export declare var UpdateOauth2CredentialProvider$: StaticOperationSchema;
|
|
544
589
|
export declare var UpdateOnlineEvaluationConfig$: StaticOperationSchema;
|
|
@@ -42,6 +42,10 @@ import {
|
|
|
42
42
|
CreateGatewayTargetCommandInput,
|
|
43
43
|
CreateGatewayTargetCommandOutput,
|
|
44
44
|
} from "./commands/CreateGatewayTargetCommand";
|
|
45
|
+
import {
|
|
46
|
+
CreateHarnessCommandInput,
|
|
47
|
+
CreateHarnessCommandOutput,
|
|
48
|
+
} from "./commands/CreateHarnessCommand";
|
|
45
49
|
import {
|
|
46
50
|
CreateMemoryCommandInput,
|
|
47
51
|
CreateMemoryCommandOutput,
|
|
@@ -110,6 +114,10 @@ import {
|
|
|
110
114
|
DeleteGatewayTargetCommandInput,
|
|
111
115
|
DeleteGatewayTargetCommandOutput,
|
|
112
116
|
} from "./commands/DeleteGatewayTargetCommand";
|
|
117
|
+
import {
|
|
118
|
+
DeleteHarnessCommandInput,
|
|
119
|
+
DeleteHarnessCommandOutput,
|
|
120
|
+
} from "./commands/DeleteHarnessCommand";
|
|
113
121
|
import {
|
|
114
122
|
DeleteMemoryCommandInput,
|
|
115
123
|
DeleteMemoryCommandOutput,
|
|
@@ -182,6 +190,10 @@ import {
|
|
|
182
190
|
GetGatewayTargetCommandInput,
|
|
183
191
|
GetGatewayTargetCommandOutput,
|
|
184
192
|
} from "./commands/GetGatewayTargetCommand";
|
|
193
|
+
import {
|
|
194
|
+
GetHarnessCommandInput,
|
|
195
|
+
GetHarnessCommandOutput,
|
|
196
|
+
} from "./commands/GetHarnessCommand";
|
|
185
197
|
import {
|
|
186
198
|
GetMemoryCommandInput,
|
|
187
199
|
GetMemoryCommandOutput,
|
|
@@ -266,6 +278,10 @@ import {
|
|
|
266
278
|
ListGatewayTargetsCommandInput,
|
|
267
279
|
ListGatewayTargetsCommandOutput,
|
|
268
280
|
} from "./commands/ListGatewayTargetsCommand";
|
|
281
|
+
import {
|
|
282
|
+
ListHarnessesCommandInput,
|
|
283
|
+
ListHarnessesCommandOutput,
|
|
284
|
+
} from "./commands/ListHarnessesCommand";
|
|
269
285
|
import {
|
|
270
286
|
ListMemoriesCommandInput,
|
|
271
287
|
ListMemoriesCommandOutput,
|
|
@@ -362,6 +378,10 @@ import {
|
|
|
362
378
|
UpdateGatewayTargetCommandInput,
|
|
363
379
|
UpdateGatewayTargetCommandOutput,
|
|
364
380
|
} from "./commands/UpdateGatewayTargetCommand";
|
|
381
|
+
import {
|
|
382
|
+
UpdateHarnessCommandInput,
|
|
383
|
+
UpdateHarnessCommandOutput,
|
|
384
|
+
} from "./commands/UpdateHarnessCommand";
|
|
365
385
|
import {
|
|
366
386
|
UpdateMemoryCommandInput,
|
|
367
387
|
UpdateMemoryCommandOutput,
|
|
@@ -516,6 +536,19 @@ export interface BedrockAgentCoreControl {
|
|
|
516
536
|
options: __HttpHandlerOptions,
|
|
517
537
|
cb: (err: any, data?: CreateGatewayTargetCommandOutput) => void
|
|
518
538
|
): void;
|
|
539
|
+
createHarness(
|
|
540
|
+
args: CreateHarnessCommandInput,
|
|
541
|
+
options?: __HttpHandlerOptions
|
|
542
|
+
): Promise<CreateHarnessCommandOutput>;
|
|
543
|
+
createHarness(
|
|
544
|
+
args: CreateHarnessCommandInput,
|
|
545
|
+
cb: (err: any, data?: CreateHarnessCommandOutput) => void
|
|
546
|
+
): void;
|
|
547
|
+
createHarness(
|
|
548
|
+
args: CreateHarnessCommandInput,
|
|
549
|
+
options: __HttpHandlerOptions,
|
|
550
|
+
cb: (err: any, data?: CreateHarnessCommandOutput) => void
|
|
551
|
+
): void;
|
|
519
552
|
createMemory(
|
|
520
553
|
args: CreateMemoryCommandInput,
|
|
521
554
|
options?: __HttpHandlerOptions
|
|
@@ -737,6 +770,19 @@ export interface BedrockAgentCoreControl {
|
|
|
737
770
|
options: __HttpHandlerOptions,
|
|
738
771
|
cb: (err: any, data?: DeleteGatewayTargetCommandOutput) => void
|
|
739
772
|
): void;
|
|
773
|
+
deleteHarness(
|
|
774
|
+
args: DeleteHarnessCommandInput,
|
|
775
|
+
options?: __HttpHandlerOptions
|
|
776
|
+
): Promise<DeleteHarnessCommandOutput>;
|
|
777
|
+
deleteHarness(
|
|
778
|
+
args: DeleteHarnessCommandInput,
|
|
779
|
+
cb: (err: any, data?: DeleteHarnessCommandOutput) => void
|
|
780
|
+
): void;
|
|
781
|
+
deleteHarness(
|
|
782
|
+
args: DeleteHarnessCommandInput,
|
|
783
|
+
options: __HttpHandlerOptions,
|
|
784
|
+
cb: (err: any, data?: DeleteHarnessCommandOutput) => void
|
|
785
|
+
): void;
|
|
740
786
|
deleteMemory(
|
|
741
787
|
args: DeleteMemoryCommandInput,
|
|
742
788
|
options?: __HttpHandlerOptions
|
|
@@ -971,6 +1017,19 @@ export interface BedrockAgentCoreControl {
|
|
|
971
1017
|
options: __HttpHandlerOptions,
|
|
972
1018
|
cb: (err: any, data?: GetGatewayTargetCommandOutput) => void
|
|
973
1019
|
): void;
|
|
1020
|
+
getHarness(
|
|
1021
|
+
args: GetHarnessCommandInput,
|
|
1022
|
+
options?: __HttpHandlerOptions
|
|
1023
|
+
): Promise<GetHarnessCommandOutput>;
|
|
1024
|
+
getHarness(
|
|
1025
|
+
args: GetHarnessCommandInput,
|
|
1026
|
+
cb: (err: any, data?: GetHarnessCommandOutput) => void
|
|
1027
|
+
): void;
|
|
1028
|
+
getHarness(
|
|
1029
|
+
args: GetHarnessCommandInput,
|
|
1030
|
+
options: __HttpHandlerOptions,
|
|
1031
|
+
cb: (err: any, data?: GetHarnessCommandOutput) => void
|
|
1032
|
+
): void;
|
|
974
1033
|
getMemory(
|
|
975
1034
|
args: GetMemoryCommandInput,
|
|
976
1035
|
options?: __HttpHandlerOptions
|
|
@@ -1252,6 +1311,20 @@ export interface BedrockAgentCoreControl {
|
|
|
1252
1311
|
options: __HttpHandlerOptions,
|
|
1253
1312
|
cb: (err: any, data?: ListGatewayTargetsCommandOutput) => void
|
|
1254
1313
|
): void;
|
|
1314
|
+
listHarnesses(): Promise<ListHarnessesCommandOutput>;
|
|
1315
|
+
listHarnesses(
|
|
1316
|
+
args: ListHarnessesCommandInput,
|
|
1317
|
+
options?: __HttpHandlerOptions
|
|
1318
|
+
): Promise<ListHarnessesCommandOutput>;
|
|
1319
|
+
listHarnesses(
|
|
1320
|
+
args: ListHarnessesCommandInput,
|
|
1321
|
+
cb: (err: any, data?: ListHarnessesCommandOutput) => void
|
|
1322
|
+
): void;
|
|
1323
|
+
listHarnesses(
|
|
1324
|
+
args: ListHarnessesCommandInput,
|
|
1325
|
+
options: __HttpHandlerOptions,
|
|
1326
|
+
cb: (err: any, data?: ListHarnessesCommandOutput) => void
|
|
1327
|
+
): void;
|
|
1255
1328
|
listMemories(): Promise<ListMemoriesCommandOutput>;
|
|
1256
1329
|
listMemories(
|
|
1257
1330
|
args: ListMemoriesCommandInput,
|
|
@@ -1570,6 +1643,19 @@ export interface BedrockAgentCoreControl {
|
|
|
1570
1643
|
options: __HttpHandlerOptions,
|
|
1571
1644
|
cb: (err: any, data?: UpdateGatewayTargetCommandOutput) => void
|
|
1572
1645
|
): void;
|
|
1646
|
+
updateHarness(
|
|
1647
|
+
args: UpdateHarnessCommandInput,
|
|
1648
|
+
options?: __HttpHandlerOptions
|
|
1649
|
+
): Promise<UpdateHarnessCommandOutput>;
|
|
1650
|
+
updateHarness(
|
|
1651
|
+
args: UpdateHarnessCommandInput,
|
|
1652
|
+
cb: (err: any, data?: UpdateHarnessCommandOutput) => void
|
|
1653
|
+
): void;
|
|
1654
|
+
updateHarness(
|
|
1655
|
+
args: UpdateHarnessCommandInput,
|
|
1656
|
+
options: __HttpHandlerOptions,
|
|
1657
|
+
cb: (err: any, data?: UpdateHarnessCommandOutput) => void
|
|
1658
|
+
): void;
|
|
1573
1659
|
updateMemory(
|
|
1574
1660
|
args: UpdateMemoryCommandInput,
|
|
1575
1661
|
options?: __HttpHandlerOptions
|
|
@@ -1757,6 +1843,13 @@ export interface BedrockAgentCoreControl {
|
|
|
1757
1843
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1758
1844
|
>
|
|
1759
1845
|
): Paginator<ListGatewayTargetsCommandOutput>;
|
|
1846
|
+
paginateListHarnesses(
|
|
1847
|
+
args?: ListHarnessesCommandInput,
|
|
1848
|
+
paginationConfig?: Pick<
|
|
1849
|
+
PaginationConfiguration,
|
|
1850
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1851
|
+
>
|
|
1852
|
+
): Paginator<ListHarnessesCommandOutput>;
|
|
1760
1853
|
paginateListMemories(
|
|
1761
1854
|
args?: ListMemoriesCommandInput,
|
|
1762
1855
|
paginationConfig?: Pick<
|
|
@@ -80,6 +80,10 @@ import {
|
|
|
80
80
|
CreateGatewayTargetCommandInput,
|
|
81
81
|
CreateGatewayTargetCommandOutput,
|
|
82
82
|
} from "./commands/CreateGatewayTargetCommand";
|
|
83
|
+
import {
|
|
84
|
+
CreateHarnessCommandInput,
|
|
85
|
+
CreateHarnessCommandOutput,
|
|
86
|
+
} from "./commands/CreateHarnessCommand";
|
|
83
87
|
import {
|
|
84
88
|
CreateMemoryCommandInput,
|
|
85
89
|
CreateMemoryCommandOutput,
|
|
@@ -148,6 +152,10 @@ import {
|
|
|
148
152
|
DeleteGatewayTargetCommandInput,
|
|
149
153
|
DeleteGatewayTargetCommandOutput,
|
|
150
154
|
} from "./commands/DeleteGatewayTargetCommand";
|
|
155
|
+
import {
|
|
156
|
+
DeleteHarnessCommandInput,
|
|
157
|
+
DeleteHarnessCommandOutput,
|
|
158
|
+
} from "./commands/DeleteHarnessCommand";
|
|
151
159
|
import {
|
|
152
160
|
DeleteMemoryCommandInput,
|
|
153
161
|
DeleteMemoryCommandOutput,
|
|
@@ -220,6 +228,10 @@ import {
|
|
|
220
228
|
GetGatewayTargetCommandInput,
|
|
221
229
|
GetGatewayTargetCommandOutput,
|
|
222
230
|
} from "./commands/GetGatewayTargetCommand";
|
|
231
|
+
import {
|
|
232
|
+
GetHarnessCommandInput,
|
|
233
|
+
GetHarnessCommandOutput,
|
|
234
|
+
} from "./commands/GetHarnessCommand";
|
|
223
235
|
import {
|
|
224
236
|
GetMemoryCommandInput,
|
|
225
237
|
GetMemoryCommandOutput,
|
|
@@ -304,6 +316,10 @@ import {
|
|
|
304
316
|
ListGatewayTargetsCommandInput,
|
|
305
317
|
ListGatewayTargetsCommandOutput,
|
|
306
318
|
} from "./commands/ListGatewayTargetsCommand";
|
|
319
|
+
import {
|
|
320
|
+
ListHarnessesCommandInput,
|
|
321
|
+
ListHarnessesCommandOutput,
|
|
322
|
+
} from "./commands/ListHarnessesCommand";
|
|
307
323
|
import {
|
|
308
324
|
ListMemoriesCommandInput,
|
|
309
325
|
ListMemoriesCommandOutput,
|
|
@@ -400,6 +416,10 @@ import {
|
|
|
400
416
|
UpdateGatewayTargetCommandInput,
|
|
401
417
|
UpdateGatewayTargetCommandOutput,
|
|
402
418
|
} from "./commands/UpdateGatewayTargetCommand";
|
|
419
|
+
import {
|
|
420
|
+
UpdateHarnessCommandInput,
|
|
421
|
+
UpdateHarnessCommandOutput,
|
|
422
|
+
} from "./commands/UpdateHarnessCommand";
|
|
403
423
|
import {
|
|
404
424
|
UpdateMemoryCommandInput,
|
|
405
425
|
UpdateMemoryCommandOutput,
|
|
@@ -453,6 +473,7 @@ export type ServiceInputTypes =
|
|
|
453
473
|
| CreateEvaluatorCommandInput
|
|
454
474
|
| CreateGatewayCommandInput
|
|
455
475
|
| CreateGatewayTargetCommandInput
|
|
476
|
+
| CreateHarnessCommandInput
|
|
456
477
|
| CreateMemoryCommandInput
|
|
457
478
|
| CreateOauth2CredentialProviderCommandInput
|
|
458
479
|
| CreateOnlineEvaluationConfigCommandInput
|
|
@@ -470,6 +491,7 @@ export type ServiceInputTypes =
|
|
|
470
491
|
| DeleteEvaluatorCommandInput
|
|
471
492
|
| DeleteGatewayCommandInput
|
|
472
493
|
| DeleteGatewayTargetCommandInput
|
|
494
|
+
| DeleteHarnessCommandInput
|
|
473
495
|
| DeleteMemoryCommandInput
|
|
474
496
|
| DeleteOauth2CredentialProviderCommandInput
|
|
475
497
|
| DeleteOnlineEvaluationConfigCommandInput
|
|
@@ -488,6 +510,7 @@ export type ServiceInputTypes =
|
|
|
488
510
|
| GetEvaluatorCommandInput
|
|
489
511
|
| GetGatewayCommandInput
|
|
490
512
|
| GetGatewayTargetCommandInput
|
|
513
|
+
| GetHarnessCommandInput
|
|
491
514
|
| GetMemoryCommandInput
|
|
492
515
|
| GetOauth2CredentialProviderCommandInput
|
|
493
516
|
| GetOnlineEvaluationConfigCommandInput
|
|
@@ -509,6 +532,7 @@ export type ServiceInputTypes =
|
|
|
509
532
|
| ListEvaluatorsCommandInput
|
|
510
533
|
| ListGatewayTargetsCommandInput
|
|
511
534
|
| ListGatewaysCommandInput
|
|
535
|
+
| ListHarnessesCommandInput
|
|
512
536
|
| ListMemoriesCommandInput
|
|
513
537
|
| ListOauth2CredentialProvidersCommandInput
|
|
514
538
|
| ListOnlineEvaluationConfigsCommandInput
|
|
@@ -533,6 +557,7 @@ export type ServiceInputTypes =
|
|
|
533
557
|
| UpdateEvaluatorCommandInput
|
|
534
558
|
| UpdateGatewayCommandInput
|
|
535
559
|
| UpdateGatewayTargetCommandInput
|
|
560
|
+
| UpdateHarnessCommandInput
|
|
536
561
|
| UpdateMemoryCommandInput
|
|
537
562
|
| UpdateOauth2CredentialProviderCommandInput
|
|
538
563
|
| UpdateOnlineEvaluationConfigCommandInput
|
|
@@ -552,6 +577,7 @@ export type ServiceOutputTypes =
|
|
|
552
577
|
| CreateEvaluatorCommandOutput
|
|
553
578
|
| CreateGatewayCommandOutput
|
|
554
579
|
| CreateGatewayTargetCommandOutput
|
|
580
|
+
| CreateHarnessCommandOutput
|
|
555
581
|
| CreateMemoryCommandOutput
|
|
556
582
|
| CreateOauth2CredentialProviderCommandOutput
|
|
557
583
|
| CreateOnlineEvaluationConfigCommandOutput
|
|
@@ -569,6 +595,7 @@ export type ServiceOutputTypes =
|
|
|
569
595
|
| DeleteEvaluatorCommandOutput
|
|
570
596
|
| DeleteGatewayCommandOutput
|
|
571
597
|
| DeleteGatewayTargetCommandOutput
|
|
598
|
+
| DeleteHarnessCommandOutput
|
|
572
599
|
| DeleteMemoryCommandOutput
|
|
573
600
|
| DeleteOauth2CredentialProviderCommandOutput
|
|
574
601
|
| DeleteOnlineEvaluationConfigCommandOutput
|
|
@@ -587,6 +614,7 @@ export type ServiceOutputTypes =
|
|
|
587
614
|
| GetEvaluatorCommandOutput
|
|
588
615
|
| GetGatewayCommandOutput
|
|
589
616
|
| GetGatewayTargetCommandOutput
|
|
617
|
+
| GetHarnessCommandOutput
|
|
590
618
|
| GetMemoryCommandOutput
|
|
591
619
|
| GetOauth2CredentialProviderCommandOutput
|
|
592
620
|
| GetOnlineEvaluationConfigCommandOutput
|
|
@@ -608,6 +636,7 @@ export type ServiceOutputTypes =
|
|
|
608
636
|
| ListEvaluatorsCommandOutput
|
|
609
637
|
| ListGatewayTargetsCommandOutput
|
|
610
638
|
| ListGatewaysCommandOutput
|
|
639
|
+
| ListHarnessesCommandOutput
|
|
611
640
|
| ListMemoriesCommandOutput
|
|
612
641
|
| ListOauth2CredentialProvidersCommandOutput
|
|
613
642
|
| ListOnlineEvaluationConfigsCommandOutput
|
|
@@ -632,6 +661,7 @@ export type ServiceOutputTypes =
|
|
|
632
661
|
| UpdateEvaluatorCommandOutput
|
|
633
662
|
| UpdateGatewayCommandOutput
|
|
634
663
|
| UpdateGatewayTargetCommandOutput
|
|
664
|
+
| UpdateHarnessCommandOutput
|
|
635
665
|
| UpdateMemoryCommandOutput
|
|
636
666
|
| UpdateOauth2CredentialProviderCommandOutput
|
|
637
667
|
| UpdateOnlineEvaluationConfigCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateHarnessRequest,
|
|
10
|
+
CreateHarnessResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateHarnessCommandInput extends CreateHarnessRequest {}
|
|
15
|
+
export interface CreateHarnessCommandOutput
|
|
16
|
+
extends CreateHarnessResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateHarnessCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateHarnessCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateHarnessCommandInput,
|
|
23
|
+
CreateHarnessCommandOutput,
|
|
24
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateHarnessCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateHarnessCommandInput,
|
|
32
|
+
CreateHarnessCommandOutput,
|
|
33
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateHarnessCommand extends CreateHarnessCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateHarnessRequest;
|
|
43
|
+
output: CreateHarnessResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateHarnessCommandInput;
|
|
47
|
+
output: CreateHarnessCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateOauth2CredentialProviderRequest,
|
|
10
10
|
CreateOauth2CredentialProviderResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateOauth2CredentialProviderCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
CreateOnlineEvaluationConfigRequest,
|
|
10
10
|
CreateOnlineEvaluationConfigResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface CreateOnlineEvaluationConfigCommandInput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteHarnessRequest,
|
|
10
|
+
DeleteHarnessResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteHarnessCommandInput extends DeleteHarnessRequest {}
|
|
15
|
+
export interface DeleteHarnessCommandOutput
|
|
16
|
+
extends DeleteHarnessResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteHarnessCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteHarnessCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteHarnessCommandInput,
|
|
23
|
+
DeleteHarnessCommandOutput,
|
|
24
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DeleteHarnessCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteHarnessCommandInput,
|
|
32
|
+
DeleteHarnessCommandOutput,
|
|
33
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteHarnessCommand extends DeleteHarnessCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteHarnessRequest;
|
|
43
|
+
output: DeleteHarnessResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteHarnessCommandInput;
|
|
47
|
+
output: DeleteHarnessCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DeleteOauth2CredentialProviderRequest,
|
|
10
10
|
DeleteOauth2CredentialProviderResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DeleteOauth2CredentialProviderCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DeleteOnlineEvaluationConfigRequest,
|
|
10
10
|
DeleteOnlineEvaluationConfigResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DeleteOnlineEvaluationConfigCommandInput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BedrockAgentCoreControlClient";
|
|
8
|
+
import { GetHarnessRequest, GetHarnessResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetHarnessCommandInput extends GetHarnessRequest {}
|
|
12
|
+
export interface GetHarnessCommandOutput
|
|
13
|
+
extends GetHarnessResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetHarnessCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetHarnessCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetHarnessCommandInput,
|
|
20
|
+
GetHarnessCommandOutput,
|
|
21
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetHarnessCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetHarnessCommandInput,
|
|
29
|
+
GetHarnessCommandOutput,
|
|
30
|
+
BedrockAgentCoreControlClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetHarnessCommand extends GetHarnessCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetHarnessRequest;
|
|
40
|
+
output: GetHarnessResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetHarnessCommandInput;
|
|
44
|
+
output: GetHarnessCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetOauth2CredentialProviderRequest,
|
|
10
10
|
GetOauth2CredentialProviderResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetOauth2CredentialProviderCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetOnlineEvaluationConfigRequest,
|
|
10
10
|
GetOnlineEvaluationConfigResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetOnlineEvaluationConfigCommandInput
|