@aws-sdk/client-bedrock-agentcore-control 3.1035.0 → 3.1037.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +15 -4
- package/dist-cjs/schemas/schemas_0.js +39 -28
- package/dist-es/models/enums.js +14 -4
- package/dist-es/schemas/schemas_0.js +32 -21
- package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +45 -4
- package/dist-types/commands/CreateGatewayCommand.d.ts +87 -3
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/CreateHarnessCommand.d.ts +87 -3
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +88 -3
- package/dist-types/commands/CreateRegistryCommand.d.ts +43 -0
- package/dist-types/commands/DeleteHarnessCommand.d.ts +43 -0
- package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -0
- package/dist-types/commands/GetAgentRuntimeCommand.d.ts +44 -1
- package/dist-types/commands/GetGatewayCommand.d.ts +43 -0
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetHarnessCommand.d.ts +43 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +45 -0
- package/dist-types/commands/GetRegistryCommand.d.ts +43 -0
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +44 -1
- package/dist-types/commands/UpdateGatewayCommand.d.ts +86 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHarnessCommand.d.ts +86 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +87 -0
- package/dist-types/commands/UpdateRegistryCommand.d.ts +86 -0
- package/dist-types/models/enums.d.ts +30 -12
- package/dist-types/models/models_0.d.ts +151 -136
- package/dist-types/models/models_1.d.ts +53 -2
- package/dist-types/schemas/schemas_0.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +17 -6
- package/dist-types/ts3.4/models/models_0.d.ts +59 -56
- package/dist-types/ts3.4/models/models_1.d.ts +13 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -1
- package/package.json +14 -14
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
RegistryRecordStatus,
|
|
16
16
|
RegistryStatus,
|
|
17
17
|
SchemaType,
|
|
18
|
+
Status,
|
|
18
19
|
SynchronizationType,
|
|
19
20
|
TargetStatus,
|
|
20
21
|
} from "./enums";
|
|
@@ -36,15 +37,20 @@ import {
|
|
|
36
37
|
ManagedResourceDetails,
|
|
37
38
|
McpServerTargetConfiguration,
|
|
38
39
|
MetadataConfiguration,
|
|
39
|
-
MicrosoftOauth2ProviderConfigInput,
|
|
40
40
|
Oauth2Discovery,
|
|
41
41
|
PrivateEndpoint,
|
|
42
|
+
PrivateEndpointOverride,
|
|
42
43
|
S3Configuration,
|
|
43
44
|
Secret,
|
|
44
45
|
SkillDefinition,
|
|
45
46
|
SkillMdDefinition,
|
|
46
47
|
UpdatedAuthorizerConfiguration,
|
|
47
48
|
} from "./models_0";
|
|
49
|
+
export interface MicrosoftOauth2ProviderConfigInput {
|
|
50
|
+
clientId: string | undefined;
|
|
51
|
+
clientSecret: string | undefined;
|
|
52
|
+
tenantId?: string | undefined;
|
|
53
|
+
}
|
|
48
54
|
export interface SalesforceOauth2ProviderConfigInput {
|
|
49
55
|
clientId: string | undefined;
|
|
50
56
|
clientSecret: string | undefined;
|
|
@@ -221,6 +227,8 @@ export interface AtlassianOauth2ProviderConfigOutput {
|
|
|
221
227
|
export interface CustomOauth2ProviderConfigOutput {
|
|
222
228
|
oauthDiscovery: Oauth2Discovery | undefined;
|
|
223
229
|
clientId?: string | undefined;
|
|
230
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
231
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
224
232
|
}
|
|
225
233
|
export interface GithubOauth2ProviderConfigOutput {
|
|
226
234
|
oauthDiscovery: Oauth2Discovery | undefined;
|
|
@@ -411,6 +419,7 @@ export interface CreateOauth2CredentialProviderResponse {
|
|
|
411
419
|
credentialProviderArn: string | undefined;
|
|
412
420
|
callbackUrl?: string | undefined;
|
|
413
421
|
oauth2ProviderConfigOutput?: Oauth2ProviderConfigOutput | undefined;
|
|
422
|
+
status?: Status | undefined;
|
|
414
423
|
}
|
|
415
424
|
export interface DeleteOauth2CredentialProviderRequest {
|
|
416
425
|
name: string | undefined;
|
|
@@ -428,6 +437,8 @@ export interface GetOauth2CredentialProviderResponse {
|
|
|
428
437
|
oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
|
|
429
438
|
createdTime: Date | undefined;
|
|
430
439
|
lastUpdatedTime: Date | undefined;
|
|
440
|
+
status?: Status | undefined;
|
|
441
|
+
failureReason?: string | undefined;
|
|
431
442
|
}
|
|
432
443
|
export interface ListOauth2CredentialProvidersRequest {
|
|
433
444
|
nextToken?: string | undefined;
|
|
@@ -458,6 +469,7 @@ export interface UpdateOauth2CredentialProviderResponse {
|
|
|
458
469
|
oauth2ProviderConfigOutput: Oauth2ProviderConfigOutput | undefined;
|
|
459
470
|
createdTime: Date | undefined;
|
|
460
471
|
lastUpdatedTime: Date | undefined;
|
|
472
|
+
status?: Status | undefined;
|
|
461
473
|
}
|
|
462
474
|
export interface CloudWatchLogsInputConfig {
|
|
463
475
|
logGroupNames: string[] | undefined;
|
|
@@ -277,8 +277,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
|
277
277
|
export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
|
|
278
278
|
export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
|
|
279
279
|
export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
|
|
280
|
-
export declare var ManagedLatticeResource$: StaticStructureSchema;
|
|
281
280
|
export declare var ManagedResourceDetails$: StaticStructureSchema;
|
|
281
|
+
export declare var ManagedVpcResource$: StaticStructureSchema;
|
|
282
282
|
export declare var McpDescriptor$: StaticStructureSchema;
|
|
283
283
|
export declare var MCPGatewayConfiguration$: StaticStructureSchema;
|
|
284
284
|
export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
|
|
@@ -309,6 +309,7 @@ export declare var PolicyEngine$: StaticStructureSchema;
|
|
|
309
309
|
export declare var PolicyGeneration$: StaticStructureSchema;
|
|
310
310
|
export declare var PolicyGenerationAsset$: StaticStructureSchema;
|
|
311
311
|
export declare var PolicyGenerationDetails$: StaticStructureSchema;
|
|
312
|
+
export declare var PrivateEndpointOverride$: StaticStructureSchema;
|
|
312
313
|
export declare var ProtocolConfiguration$: StaticStructureSchema;
|
|
313
314
|
export declare var PutResourcePolicyRequest$: StaticStructureSchema;
|
|
314
315
|
export declare var PutResourcePolicyResponse$: StaticStructureSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-agentcore-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Agentcore Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1037.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-bedrock-agentcore-control",
|
|
@@ -21,41 +21,41 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.36",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.35",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.21",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
38
38
|
"@smithy/hash-node": "^4.2.14",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.5",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
46
|
-
"@smithy/node-http-handler": "^4.6.
|
|
46
|
+
"@smithy/node-http-handler": "^4.6.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.14",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.13",
|
|
49
49
|
"@smithy/types": "^4.14.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.14",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.49",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.4",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
60
|
"@smithy/util-waiter": "^4.2.16",
|
|
61
61
|
"tslib": "^2.6.2"
|