@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
|
@@ -10,6 +10,7 @@ import { type CreateCodeInterpreterCommandInput, type CreateCodeInterpreterComma
|
|
|
10
10
|
import { type CreateEvaluatorCommandInput, type CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
|
|
11
11
|
import { type CreateGatewayCommandInput, type CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
12
12
|
import { type CreateGatewayTargetCommandInput, type CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
|
|
13
|
+
import { type CreateHarnessCommandInput, type CreateHarnessCommandOutput } from "./commands/CreateHarnessCommand";
|
|
13
14
|
import { type CreateMemoryCommandInput, type CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
|
|
14
15
|
import { type CreateOauth2CredentialProviderCommandInput, type CreateOauth2CredentialProviderCommandOutput } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
15
16
|
import { type CreateOnlineEvaluationConfigCommandInput, type CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
@@ -27,6 +28,7 @@ import { type DeleteCodeInterpreterCommandInput, type DeleteCodeInterpreterComma
|
|
|
27
28
|
import { type DeleteEvaluatorCommandInput, type DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
|
|
28
29
|
import { type DeleteGatewayCommandInput, type DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
29
30
|
import { type DeleteGatewayTargetCommandInput, type DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
|
|
31
|
+
import { type DeleteHarnessCommandInput, type DeleteHarnessCommandOutput } from "./commands/DeleteHarnessCommand";
|
|
30
32
|
import { type DeleteMemoryCommandInput, type DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
|
|
31
33
|
import { type DeleteOauth2CredentialProviderCommandInput, type DeleteOauth2CredentialProviderCommandOutput } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
32
34
|
import { type DeleteOnlineEvaluationConfigCommandInput, type DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
@@ -45,6 +47,7 @@ import { type GetCodeInterpreterCommandInput, type GetCodeInterpreterCommandOutp
|
|
|
45
47
|
import { type GetEvaluatorCommandInput, type GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
|
|
46
48
|
import { type GetGatewayCommandInput, type GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
47
49
|
import { type GetGatewayTargetCommandInput, type GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
|
|
50
|
+
import { type GetHarnessCommandInput, type GetHarnessCommandOutput } from "./commands/GetHarnessCommand";
|
|
48
51
|
import { type GetMemoryCommandInput, type GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
|
|
49
52
|
import { type GetOauth2CredentialProviderCommandInput, type GetOauth2CredentialProviderCommandOutput } from "./commands/GetOauth2CredentialProviderCommand";
|
|
50
53
|
import { type GetOnlineEvaluationConfigCommandInput, type GetOnlineEvaluationConfigCommandOutput } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
@@ -66,6 +69,7 @@ import { type ListCodeInterpretersCommandInput, type ListCodeInterpretersCommand
|
|
|
66
69
|
import { type ListEvaluatorsCommandInput, type ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
|
|
67
70
|
import { type ListGatewaysCommandInput, type ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
68
71
|
import { type ListGatewayTargetsCommandInput, type ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
|
|
72
|
+
import { type ListHarnessesCommandInput, type ListHarnessesCommandOutput } from "./commands/ListHarnessesCommand";
|
|
69
73
|
import { type ListMemoriesCommandInput, type ListMemoriesCommandOutput } from "./commands/ListMemoriesCommand";
|
|
70
74
|
import { type ListOauth2CredentialProvidersCommandInput, type ListOauth2CredentialProvidersCommandOutput } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
71
75
|
import { type ListOnlineEvaluationConfigsCommandInput, type ListOnlineEvaluationConfigsCommandOutput } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
@@ -90,6 +94,7 @@ import { type UpdateApiKeyCredentialProviderCommandInput, type UpdateApiKeyCrede
|
|
|
90
94
|
import { type UpdateEvaluatorCommandInput, type UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
|
|
91
95
|
import { type UpdateGatewayCommandInput, type UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
92
96
|
import { type UpdateGatewayTargetCommandInput, type UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
|
|
97
|
+
import { type UpdateHarnessCommandInput, type UpdateHarnessCommandOutput } from "./commands/UpdateHarnessCommand";
|
|
93
98
|
import { type UpdateMemoryCommandInput, type UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
|
|
94
99
|
import { type UpdateOauth2CredentialProviderCommandInput, type UpdateOauth2CredentialProviderCommandOutput } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
95
100
|
import { type UpdateOnlineEvaluationConfigCommandInput, type UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
@@ -154,6 +159,12 @@ export interface BedrockAgentCoreControl {
|
|
|
154
159
|
createGatewayTarget(args: CreateGatewayTargetCommandInput, options?: __HttpHandlerOptions): Promise<CreateGatewayTargetCommandOutput>;
|
|
155
160
|
createGatewayTarget(args: CreateGatewayTargetCommandInput, cb: (err: any, data?: CreateGatewayTargetCommandOutput) => void): void;
|
|
156
161
|
createGatewayTarget(args: CreateGatewayTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGatewayTargetCommandOutput) => void): void;
|
|
162
|
+
/**
|
|
163
|
+
* @see {@link CreateHarnessCommand}
|
|
164
|
+
*/
|
|
165
|
+
createHarness(args: CreateHarnessCommandInput, options?: __HttpHandlerOptions): Promise<CreateHarnessCommandOutput>;
|
|
166
|
+
createHarness(args: CreateHarnessCommandInput, cb: (err: any, data?: CreateHarnessCommandOutput) => void): void;
|
|
167
|
+
createHarness(args: CreateHarnessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHarnessCommandOutput) => void): void;
|
|
157
168
|
/**
|
|
158
169
|
* @see {@link CreateMemoryCommand}
|
|
159
170
|
*/
|
|
@@ -256,6 +267,12 @@ export interface BedrockAgentCoreControl {
|
|
|
256
267
|
deleteGatewayTarget(args: DeleteGatewayTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGatewayTargetCommandOutput>;
|
|
257
268
|
deleteGatewayTarget(args: DeleteGatewayTargetCommandInput, cb: (err: any, data?: DeleteGatewayTargetCommandOutput) => void): void;
|
|
258
269
|
deleteGatewayTarget(args: DeleteGatewayTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGatewayTargetCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* @see {@link DeleteHarnessCommand}
|
|
272
|
+
*/
|
|
273
|
+
deleteHarness(args: DeleteHarnessCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHarnessCommandOutput>;
|
|
274
|
+
deleteHarness(args: DeleteHarnessCommandInput, cb: (err: any, data?: DeleteHarnessCommandOutput) => void): void;
|
|
275
|
+
deleteHarness(args: DeleteHarnessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHarnessCommandOutput) => void): void;
|
|
259
276
|
/**
|
|
260
277
|
* @see {@link DeleteMemoryCommand}
|
|
261
278
|
*/
|
|
@@ -364,6 +381,12 @@ export interface BedrockAgentCoreControl {
|
|
|
364
381
|
getGatewayTarget(args: GetGatewayTargetCommandInput, options?: __HttpHandlerOptions): Promise<GetGatewayTargetCommandOutput>;
|
|
365
382
|
getGatewayTarget(args: GetGatewayTargetCommandInput, cb: (err: any, data?: GetGatewayTargetCommandOutput) => void): void;
|
|
366
383
|
getGatewayTarget(args: GetGatewayTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGatewayTargetCommandOutput) => void): void;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link GetHarnessCommand}
|
|
386
|
+
*/
|
|
387
|
+
getHarness(args: GetHarnessCommandInput, options?: __HttpHandlerOptions): Promise<GetHarnessCommandOutput>;
|
|
388
|
+
getHarness(args: GetHarnessCommandInput, cb: (err: any, data?: GetHarnessCommandOutput) => void): void;
|
|
389
|
+
getHarness(args: GetHarnessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetHarnessCommandOutput) => void): void;
|
|
367
390
|
/**
|
|
368
391
|
* @see {@link GetMemoryCommand}
|
|
369
392
|
*/
|
|
@@ -498,6 +521,13 @@ export interface BedrockAgentCoreControl {
|
|
|
498
521
|
listGatewayTargets(args: ListGatewayTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListGatewayTargetsCommandOutput>;
|
|
499
522
|
listGatewayTargets(args: ListGatewayTargetsCommandInput, cb: (err: any, data?: ListGatewayTargetsCommandOutput) => void): void;
|
|
500
523
|
listGatewayTargets(args: ListGatewayTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGatewayTargetsCommandOutput) => void): void;
|
|
524
|
+
/**
|
|
525
|
+
* @see {@link ListHarnessesCommand}
|
|
526
|
+
*/
|
|
527
|
+
listHarnesses(): Promise<ListHarnessesCommandOutput>;
|
|
528
|
+
listHarnesses(args: ListHarnessesCommandInput, options?: __HttpHandlerOptions): Promise<ListHarnessesCommandOutput>;
|
|
529
|
+
listHarnesses(args: ListHarnessesCommandInput, cb: (err: any, data?: ListHarnessesCommandOutput) => void): void;
|
|
530
|
+
listHarnesses(args: ListHarnessesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListHarnessesCommandOutput) => void): void;
|
|
501
531
|
/**
|
|
502
532
|
* @see {@link ListMemoriesCommand}
|
|
503
533
|
*/
|
|
@@ -648,6 +678,12 @@ export interface BedrockAgentCoreControl {
|
|
|
648
678
|
updateGatewayTarget(args: UpdateGatewayTargetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGatewayTargetCommandOutput>;
|
|
649
679
|
updateGatewayTarget(args: UpdateGatewayTargetCommandInput, cb: (err: any, data?: UpdateGatewayTargetCommandOutput) => void): void;
|
|
650
680
|
updateGatewayTarget(args: UpdateGatewayTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGatewayTargetCommandOutput) => void): void;
|
|
681
|
+
/**
|
|
682
|
+
* @see {@link UpdateHarnessCommand}
|
|
683
|
+
*/
|
|
684
|
+
updateHarness(args: UpdateHarnessCommandInput, options?: __HttpHandlerOptions): Promise<UpdateHarnessCommandOutput>;
|
|
685
|
+
updateHarness(args: UpdateHarnessCommandInput, cb: (err: any, data?: UpdateHarnessCommandOutput) => void): void;
|
|
686
|
+
updateHarness(args: UpdateHarnessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateHarnessCommandOutput) => void): void;
|
|
651
687
|
/**
|
|
652
688
|
* @see {@link UpdateMemoryCommand}
|
|
653
689
|
*/
|
|
@@ -772,6 +808,13 @@ export interface BedrockAgentCoreControl {
|
|
|
772
808
|
* @returns AsyncIterable of {@link ListGatewayTargetsCommandOutput}.
|
|
773
809
|
*/
|
|
774
810
|
paginateListGatewayTargets(args: ListGatewayTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListGatewayTargetsCommandOutput>;
|
|
811
|
+
/**
|
|
812
|
+
* @see {@link ListHarnessesCommand}
|
|
813
|
+
* @param args - command input.
|
|
814
|
+
* @param paginationConfig - optional pagination config.
|
|
815
|
+
* @returns AsyncIterable of {@link ListHarnessesCommandOutput}.
|
|
816
|
+
*/
|
|
817
|
+
paginateListHarnesses(args?: ListHarnessesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHarnessesCommandOutput>;
|
|
775
818
|
/**
|
|
776
819
|
* @see {@link ListMemoriesCommand}
|
|
777
820
|
* @param args - command input.
|
|
@@ -16,6 +16,7 @@ import type { CreateCodeInterpreterCommandInput, CreateCodeInterpreterCommandOut
|
|
|
16
16
|
import type { CreateEvaluatorCommandInput, CreateEvaluatorCommandOutput } from "./commands/CreateEvaluatorCommand";
|
|
17
17
|
import type { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
18
18
|
import type { CreateGatewayTargetCommandInput, CreateGatewayTargetCommandOutput } from "./commands/CreateGatewayTargetCommand";
|
|
19
|
+
import type { CreateHarnessCommandInput, CreateHarnessCommandOutput } from "./commands/CreateHarnessCommand";
|
|
19
20
|
import type { CreateMemoryCommandInput, CreateMemoryCommandOutput } from "./commands/CreateMemoryCommand";
|
|
20
21
|
import type { CreateOauth2CredentialProviderCommandInput, CreateOauth2CredentialProviderCommandOutput } from "./commands/CreateOauth2CredentialProviderCommand";
|
|
21
22
|
import type { CreateOnlineEvaluationConfigCommandInput, CreateOnlineEvaluationConfigCommandOutput } from "./commands/CreateOnlineEvaluationConfigCommand";
|
|
@@ -33,6 +34,7 @@ import type { DeleteCodeInterpreterCommandInput, DeleteCodeInterpreterCommandOut
|
|
|
33
34
|
import type { DeleteEvaluatorCommandInput, DeleteEvaluatorCommandOutput } from "./commands/DeleteEvaluatorCommand";
|
|
34
35
|
import type { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
35
36
|
import type { DeleteGatewayTargetCommandInput, DeleteGatewayTargetCommandOutput } from "./commands/DeleteGatewayTargetCommand";
|
|
37
|
+
import type { DeleteHarnessCommandInput, DeleteHarnessCommandOutput } from "./commands/DeleteHarnessCommand";
|
|
36
38
|
import type { DeleteMemoryCommandInput, DeleteMemoryCommandOutput } from "./commands/DeleteMemoryCommand";
|
|
37
39
|
import type { DeleteOauth2CredentialProviderCommandInput, DeleteOauth2CredentialProviderCommandOutput } from "./commands/DeleteOauth2CredentialProviderCommand";
|
|
38
40
|
import type { DeleteOnlineEvaluationConfigCommandInput, DeleteOnlineEvaluationConfigCommandOutput } from "./commands/DeleteOnlineEvaluationConfigCommand";
|
|
@@ -51,6 +53,7 @@ import type { GetCodeInterpreterCommandInput, GetCodeInterpreterCommandOutput }
|
|
|
51
53
|
import type { GetEvaluatorCommandInput, GetEvaluatorCommandOutput } from "./commands/GetEvaluatorCommand";
|
|
52
54
|
import type { GetGatewayCommandInput, GetGatewayCommandOutput } from "./commands/GetGatewayCommand";
|
|
53
55
|
import type { GetGatewayTargetCommandInput, GetGatewayTargetCommandOutput } from "./commands/GetGatewayTargetCommand";
|
|
56
|
+
import type { GetHarnessCommandInput, GetHarnessCommandOutput } from "./commands/GetHarnessCommand";
|
|
54
57
|
import type { GetMemoryCommandInput, GetMemoryCommandOutput } from "./commands/GetMemoryCommand";
|
|
55
58
|
import type { GetOauth2CredentialProviderCommandInput, GetOauth2CredentialProviderCommandOutput } from "./commands/GetOauth2CredentialProviderCommand";
|
|
56
59
|
import type { GetOnlineEvaluationConfigCommandInput, GetOnlineEvaluationConfigCommandOutput } from "./commands/GetOnlineEvaluationConfigCommand";
|
|
@@ -72,6 +75,7 @@ import type { ListCodeInterpretersCommandInput, ListCodeInterpretersCommandOutpu
|
|
|
72
75
|
import type { ListEvaluatorsCommandInput, ListEvaluatorsCommandOutput } from "./commands/ListEvaluatorsCommand";
|
|
73
76
|
import type { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
74
77
|
import type { ListGatewayTargetsCommandInput, ListGatewayTargetsCommandOutput } from "./commands/ListGatewayTargetsCommand";
|
|
78
|
+
import type { ListHarnessesCommandInput, ListHarnessesCommandOutput } from "./commands/ListHarnessesCommand";
|
|
75
79
|
import type { ListMemoriesCommandInput, ListMemoriesCommandOutput } from "./commands/ListMemoriesCommand";
|
|
76
80
|
import type { ListOauth2CredentialProvidersCommandInput, ListOauth2CredentialProvidersCommandOutput } from "./commands/ListOauth2CredentialProvidersCommand";
|
|
77
81
|
import type { ListOnlineEvaluationConfigsCommandInput, ListOnlineEvaluationConfigsCommandOutput } from "./commands/ListOnlineEvaluationConfigsCommand";
|
|
@@ -96,6 +100,7 @@ import type { UpdateApiKeyCredentialProviderCommandInput, UpdateApiKeyCredential
|
|
|
96
100
|
import type { UpdateEvaluatorCommandInput, UpdateEvaluatorCommandOutput } from "./commands/UpdateEvaluatorCommand";
|
|
97
101
|
import type { UpdateGatewayCommandInput, UpdateGatewayCommandOutput } from "./commands/UpdateGatewayCommand";
|
|
98
102
|
import type { UpdateGatewayTargetCommandInput, UpdateGatewayTargetCommandOutput } from "./commands/UpdateGatewayTargetCommand";
|
|
103
|
+
import type { UpdateHarnessCommandInput, UpdateHarnessCommandOutput } from "./commands/UpdateHarnessCommand";
|
|
99
104
|
import type { UpdateMemoryCommandInput, UpdateMemoryCommandOutput } from "./commands/UpdateMemoryCommand";
|
|
100
105
|
import type { UpdateOauth2CredentialProviderCommandInput, UpdateOauth2CredentialProviderCommandOutput } from "./commands/UpdateOauth2CredentialProviderCommand";
|
|
101
106
|
import type { UpdateOnlineEvaluationConfigCommandInput, UpdateOnlineEvaluationConfigCommandOutput } from "./commands/UpdateOnlineEvaluationConfigCommand";
|
|
@@ -111,11 +116,11 @@ export { __Client };
|
|
|
111
116
|
/**
|
|
112
117
|
* @public
|
|
113
118
|
*/
|
|
114
|
-
export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateRegistryCommandInput | CreateRegistryRecordCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteRegistryCommandInput | DeleteRegistryRecordCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetRegistryCommandInput | GetRegistryRecordCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListRegistriesCommandInput | ListRegistryRecordsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SubmitRegistryRecordForApprovalCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateRegistryCommandInput | UpdateRegistryRecordCommandInput | UpdateRegistryRecordStatusCommandInput | UpdateWorkloadIdentityCommandInput;
|
|
119
|
+
export type ServiceInputTypes = CreateAgentRuntimeCommandInput | CreateAgentRuntimeEndpointCommandInput | CreateApiKeyCredentialProviderCommandInput | CreateBrowserCommandInput | CreateBrowserProfileCommandInput | CreateCodeInterpreterCommandInput | CreateEvaluatorCommandInput | CreateGatewayCommandInput | CreateGatewayTargetCommandInput | CreateHarnessCommandInput | CreateMemoryCommandInput | CreateOauth2CredentialProviderCommandInput | CreateOnlineEvaluationConfigCommandInput | CreatePolicyCommandInput | CreatePolicyEngineCommandInput | CreateRegistryCommandInput | CreateRegistryRecordCommandInput | CreateWorkloadIdentityCommandInput | DeleteAgentRuntimeCommandInput | DeleteAgentRuntimeEndpointCommandInput | DeleteApiKeyCredentialProviderCommandInput | DeleteBrowserCommandInput | DeleteBrowserProfileCommandInput | DeleteCodeInterpreterCommandInput | DeleteEvaluatorCommandInput | DeleteGatewayCommandInput | DeleteGatewayTargetCommandInput | DeleteHarnessCommandInput | DeleteMemoryCommandInput | DeleteOauth2CredentialProviderCommandInput | DeleteOnlineEvaluationConfigCommandInput | DeletePolicyCommandInput | DeletePolicyEngineCommandInput | DeleteRegistryCommandInput | DeleteRegistryRecordCommandInput | DeleteResourcePolicyCommandInput | DeleteWorkloadIdentityCommandInput | GetAgentRuntimeCommandInput | GetAgentRuntimeEndpointCommandInput | GetApiKeyCredentialProviderCommandInput | GetBrowserCommandInput | GetBrowserProfileCommandInput | GetCodeInterpreterCommandInput | GetEvaluatorCommandInput | GetGatewayCommandInput | GetGatewayTargetCommandInput | GetHarnessCommandInput | GetMemoryCommandInput | GetOauth2CredentialProviderCommandInput | GetOnlineEvaluationConfigCommandInput | GetPolicyCommandInput | GetPolicyEngineCommandInput | GetPolicyGenerationCommandInput | GetRegistryCommandInput | GetRegistryRecordCommandInput | GetResourcePolicyCommandInput | GetTokenVaultCommandInput | GetWorkloadIdentityCommandInput | ListAgentRuntimeEndpointsCommandInput | ListAgentRuntimeVersionsCommandInput | ListAgentRuntimesCommandInput | ListApiKeyCredentialProvidersCommandInput | ListBrowserProfilesCommandInput | ListBrowsersCommandInput | ListCodeInterpretersCommandInput | ListEvaluatorsCommandInput | ListGatewayTargetsCommandInput | ListGatewaysCommandInput | ListHarnessesCommandInput | ListMemoriesCommandInput | ListOauth2CredentialProvidersCommandInput | ListOnlineEvaluationConfigsCommandInput | ListPoliciesCommandInput | ListPolicyEnginesCommandInput | ListPolicyGenerationAssetsCommandInput | ListPolicyGenerationsCommandInput | ListRegistriesCommandInput | ListRegistryRecordsCommandInput | ListTagsForResourceCommandInput | ListWorkloadIdentitiesCommandInput | PutResourcePolicyCommandInput | SetTokenVaultCMKCommandInput | StartPolicyGenerationCommandInput | SubmitRegistryRecordForApprovalCommandInput | SynchronizeGatewayTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentRuntimeCommandInput | UpdateAgentRuntimeEndpointCommandInput | UpdateApiKeyCredentialProviderCommandInput | UpdateEvaluatorCommandInput | UpdateGatewayCommandInput | UpdateGatewayTargetCommandInput | UpdateHarnessCommandInput | UpdateMemoryCommandInput | UpdateOauth2CredentialProviderCommandInput | UpdateOnlineEvaluationConfigCommandInput | UpdatePolicyCommandInput | UpdatePolicyEngineCommandInput | UpdateRegistryCommandInput | UpdateRegistryRecordCommandInput | UpdateRegistryRecordStatusCommandInput | UpdateWorkloadIdentityCommandInput;
|
|
115
120
|
/**
|
|
116
121
|
* @public
|
|
117
122
|
*/
|
|
118
|
-
export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateRegistryCommandOutput | CreateRegistryRecordCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteRegistryCommandOutput | DeleteRegistryRecordCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetRegistryCommandOutput | GetRegistryRecordCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListRegistriesCommandOutput | ListRegistryRecordsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SubmitRegistryRecordForApprovalCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateRegistryCommandOutput | UpdateRegistryRecordCommandOutput | UpdateRegistryRecordStatusCommandOutput | UpdateWorkloadIdentityCommandOutput;
|
|
123
|
+
export type ServiceOutputTypes = CreateAgentRuntimeCommandOutput | CreateAgentRuntimeEndpointCommandOutput | CreateApiKeyCredentialProviderCommandOutput | CreateBrowserCommandOutput | CreateBrowserProfileCommandOutput | CreateCodeInterpreterCommandOutput | CreateEvaluatorCommandOutput | CreateGatewayCommandOutput | CreateGatewayTargetCommandOutput | CreateHarnessCommandOutput | CreateMemoryCommandOutput | CreateOauth2CredentialProviderCommandOutput | CreateOnlineEvaluationConfigCommandOutput | CreatePolicyCommandOutput | CreatePolicyEngineCommandOutput | CreateRegistryCommandOutput | CreateRegistryRecordCommandOutput | CreateWorkloadIdentityCommandOutput | DeleteAgentRuntimeCommandOutput | DeleteAgentRuntimeEndpointCommandOutput | DeleteApiKeyCredentialProviderCommandOutput | DeleteBrowserCommandOutput | DeleteBrowserProfileCommandOutput | DeleteCodeInterpreterCommandOutput | DeleteEvaluatorCommandOutput | DeleteGatewayCommandOutput | DeleteGatewayTargetCommandOutput | DeleteHarnessCommandOutput | DeleteMemoryCommandOutput | DeleteOauth2CredentialProviderCommandOutput | DeleteOnlineEvaluationConfigCommandOutput | DeletePolicyCommandOutput | DeletePolicyEngineCommandOutput | DeleteRegistryCommandOutput | DeleteRegistryRecordCommandOutput | DeleteResourcePolicyCommandOutput | DeleteWorkloadIdentityCommandOutput | GetAgentRuntimeCommandOutput | GetAgentRuntimeEndpointCommandOutput | GetApiKeyCredentialProviderCommandOutput | GetBrowserCommandOutput | GetBrowserProfileCommandOutput | GetCodeInterpreterCommandOutput | GetEvaluatorCommandOutput | GetGatewayCommandOutput | GetGatewayTargetCommandOutput | GetHarnessCommandOutput | GetMemoryCommandOutput | GetOauth2CredentialProviderCommandOutput | GetOnlineEvaluationConfigCommandOutput | GetPolicyCommandOutput | GetPolicyEngineCommandOutput | GetPolicyGenerationCommandOutput | GetRegistryCommandOutput | GetRegistryRecordCommandOutput | GetResourcePolicyCommandOutput | GetTokenVaultCommandOutput | GetWorkloadIdentityCommandOutput | ListAgentRuntimeEndpointsCommandOutput | ListAgentRuntimeVersionsCommandOutput | ListAgentRuntimesCommandOutput | ListApiKeyCredentialProvidersCommandOutput | ListBrowserProfilesCommandOutput | ListBrowsersCommandOutput | ListCodeInterpretersCommandOutput | ListEvaluatorsCommandOutput | ListGatewayTargetsCommandOutput | ListGatewaysCommandOutput | ListHarnessesCommandOutput | ListMemoriesCommandOutput | ListOauth2CredentialProvidersCommandOutput | ListOnlineEvaluationConfigsCommandOutput | ListPoliciesCommandOutput | ListPolicyEnginesCommandOutput | ListPolicyGenerationAssetsCommandOutput | ListPolicyGenerationsCommandOutput | ListRegistriesCommandOutput | ListRegistryRecordsCommandOutput | ListTagsForResourceCommandOutput | ListWorkloadIdentitiesCommandOutput | PutResourcePolicyCommandOutput | SetTokenVaultCMKCommandOutput | StartPolicyGenerationCommandOutput | SubmitRegistryRecordForApprovalCommandOutput | SynchronizeGatewayTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentRuntimeCommandOutput | UpdateAgentRuntimeEndpointCommandOutput | UpdateApiKeyCredentialProviderCommandOutput | UpdateEvaluatorCommandOutput | UpdateGatewayCommandOutput | UpdateGatewayTargetCommandOutput | UpdateHarnessCommandOutput | UpdateMemoryCommandOutput | UpdateOauth2CredentialProviderCommandOutput | UpdateOnlineEvaluationConfigCommandOutput | UpdatePolicyCommandOutput | UpdatePolicyEngineCommandOutput | UpdateRegistryCommandOutput | UpdateRegistryRecordCommandOutput | UpdateRegistryRecordStatusCommandOutput | UpdateWorkloadIdentityCommandOutput;
|
|
119
124
|
/**
|
|
120
125
|
* @public
|
|
121
126
|
*/
|
|
@@ -103,6 +103,7 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
103
103
|
* },
|
|
104
104
|
* inlinePayload: "STRING_VALUE",
|
|
105
105
|
* },
|
|
106
|
+
* resourcePriority: Number("int"),
|
|
106
107
|
* listingMode: "DEFAULT" || "DYNAMIC",
|
|
107
108
|
* },
|
|
108
109
|
* apiGateway: { // ApiGatewayTargetConfiguration
|
|
@@ -263,6 +264,7 @@ declare const CreateGatewayTargetCommand_base: {
|
|
|
263
264
|
* // },
|
|
264
265
|
* // inlinePayload: "STRING_VALUE",
|
|
265
266
|
* // },
|
|
267
|
+
* // resourcePriority: Number("int"),
|
|
266
268
|
* // listingMode: "DEFAULT" || "DYNAMIC",
|
|
267
269
|
* // },
|
|
268
270
|
* // apiGateway: { // ApiGatewayTargetConfiguration
|