@aws-sdk/client-bedrock-agentcore-control 3.1056.0 → 3.1057.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 +5 -0
- package/dist-cjs/schemas/schemas_0.js +85 -64
- package/dist-es/models/enums.js +4 -0
- package/dist-es/schemas/schemas_0.js +77 -56
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -2
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/models/enums.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +69 -19
- package/dist-types/models/models_1.d.ts +234 -28
- package/dist-types/models/models_2.d.ts +10 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -7
- package/dist-types/ts3.4/models/models_1.d.ts +60 -18
- package/dist-types/ts3.4/models/models_2.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +2 -2
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
RegistryRecordOAuthGrantType,
|
|
31
31
|
RegistryRecordStatus,
|
|
32
32
|
RegistryStatus,
|
|
33
|
+
SecretSourceType,
|
|
33
34
|
Status,
|
|
34
35
|
SynchronizationType,
|
|
35
36
|
} from "./enums";
|
|
@@ -37,16 +38,20 @@ import {
|
|
|
37
38
|
A2aDescriptor,
|
|
38
39
|
AgentSkillsDescriptor,
|
|
39
40
|
AuthorizerConfiguration,
|
|
40
|
-
IndexedKey,
|
|
41
41
|
KmsConfiguration,
|
|
42
42
|
PrivateEndpoint,
|
|
43
43
|
PrivateEndpointOverride,
|
|
44
44
|
Secret,
|
|
45
|
+
SecretReference,
|
|
45
46
|
SkillDefinition,
|
|
46
47
|
SkillMdDefinition,
|
|
47
48
|
UpdatedAuthorizerConfiguration,
|
|
48
49
|
WorkloadIdentityDetails,
|
|
49
50
|
} from "./models_0";
|
|
51
|
+
export interface IndexedKey {
|
|
52
|
+
key: string | undefined;
|
|
53
|
+
type: MetadataValueType | undefined;
|
|
54
|
+
}
|
|
50
55
|
export interface EpisodicOverrideConsolidationConfigurationInput {
|
|
51
56
|
appendToPrompt: string | undefined;
|
|
52
57
|
modelId: string | undefined;
|
|
@@ -1019,7 +1024,9 @@ export interface UpdateMemoryOutput {
|
|
|
1019
1024
|
}
|
|
1020
1025
|
export interface AtlassianOauth2ProviderConfigInput {
|
|
1021
1026
|
clientId: string | undefined;
|
|
1022
|
-
clientSecret
|
|
1027
|
+
clientSecret?: string | undefined;
|
|
1028
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1029
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1023
1030
|
}
|
|
1024
1031
|
export interface Oauth2AuthorizationServerMetadata {
|
|
1025
1032
|
issuer: string | undefined;
|
|
@@ -1068,42 +1075,58 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
1068
1075
|
oauthDiscovery: Oauth2Discovery | undefined;
|
|
1069
1076
|
clientId?: string | undefined;
|
|
1070
1077
|
clientSecret?: string | undefined;
|
|
1071
|
-
|
|
1072
|
-
|
|
1078
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1079
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1073
1080
|
onBehalfOfTokenExchangeConfig?: OnBehalfOfTokenExchangeConfigType | undefined;
|
|
1074
1081
|
clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
|
|
1082
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
1083
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
1075
1084
|
}
|
|
1076
1085
|
export interface GithubOauth2ProviderConfigInput {
|
|
1077
1086
|
clientId: string | undefined;
|
|
1078
|
-
clientSecret
|
|
1087
|
+
clientSecret?: string | undefined;
|
|
1088
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1089
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1079
1090
|
}
|
|
1080
1091
|
export interface GoogleOauth2ProviderConfigInput {
|
|
1081
1092
|
clientId: string | undefined;
|
|
1082
|
-
clientSecret
|
|
1093
|
+
clientSecret?: string | undefined;
|
|
1094
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1095
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1083
1096
|
}
|
|
1084
1097
|
export interface IncludedOauth2ProviderConfigInput {
|
|
1085
1098
|
clientId: string | undefined;
|
|
1086
|
-
clientSecret
|
|
1099
|
+
clientSecret?: string | undefined;
|
|
1100
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1101
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1087
1102
|
issuer?: string | undefined;
|
|
1088
1103
|
authorizationEndpoint?: string | undefined;
|
|
1089
1104
|
tokenEndpoint?: string | undefined;
|
|
1090
1105
|
}
|
|
1091
1106
|
export interface LinkedinOauth2ProviderConfigInput {
|
|
1092
1107
|
clientId: string | undefined;
|
|
1093
|
-
clientSecret
|
|
1108
|
+
clientSecret?: string | undefined;
|
|
1109
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1110
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1094
1111
|
}
|
|
1095
1112
|
export interface MicrosoftOauth2ProviderConfigInput {
|
|
1096
1113
|
clientId: string | undefined;
|
|
1097
|
-
clientSecret
|
|
1114
|
+
clientSecret?: string | undefined;
|
|
1115
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1116
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1098
1117
|
tenantId?: string | undefined;
|
|
1099
1118
|
}
|
|
1100
1119
|
export interface SalesforceOauth2ProviderConfigInput {
|
|
1101
1120
|
clientId: string | undefined;
|
|
1102
|
-
clientSecret
|
|
1121
|
+
clientSecret?: string | undefined;
|
|
1122
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1123
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1103
1124
|
}
|
|
1104
1125
|
export interface SlackOauth2ProviderConfigInput {
|
|
1105
1126
|
clientId: string | undefined;
|
|
1106
|
-
clientSecret
|
|
1127
|
+
clientSecret?: string | undefined;
|
|
1128
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
1129
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1107
1130
|
}
|
|
1108
1131
|
export type Oauth2ProviderConfigInput =
|
|
1109
1132
|
| Oauth2ProviderConfigInput.AtlassianOauth2ProviderConfigMember
|
|
@@ -1463,6 +1486,8 @@ export declare namespace Oauth2ProviderConfigOutput {
|
|
|
1463
1486
|
}
|
|
1464
1487
|
export interface CreateOauth2CredentialProviderResponse {
|
|
1465
1488
|
clientSecretArn: Secret | undefined;
|
|
1489
|
+
clientSecretJsonKey?: string | undefined;
|
|
1490
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1466
1491
|
name: string | undefined;
|
|
1467
1492
|
credentialProviderArn: string | undefined;
|
|
1468
1493
|
callbackUrl?: string | undefined;
|
|
@@ -1478,6 +1503,8 @@ export interface GetOauth2CredentialProviderRequest {
|
|
|
1478
1503
|
}
|
|
1479
1504
|
export interface GetOauth2CredentialProviderResponse {
|
|
1480
1505
|
clientSecretArn: Secret | undefined;
|
|
1506
|
+
clientSecretJsonKey?: string | undefined;
|
|
1507
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1481
1508
|
name: string | undefined;
|
|
1482
1509
|
credentialProviderArn: string | undefined;
|
|
1483
1510
|
credentialProviderVendor: CredentialProviderVendorType | undefined;
|
|
@@ -1510,6 +1537,8 @@ export interface UpdateOauth2CredentialProviderRequest {
|
|
|
1510
1537
|
}
|
|
1511
1538
|
export interface UpdateOauth2CredentialProviderResponse {
|
|
1512
1539
|
clientSecretArn: Secret | undefined;
|
|
1540
|
+
clientSecretJsonKey?: string | undefined;
|
|
1541
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
1513
1542
|
name: string | undefined;
|
|
1514
1543
|
credentialProviderVendor: CredentialProviderVendorType | undefined;
|
|
1515
1544
|
credentialProviderArn: string | undefined;
|
|
@@ -1702,13 +1731,21 @@ export interface UpdateOnlineEvaluationConfigResponse {
|
|
|
1702
1731
|
}
|
|
1703
1732
|
export interface CoinbaseCdpConfigurationInput {
|
|
1704
1733
|
apiKeyId: string | undefined;
|
|
1705
|
-
apiKeySecret
|
|
1706
|
-
|
|
1734
|
+
apiKeySecret?: string | undefined;
|
|
1735
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
1736
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
1737
|
+
walletSecret?: string | undefined;
|
|
1738
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
1739
|
+
walletSecretConfig?: SecretReference | undefined;
|
|
1707
1740
|
}
|
|
1708
1741
|
export interface StripePrivyConfigurationInput {
|
|
1709
1742
|
appId: string | undefined;
|
|
1710
|
-
appSecret
|
|
1711
|
-
|
|
1743
|
+
appSecret?: string | undefined;
|
|
1744
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
1745
|
+
appSecretConfig?: SecretReference | undefined;
|
|
1746
|
+
authorizationPrivateKey?: string | undefined;
|
|
1747
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
1748
|
+
authorizationPrivateKeyConfig?: SecretReference | undefined;
|
|
1712
1749
|
authorizationId: string | undefined;
|
|
1713
1750
|
}
|
|
1714
1751
|
export type PaymentProviderConfigurationInput =
|
|
@@ -1746,12 +1783,20 @@ export interface CreatePaymentCredentialProviderRequest {
|
|
|
1746
1783
|
export interface CoinbaseCdpConfigurationOutput {
|
|
1747
1784
|
apiKeyId: string | undefined;
|
|
1748
1785
|
apiKeySecretArn: Secret | undefined;
|
|
1786
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
1787
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
1749
1788
|
walletSecretArn: Secret | undefined;
|
|
1789
|
+
walletSecretJsonKey?: string | undefined;
|
|
1790
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
1750
1791
|
}
|
|
1751
1792
|
export interface StripePrivyConfigurationOutput {
|
|
1752
1793
|
appId: string | undefined;
|
|
1753
1794
|
appSecretArn: Secret | undefined;
|
|
1795
|
+
appSecretJsonKey?: string | undefined;
|
|
1796
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
1754
1797
|
authorizationPrivateKeyArn: Secret | undefined;
|
|
1798
|
+
authorizationPrivateKeyJsonKey?: string | undefined;
|
|
1799
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
1755
1800
|
authorizationId: string | undefined;
|
|
1756
1801
|
}
|
|
1757
1802
|
export type PaymentProviderConfigurationOutput =
|
|
@@ -2791,6 +2836,3 @@ export interface CreateWorkloadIdentityResponse {
|
|
|
2791
2836
|
workloadIdentityArn: string | undefined;
|
|
2792
2837
|
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
2793
2838
|
}
|
|
2794
|
-
export interface DeleteWorkloadIdentityRequest {
|
|
2795
|
-
name: string | undefined;
|
|
2796
|
-
}
|
|
@@ -11,6 +11,9 @@ import {
|
|
|
11
11
|
PrivateEndpoint,
|
|
12
12
|
S3Configuration,
|
|
13
13
|
} from "./models_0";
|
|
14
|
+
export interface DeleteWorkloadIdentityRequest {
|
|
15
|
+
name: string | undefined;
|
|
16
|
+
}
|
|
14
17
|
export interface DeleteWorkloadIdentityResponse {}
|
|
15
18
|
export interface GetWorkloadIdentityRequest {
|
|
16
19
|
name: string | undefined;
|
|
@@ -436,6 +436,7 @@ export declare var SalesforceOauth2ProviderConfigOutput$: StaticStructureSchema;
|
|
|
436
436
|
export declare var SamplingConfig$: StaticStructureSchema;
|
|
437
437
|
export declare var SchemaDefinition$: StaticStructureSchema;
|
|
438
438
|
export declare var Secret$: StaticStructureSchema;
|
|
439
|
+
export declare var SecretReference$: StaticStructureSchema;
|
|
439
440
|
export declare var SecretsManagerLocation$: StaticStructureSchema;
|
|
440
441
|
export declare var SelfManagedConfiguration$: StaticStructureSchema;
|
|
441
442
|
export declare var SelfManagedConfigurationInput$: 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.1057.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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
24
|
"@aws-sdk/core": "^3.974.15",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.47",
|
|
26
26
|
"@aws-sdk/types": "^3.973.9",
|
|
27
27
|
"@smithy/core": "^3.24.5",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.5",
|