@aws-sdk/client-bedrock-agentcore-control 3.1055.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 +16 -0
- package/dist-cjs/schemas/schemas_0.js +135 -80
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +124 -69
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/CreateHarnessCommand.d.ts +48 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/commands/DeleteHarnessCommand.d.ts +24 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetHarnessCommand.d.ts +24 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +1 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/UpdateHarnessCommand.d.ts +48 -0
- 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 +52 -0
- package/dist-types/models/models_0.d.ts +228 -86
- package/dist-types/models/models_1.d.ts +298 -88
- package/dist-types/models/models_2.d.ts +70 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -23
- package/dist-types/ts3.4/models/models_1.d.ts +76 -37
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +6 -6
|
@@ -59,6 +59,21 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
59
59
|
* },
|
|
60
60
|
* clientId: "STRING_VALUE",
|
|
61
61
|
* clientSecret: "STRING_VALUE",
|
|
62
|
+
* clientSecretConfig: { // SecretReference
|
|
63
|
+
* secretId: "STRING_VALUE", // required
|
|
64
|
+
* jsonKey: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
67
|
+
* onBehalfOfTokenExchangeConfig: { // OnBehalfOfTokenExchangeConfigType
|
|
68
|
+
* grantType: "TOKEN_EXCHANGE" || "JWT_AUTHORIZATION_GRANT", // required
|
|
69
|
+
* tokenExchangeGrantTypeConfig: { // TokenExchangeGrantTypeConfigType
|
|
70
|
+
* actorTokenContent: "NONE" || "M2M" || "AWS_IAM_ID_TOKEN_JWT", // required
|
|
71
|
+
* actorTokenScopes: [ // ScopesListType
|
|
72
|
+
* "STRING_VALUE",
|
|
73
|
+
* ],
|
|
74
|
+
* },
|
|
75
|
+
* },
|
|
76
|
+
* clientAuthenticationMethod: "CLIENT_SECRET_BASIC" || "CLIENT_SECRET_POST" || "AWS_IAM_ID_TOKEN_JWT",
|
|
62
77
|
* privateEndpoint: { // PrivateEndpoint Union: only one key present
|
|
63
78
|
* selfManagedLatticeResource: { // SelfManagedLatticeResource Union: only one key present
|
|
64
79
|
* resourceConfigurationIdentifier: "STRING_VALUE",
|
|
@@ -102,49 +117,67 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
102
117
|
* },
|
|
103
118
|
* },
|
|
104
119
|
* ],
|
|
105
|
-
* onBehalfOfTokenExchangeConfig: { // OnBehalfOfTokenExchangeConfigType
|
|
106
|
-
* grantType: "TOKEN_EXCHANGE" || "JWT_AUTHORIZATION_GRANT", // required
|
|
107
|
-
* tokenExchangeGrantTypeConfig: { // TokenExchangeGrantTypeConfigType
|
|
108
|
-
* actorTokenContent: "NONE" || "M2M" || "AWS_IAM_ID_TOKEN_JWT", // required
|
|
109
|
-
* actorTokenScopes: [ // ScopesListType
|
|
110
|
-
* "STRING_VALUE",
|
|
111
|
-
* ],
|
|
112
|
-
* },
|
|
113
|
-
* },
|
|
114
|
-
* clientAuthenticationMethod: "CLIENT_SECRET_BASIC" || "CLIENT_SECRET_POST" || "AWS_IAM_ID_TOKEN_JWT",
|
|
115
120
|
* },
|
|
116
121
|
* googleOauth2ProviderConfig: { // GoogleOauth2ProviderConfigInput
|
|
117
122
|
* clientId: "STRING_VALUE", // required
|
|
118
|
-
* clientSecret: "STRING_VALUE",
|
|
123
|
+
* clientSecret: "STRING_VALUE",
|
|
124
|
+
* clientSecretConfig: {
|
|
125
|
+
* secretId: "STRING_VALUE", // required
|
|
126
|
+
* jsonKey: "STRING_VALUE", // required
|
|
127
|
+
* },
|
|
128
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
119
129
|
* },
|
|
120
130
|
* githubOauth2ProviderConfig: { // GithubOauth2ProviderConfigInput
|
|
121
131
|
* clientId: "STRING_VALUE", // required
|
|
122
|
-
* clientSecret: "STRING_VALUE",
|
|
132
|
+
* clientSecret: "STRING_VALUE",
|
|
133
|
+
* clientSecretConfig: {
|
|
134
|
+
* secretId: "STRING_VALUE", // required
|
|
135
|
+
* jsonKey: "STRING_VALUE", // required
|
|
136
|
+
* },
|
|
137
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
123
138
|
* },
|
|
124
139
|
* slackOauth2ProviderConfig: { // SlackOauth2ProviderConfigInput
|
|
125
140
|
* clientId: "STRING_VALUE", // required
|
|
126
|
-
* clientSecret: "STRING_VALUE",
|
|
141
|
+
* clientSecret: "STRING_VALUE",
|
|
142
|
+
* clientSecretConfig: {
|
|
143
|
+
* secretId: "STRING_VALUE", // required
|
|
144
|
+
* jsonKey: "STRING_VALUE", // required
|
|
145
|
+
* },
|
|
146
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
127
147
|
* },
|
|
128
148
|
* salesforceOauth2ProviderConfig: { // SalesforceOauth2ProviderConfigInput
|
|
129
149
|
* clientId: "STRING_VALUE", // required
|
|
130
|
-
* clientSecret: "STRING_VALUE",
|
|
150
|
+
* clientSecret: "STRING_VALUE",
|
|
151
|
+
* clientSecretConfig: {
|
|
152
|
+
* secretId: "STRING_VALUE", // required
|
|
153
|
+
* jsonKey: "STRING_VALUE", // required
|
|
154
|
+
* },
|
|
155
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
131
156
|
* },
|
|
132
157
|
* microsoftOauth2ProviderConfig: { // MicrosoftOauth2ProviderConfigInput
|
|
133
158
|
* clientId: "STRING_VALUE", // required
|
|
134
|
-
* clientSecret: "STRING_VALUE",
|
|
159
|
+
* clientSecret: "STRING_VALUE",
|
|
160
|
+
* clientSecretConfig: "<SecretReference>",
|
|
161
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
135
162
|
* tenantId: "STRING_VALUE",
|
|
136
163
|
* },
|
|
137
164
|
* atlassianOauth2ProviderConfig: { // AtlassianOauth2ProviderConfigInput
|
|
138
165
|
* clientId: "STRING_VALUE", // required
|
|
139
|
-
* clientSecret: "STRING_VALUE",
|
|
166
|
+
* clientSecret: "STRING_VALUE",
|
|
167
|
+
* clientSecretConfig: "<SecretReference>",
|
|
168
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
140
169
|
* },
|
|
141
170
|
* linkedinOauth2ProviderConfig: { // LinkedinOauth2ProviderConfigInput
|
|
142
171
|
* clientId: "STRING_VALUE", // required
|
|
143
|
-
* clientSecret: "STRING_VALUE",
|
|
172
|
+
* clientSecret: "STRING_VALUE",
|
|
173
|
+
* clientSecretConfig: "<SecretReference>",
|
|
174
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
144
175
|
* },
|
|
145
176
|
* includedOauth2ProviderConfig: { // IncludedOauth2ProviderConfigInput
|
|
146
177
|
* clientId: "STRING_VALUE", // required
|
|
147
|
-
* clientSecret: "STRING_VALUE",
|
|
178
|
+
* clientSecret: "STRING_VALUE",
|
|
179
|
+
* clientSecretConfig: "<SecretReference>",
|
|
180
|
+
* clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
148
181
|
* issuer: "STRING_VALUE",
|
|
149
182
|
* authorizationEndpoint: "STRING_VALUE",
|
|
150
183
|
* tokenEndpoint: "STRING_VALUE",
|
|
@@ -157,6 +190,8 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
157
190
|
* // clientSecretArn: { // Secret
|
|
158
191
|
* // secretArn: "STRING_VALUE", // required
|
|
159
192
|
* // },
|
|
193
|
+
* // clientSecretJsonKey: "STRING_VALUE",
|
|
194
|
+
* // clientSecretSource: "MANAGED" || "EXTERNAL",
|
|
160
195
|
* // name: "STRING_VALUE", // required
|
|
161
196
|
* // credentialProviderVendor: "GoogleOauth2" || "GithubOauth2" || "SlackOauth2" || "SalesforceOauth2" || "MicrosoftOauth2" || "CustomOauth2" || "AtlassianOauth2" || "LinkedinOauth2" || "XOauth2" || "OktaOauth2" || "OneLoginOauth2" || "PingOneOauth2" || "FacebookOauth2" || "YandexOauth2" || "RedditOauth2" || "ZoomOauth2" || "TwitchOauth2" || "SpotifyOauth2" || "DropboxOauth2" || "NotionOauth2" || "HubspotOauth2" || "CyberArkOauth2" || "FusionAuthOauth2" || "Auth0Oauth2" || "CognitoOauth2", // required
|
|
162
197
|
* // credentialProviderArn: "STRING_VALUE", // required
|
|
@@ -44,13 +44,33 @@ declare const UpdatePaymentCredentialProviderCommand_base: {
|
|
|
44
44
|
* providerConfigurationInput: { // PaymentProviderConfigurationInput Union: only one key present
|
|
45
45
|
* coinbaseCdpConfiguration: { // CoinbaseCdpConfigurationInput
|
|
46
46
|
* apiKeyId: "STRING_VALUE", // required
|
|
47
|
-
* apiKeySecret: "STRING_VALUE",
|
|
48
|
-
*
|
|
47
|
+
* apiKeySecret: "STRING_VALUE",
|
|
48
|
+
* apiKeySecretSource: "MANAGED" || "EXTERNAL",
|
|
49
|
+
* apiKeySecretConfig: { // SecretReference
|
|
50
|
+
* secretId: "STRING_VALUE", // required
|
|
51
|
+
* jsonKey: "STRING_VALUE", // required
|
|
52
|
+
* },
|
|
53
|
+
* walletSecret: "STRING_VALUE",
|
|
54
|
+
* walletSecretSource: "MANAGED" || "EXTERNAL",
|
|
55
|
+
* walletSecretConfig: {
|
|
56
|
+
* secretId: "STRING_VALUE", // required
|
|
57
|
+
* jsonKey: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
49
59
|
* },
|
|
50
60
|
* stripePrivyConfiguration: { // StripePrivyConfigurationInput
|
|
51
61
|
* appId: "STRING_VALUE", // required
|
|
52
|
-
* appSecret: "STRING_VALUE",
|
|
53
|
-
*
|
|
62
|
+
* appSecret: "STRING_VALUE",
|
|
63
|
+
* appSecretSource: "MANAGED" || "EXTERNAL",
|
|
64
|
+
* appSecretConfig: {
|
|
65
|
+
* secretId: "STRING_VALUE", // required
|
|
66
|
+
* jsonKey: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* authorizationPrivateKey: "STRING_VALUE",
|
|
69
|
+
* authorizationPrivateKeySource: "MANAGED" || "EXTERNAL",
|
|
70
|
+
* authorizationPrivateKeyConfig: {
|
|
71
|
+
* secretId: "STRING_VALUE", // required
|
|
72
|
+
* jsonKey: "STRING_VALUE", // required
|
|
73
|
+
* },
|
|
54
74
|
* authorizationId: "STRING_VALUE", // required
|
|
55
75
|
* },
|
|
56
76
|
* },
|
|
@@ -67,18 +87,26 @@ declare const UpdatePaymentCredentialProviderCommand_base: {
|
|
|
67
87
|
* // apiKeySecretArn: { // Secret
|
|
68
88
|
* // secretArn: "STRING_VALUE", // required
|
|
69
89
|
* // },
|
|
90
|
+
* // apiKeySecretJsonKey: "STRING_VALUE",
|
|
91
|
+
* // apiKeySecretSource: "MANAGED" || "EXTERNAL",
|
|
70
92
|
* // walletSecretArn: {
|
|
71
93
|
* // secretArn: "STRING_VALUE", // required
|
|
72
94
|
* // },
|
|
95
|
+
* // walletSecretJsonKey: "STRING_VALUE",
|
|
96
|
+
* // walletSecretSource: "MANAGED" || "EXTERNAL",
|
|
73
97
|
* // },
|
|
74
98
|
* // stripePrivyConfiguration: { // StripePrivyConfigurationOutput
|
|
75
99
|
* // appId: "STRING_VALUE", // required
|
|
76
100
|
* // appSecretArn: {
|
|
77
101
|
* // secretArn: "STRING_VALUE", // required
|
|
78
102
|
* // },
|
|
103
|
+
* // appSecretJsonKey: "STRING_VALUE",
|
|
104
|
+
* // appSecretSource: "MANAGED" || "EXTERNAL",
|
|
79
105
|
* // authorizationPrivateKeyArn: {
|
|
80
106
|
* // secretArn: "STRING_VALUE", // required
|
|
81
107
|
* // },
|
|
108
|
+
* // authorizationPrivateKeyJsonKey: "STRING_VALUE",
|
|
109
|
+
* // authorizationPrivateKeySource: "MANAGED" || "EXTERNAL",
|
|
82
110
|
* // authorizationId: "STRING_VALUE", // required
|
|
83
111
|
* // },
|
|
84
112
|
* // },
|
|
@@ -184,6 +184,18 @@ export declare const AgentRuntimeStatus: {
|
|
|
184
184
|
* @public
|
|
185
185
|
*/
|
|
186
186
|
export type AgentRuntimeStatus = (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const SecretSourceType: {
|
|
192
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
193
|
+
readonly MANAGED: "MANAGED";
|
|
194
|
+
};
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
export type SecretSourceType = (typeof SecretSourceType)[keyof typeof SecretSourceType];
|
|
187
199
|
/**
|
|
188
200
|
* @public
|
|
189
201
|
* @enum
|
|
@@ -634,6 +646,46 @@ export declare const KeyType: {
|
|
|
634
646
|
* @public
|
|
635
647
|
*/
|
|
636
648
|
export type KeyType = (typeof KeyType)[keyof typeof KeyType];
|
|
649
|
+
/**
|
|
650
|
+
* @public
|
|
651
|
+
* @enum
|
|
652
|
+
*/
|
|
653
|
+
export declare const HarnessBedrockApiFormat: {
|
|
654
|
+
/**
|
|
655
|
+
* <p>Use the Chat Completions API format.</p>
|
|
656
|
+
*/
|
|
657
|
+
readonly CHAT_COMPLETIONS: "chat_completions";
|
|
658
|
+
/**
|
|
659
|
+
* <p>Use the Bedrock Converse Stream API format.</p>
|
|
660
|
+
*/
|
|
661
|
+
readonly CONVERSE_STREAM: "converse_stream";
|
|
662
|
+
/**
|
|
663
|
+
* <p>Use the Responses API format.</p>
|
|
664
|
+
*/
|
|
665
|
+
readonly RESPONSES: "responses";
|
|
666
|
+
};
|
|
667
|
+
/**
|
|
668
|
+
* @public
|
|
669
|
+
*/
|
|
670
|
+
export type HarnessBedrockApiFormat = (typeof HarnessBedrockApiFormat)[keyof typeof HarnessBedrockApiFormat];
|
|
671
|
+
/**
|
|
672
|
+
* @public
|
|
673
|
+
* @enum
|
|
674
|
+
*/
|
|
675
|
+
export declare const HarnessOpenAiApiFormat: {
|
|
676
|
+
/**
|
|
677
|
+
* <p>Use the Chat Completions API format.</p>
|
|
678
|
+
*/
|
|
679
|
+
readonly CHAT_COMPLETIONS: "chat_completions";
|
|
680
|
+
/**
|
|
681
|
+
* <p>Use the Responses API format.</p>
|
|
682
|
+
*/
|
|
683
|
+
readonly RESPONSES: "responses";
|
|
684
|
+
};
|
|
685
|
+
/**
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
688
|
+
export type HarnessOpenAiApiFormat = (typeof HarnessOpenAiApiFormat)[keyof typeof HarnessOpenAiApiFormat];
|
|
637
689
|
/**
|
|
638
690
|
* @public
|
|
639
691
|
* @enum
|