@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.
Files changed (35) hide show
  1. package/dist-cjs/index.js +16 -0
  2. package/dist-cjs/schemas/schemas_0.js +135 -80
  3. package/dist-es/models/enums.js +13 -0
  4. package/dist-es/schemas/schemas_0.js +124 -69
  5. package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
  6. package/dist-types/commands/CreateHarnessCommand.d.ts +48 -0
  7. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
  8. package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
  9. package/dist-types/commands/DeleteHarnessCommand.d.ts +24 -0
  10. package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
  11. package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
  12. package/dist-types/commands/GetHarnessCommand.d.ts +24 -0
  13. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
  14. package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
  15. package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
  16. package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +1 -0
  17. package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -2
  18. package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
  19. package/dist-types/commands/UpdateHarnessCommand.d.ts +48 -0
  20. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
  21. package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
  22. package/dist-types/models/enums.d.ts +52 -0
  23. package/dist-types/models/models_0.d.ts +228 -86
  24. package/dist-types/models/models_1.d.ts +298 -88
  25. package/dist-types/models/models_2.d.ts +70 -0
  26. package/dist-types/schemas/schemas_0.d.ts +5 -0
  27. package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +4 -2
  30. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +78 -23
  32. package/dist-types/ts3.4/models/models_1.d.ts +76 -37
  33. package/dist-types/ts3.4/models/models_2.d.ts +18 -0
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
  35. package/package.json +6 -6
@@ -163,6 +163,8 @@ declare const CreateHarnessCommand_base: {
163
163
  * maxTokens: Number("int"),
164
164
  * temperature: Number("float"),
165
165
  * topP: Number("float"),
166
+ * apiFormat: "converse_stream" || "responses" || "chat_completions",
167
+ * additionalParams: "DOCUMENT_VALUE",
166
168
  * },
167
169
  * openAiModelConfig: { // HarnessOpenAiModelConfig
168
170
  * modelId: "STRING_VALUE", // required
@@ -170,6 +172,8 @@ declare const CreateHarnessCommand_base: {
170
172
  * maxTokens: Number("int"),
171
173
  * temperature: Number("float"),
172
174
  * topP: Number("float"),
175
+ * apiFormat: "chat_completions" || "responses",
176
+ * additionalParams: "DOCUMENT_VALUE",
173
177
  * },
174
178
  * geminiModelConfig: { // HarnessGeminiModelConfig
175
179
  * modelId: "STRING_VALUE", // required
@@ -179,6 +183,15 @@ declare const CreateHarnessCommand_base: {
179
183
  * topP: Number("float"),
180
184
  * topK: Number("int"),
181
185
  * },
186
+ * liteLlmModelConfig: { // HarnessLiteLlmModelConfig
187
+ * modelId: "STRING_VALUE", // required
188
+ * apiKeyArn: "STRING_VALUE",
189
+ * apiBase: "STRING_VALUE",
190
+ * maxTokens: Number("int"),
191
+ * temperature: Number("float"),
192
+ * topP: Number("float"),
193
+ * additionalParams: "DOCUMENT_VALUE",
194
+ * },
182
195
  * },
183
196
  * systemPrompt: [ // HarnessSystemPrompt
184
197
  * { // HarnessSystemContentBlock Union: only one key present
@@ -230,6 +243,17 @@ declare const CreateHarnessCommand_base: {
230
243
  * skills: [ // HarnessSkills
231
244
  * { // HarnessSkill Union: only one key present
232
245
  * path: "STRING_VALUE",
246
+ * s3: { // HarnessSkillS3Source
247
+ * uri: "STRING_VALUE", // required
248
+ * },
249
+ * git: { // HarnessSkillGitSource
250
+ * url: "STRING_VALUE", // required
251
+ * path: "STRING_VALUE",
252
+ * auth: { // HarnessSkillGitAuth
253
+ * credentialArn: "STRING_VALUE", // required
254
+ * username: "STRING_VALUE",
255
+ * },
256
+ * },
233
257
  * },
234
258
  * ],
235
259
  * allowedTools: [ // HarnessAllowedTools
@@ -284,6 +308,8 @@ declare const CreateHarnessCommand_base: {
284
308
  * // maxTokens: Number("int"),
285
309
  * // temperature: Number("float"),
286
310
  * // topP: Number("float"),
311
+ * // apiFormat: "converse_stream" || "responses" || "chat_completions",
312
+ * // additionalParams: "DOCUMENT_VALUE",
287
313
  * // },
288
314
  * // openAiModelConfig: { // HarnessOpenAiModelConfig
289
315
  * // modelId: "STRING_VALUE", // required
@@ -291,6 +317,8 @@ declare const CreateHarnessCommand_base: {
291
317
  * // maxTokens: Number("int"),
292
318
  * // temperature: Number("float"),
293
319
  * // topP: Number("float"),
320
+ * // apiFormat: "chat_completions" || "responses",
321
+ * // additionalParams: "DOCUMENT_VALUE",
294
322
  * // },
295
323
  * // geminiModelConfig: { // HarnessGeminiModelConfig
296
324
  * // modelId: "STRING_VALUE", // required
@@ -300,6 +328,15 @@ declare const CreateHarnessCommand_base: {
300
328
  * // topP: Number("float"),
301
329
  * // topK: Number("int"),
302
330
  * // },
331
+ * // liteLlmModelConfig: { // HarnessLiteLlmModelConfig
332
+ * // modelId: "STRING_VALUE", // required
333
+ * // apiKeyArn: "STRING_VALUE",
334
+ * // apiBase: "STRING_VALUE",
335
+ * // maxTokens: Number("int"),
336
+ * // temperature: Number("float"),
337
+ * // topP: Number("float"),
338
+ * // additionalParams: "DOCUMENT_VALUE",
339
+ * // },
303
340
  * // },
304
341
  * // systemPrompt: [ // HarnessSystemPrompt // required
305
342
  * // { // HarnessSystemContentBlock Union: only one key present
@@ -351,6 +388,17 @@ declare const CreateHarnessCommand_base: {
351
388
  * // skills: [ // HarnessSkills // required
352
389
  * // { // HarnessSkill Union: only one key present
353
390
  * // path: "STRING_VALUE",
391
+ * // s3: { // HarnessSkillS3Source
392
+ * // uri: "STRING_VALUE", // required
393
+ * // },
394
+ * // git: { // HarnessSkillGitSource
395
+ * // url: "STRING_VALUE", // required
396
+ * // path: "STRING_VALUE",
397
+ * // auth: { // HarnessSkillGitAuth
398
+ * // credentialArn: "STRING_VALUE", // required
399
+ * // username: "STRING_VALUE",
400
+ * // },
401
+ * // },
354
402
  * // },
355
403
  * // ],
356
404
  * // allowedTools: [ // HarnessAllowedTools // required
@@ -59,6 +59,21 @@ declare const CreateOauth2CredentialProviderCommand_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 CreateOauth2CredentialProviderCommand_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", // required
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", // required
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", // required
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", // required
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", // required
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", // required
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", // required
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", // required
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",
@@ -158,6 +191,8 @@ declare const CreateOauth2CredentialProviderCommand_base: {
158
191
  * // clientSecretArn: { // Secret
159
192
  * // secretArn: "STRING_VALUE", // required
160
193
  * // },
194
+ * // clientSecretJsonKey: "STRING_VALUE",
195
+ * // clientSecretSource: "MANAGED" || "EXTERNAL",
161
196
  * // name: "STRING_VALUE", // required
162
197
  * // credentialProviderArn: "STRING_VALUE", // required
163
198
  * // callbackUrl: "STRING_VALUE",
@@ -44,13 +44,33 @@ declare const CreatePaymentCredentialProviderCommand_base: {
44
44
  * providerConfigurationInput: { // PaymentProviderConfigurationInput Union: only one key present
45
45
  * coinbaseCdpConfiguration: { // CoinbaseCdpConfigurationInput
46
46
  * apiKeyId: "STRING_VALUE", // required
47
- * apiKeySecret: "STRING_VALUE", // required
48
- * walletSecret: "STRING_VALUE", // required
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", // required
53
- * authorizationPrivateKey: "STRING_VALUE", // required
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
  * },
@@ -70,18 +90,26 @@ declare const CreatePaymentCredentialProviderCommand_base: {
70
90
  * // apiKeySecretArn: { // Secret
71
91
  * // secretArn: "STRING_VALUE", // required
72
92
  * // },
93
+ * // apiKeySecretJsonKey: "STRING_VALUE",
94
+ * // apiKeySecretSource: "MANAGED" || "EXTERNAL",
73
95
  * // walletSecretArn: {
74
96
  * // secretArn: "STRING_VALUE", // required
75
97
  * // },
98
+ * // walletSecretJsonKey: "STRING_VALUE",
99
+ * // walletSecretSource: "MANAGED" || "EXTERNAL",
76
100
  * // },
77
101
  * // stripePrivyConfiguration: { // StripePrivyConfigurationOutput
78
102
  * // appId: "STRING_VALUE", // required
79
103
  * // appSecretArn: {
80
104
  * // secretArn: "STRING_VALUE", // required
81
105
  * // },
106
+ * // appSecretJsonKey: "STRING_VALUE",
107
+ * // appSecretSource: "MANAGED" || "EXTERNAL",
82
108
  * // authorizationPrivateKeyArn: {
83
109
  * // secretArn: "STRING_VALUE", // required
84
110
  * // },
111
+ * // authorizationPrivateKeyJsonKey: "STRING_VALUE",
112
+ * // authorizationPrivateKeySource: "MANAGED" || "EXTERNAL",
85
113
  * // authorizationId: "STRING_VALUE", // required
86
114
  * // },
87
115
  * // },
@@ -59,6 +59,8 @@ declare const DeleteHarnessCommand_base: {
59
59
  * // maxTokens: Number("int"),
60
60
  * // temperature: Number("float"),
61
61
  * // topP: Number("float"),
62
+ * // apiFormat: "converse_stream" || "responses" || "chat_completions",
63
+ * // additionalParams: "DOCUMENT_VALUE",
62
64
  * // },
63
65
  * // openAiModelConfig: { // HarnessOpenAiModelConfig
64
66
  * // modelId: "STRING_VALUE", // required
@@ -66,6 +68,8 @@ declare const DeleteHarnessCommand_base: {
66
68
  * // maxTokens: Number("int"),
67
69
  * // temperature: Number("float"),
68
70
  * // topP: Number("float"),
71
+ * // apiFormat: "chat_completions" || "responses",
72
+ * // additionalParams: "DOCUMENT_VALUE",
69
73
  * // },
70
74
  * // geminiModelConfig: { // HarnessGeminiModelConfig
71
75
  * // modelId: "STRING_VALUE", // required
@@ -75,6 +79,15 @@ declare const DeleteHarnessCommand_base: {
75
79
  * // topP: Number("float"),
76
80
  * // topK: Number("int"),
77
81
  * // },
82
+ * // liteLlmModelConfig: { // HarnessLiteLlmModelConfig
83
+ * // modelId: "STRING_VALUE", // required
84
+ * // apiKeyArn: "STRING_VALUE",
85
+ * // apiBase: "STRING_VALUE",
86
+ * // maxTokens: Number("int"),
87
+ * // temperature: Number("float"),
88
+ * // topP: Number("float"),
89
+ * // additionalParams: "DOCUMENT_VALUE",
90
+ * // },
78
91
  * // },
79
92
  * // systemPrompt: [ // HarnessSystemPrompt // required
80
93
  * // { // HarnessSystemContentBlock Union: only one key present
@@ -126,6 +139,17 @@ declare const DeleteHarnessCommand_base: {
126
139
  * // skills: [ // HarnessSkills // required
127
140
  * // { // HarnessSkill Union: only one key present
128
141
  * // path: "STRING_VALUE",
142
+ * // s3: { // HarnessSkillS3Source
143
+ * // uri: "STRING_VALUE", // required
144
+ * // },
145
+ * // git: { // HarnessSkillGitSource
146
+ * // url: "STRING_VALUE", // required
147
+ * // path: "STRING_VALUE",
148
+ * // auth: { // HarnessSkillGitAuth
149
+ * // credentialArn: "STRING_VALUE", // required
150
+ * // username: "STRING_VALUE",
151
+ * // },
152
+ * // },
129
153
  * // },
130
154
  * // ],
131
155
  * // allowedTools: [ // HarnessAllowedTools // required
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
- import type { DeleteWorkloadIdentityRequest, DeleteWorkloadIdentityResponse } from "../models/models_1";
4
+ import type { DeleteWorkloadIdentityRequest, DeleteWorkloadIdentityResponse } from "../models/models_2";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -47,6 +47,8 @@ declare const GetApiKeyCredentialProviderCommand_base: {
47
47
  * // apiKeySecretArn: { // Secret
48
48
  * // secretArn: "STRING_VALUE", // required
49
49
  * // },
50
+ * // apiKeySecretJsonKey: "STRING_VALUE",
51
+ * // apiKeySecretSource: "MANAGED" || "EXTERNAL",
50
52
  * // name: "STRING_VALUE", // required
51
53
  * // credentialProviderArn: "STRING_VALUE", // required
52
54
  * // createdTime: new Date("TIMESTAMP"), // required
@@ -58,6 +58,8 @@ declare const GetHarnessCommand_base: {
58
58
  * // maxTokens: Number("int"),
59
59
  * // temperature: Number("float"),
60
60
  * // topP: Number("float"),
61
+ * // apiFormat: "converse_stream" || "responses" || "chat_completions",
62
+ * // additionalParams: "DOCUMENT_VALUE",
61
63
  * // },
62
64
  * // openAiModelConfig: { // HarnessOpenAiModelConfig
63
65
  * // modelId: "STRING_VALUE", // required
@@ -65,6 +67,8 @@ declare const GetHarnessCommand_base: {
65
67
  * // maxTokens: Number("int"),
66
68
  * // temperature: Number("float"),
67
69
  * // topP: Number("float"),
70
+ * // apiFormat: "chat_completions" || "responses",
71
+ * // additionalParams: "DOCUMENT_VALUE",
68
72
  * // },
69
73
  * // geminiModelConfig: { // HarnessGeminiModelConfig
70
74
  * // modelId: "STRING_VALUE", // required
@@ -74,6 +78,15 @@ declare const GetHarnessCommand_base: {
74
78
  * // topP: Number("float"),
75
79
  * // topK: Number("int"),
76
80
  * // },
81
+ * // liteLlmModelConfig: { // HarnessLiteLlmModelConfig
82
+ * // modelId: "STRING_VALUE", // required
83
+ * // apiKeyArn: "STRING_VALUE",
84
+ * // apiBase: "STRING_VALUE",
85
+ * // maxTokens: Number("int"),
86
+ * // temperature: Number("float"),
87
+ * // topP: Number("float"),
88
+ * // additionalParams: "DOCUMENT_VALUE",
89
+ * // },
77
90
  * // },
78
91
  * // systemPrompt: [ // HarnessSystemPrompt // required
79
92
  * // { // HarnessSystemContentBlock Union: only one key present
@@ -125,6 +138,17 @@ declare const GetHarnessCommand_base: {
125
138
  * // skills: [ // HarnessSkills // required
126
139
  * // { // HarnessSkill Union: only one key present
127
140
  * // path: "STRING_VALUE",
141
+ * // s3: { // HarnessSkillS3Source
142
+ * // uri: "STRING_VALUE", // required
143
+ * // },
144
+ * // git: { // HarnessSkillGitSource
145
+ * // url: "STRING_VALUE", // required
146
+ * // path: "STRING_VALUE",
147
+ * // auth: { // HarnessSkillGitAuth
148
+ * // credentialArn: "STRING_VALUE", // required
149
+ * // username: "STRING_VALUE",
150
+ * // },
151
+ * // },
128
152
  * // },
129
153
  * // ],
130
154
  * // allowedTools: [ // HarnessAllowedTools // required
@@ -47,6 +47,8 @@ declare const GetOauth2CredentialProviderCommand_base: {
47
47
  * // clientSecretArn: { // Secret
48
48
  * // secretArn: "STRING_VALUE", // required
49
49
  * // },
50
+ * // clientSecretJsonKey: "STRING_VALUE",
51
+ * // clientSecretSource: "MANAGED" || "EXTERNAL",
50
52
  * // name: "STRING_VALUE", // required
51
53
  * // credentialProviderArn: "STRING_VALUE", // required
52
54
  * // 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
@@ -53,18 +53,26 @@ declare const GetPaymentCredentialProviderCommand_base: {
53
53
  * // apiKeySecretArn: { // Secret
54
54
  * // secretArn: "STRING_VALUE", // required
55
55
  * // },
56
+ * // apiKeySecretJsonKey: "STRING_VALUE",
57
+ * // apiKeySecretSource: "MANAGED" || "EXTERNAL",
56
58
  * // walletSecretArn: {
57
59
  * // secretArn: "STRING_VALUE", // required
58
60
  * // },
61
+ * // walletSecretJsonKey: "STRING_VALUE",
62
+ * // walletSecretSource: "MANAGED" || "EXTERNAL",
59
63
  * // },
60
64
  * // stripePrivyConfiguration: { // StripePrivyConfigurationOutput
61
65
  * // appId: "STRING_VALUE", // required
62
66
  * // appSecretArn: {
63
67
  * // secretArn: "STRING_VALUE", // required
64
68
  * // },
69
+ * // appSecretJsonKey: "STRING_VALUE",
70
+ * // appSecretSource: "MANAGED" || "EXTERNAL",
65
71
  * // authorizationPrivateKeyArn: {
66
72
  * // secretArn: "STRING_VALUE", // required
67
73
  * // },
74
+ * // authorizationPrivateKeyJsonKey: "STRING_VALUE",
75
+ * // authorizationPrivateKeySource: "MANAGED" || "EXTERNAL",
68
76
  * // authorizationId: "STRING_VALUE", // required
69
77
  * // },
70
78
  * // },
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
- import type { GetWorkloadIdentityRequest, GetWorkloadIdentityResponse } from "../models/models_1";
4
+ import type { GetWorkloadIdentityRequest, GetWorkloadIdentityResponse } from "../models/models_2";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -51,6 +51,7 @@ declare const ListConfigurationBundlesCommand_base: {
51
51
  * // bundleId: "STRING_VALUE", // required
52
52
  * // bundleName: "STRING_VALUE", // required
53
53
  * // description: "STRING_VALUE",
54
+ * // createdAt: new Date("TIMESTAMP"),
54
55
  * // },
55
56
  * // ],
56
57
  * // nextToken: "STRING_VALUE",
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/core/client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreControlClient";
4
- import type { ListWorkloadIdentitiesRequest } from "../models/models_1";
5
- import type { ListWorkloadIdentitiesResponse } from "../models/models_2";
4
+ import type { ListWorkloadIdentitiesRequest, ListWorkloadIdentitiesResponse } from "../models/models_2";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -40,7 +40,12 @@ declare const UpdateApiKeyCredentialProviderCommand_base: {
40
40
  * const client = new BedrockAgentCoreControlClient(config);
41
41
  * const input = { // UpdateApiKeyCredentialProviderRequest
42
42
  * name: "STRING_VALUE", // required
43
- * apiKey: "STRING_VALUE", // required
43
+ * apiKey: "STRING_VALUE",
44
+ * apiKeySecretConfig: { // SecretReference
45
+ * secretId: "STRING_VALUE", // required
46
+ * jsonKey: "STRING_VALUE", // required
47
+ * },
48
+ * apiKeySecretSource: "MANAGED" || "EXTERNAL",
44
49
  * };
45
50
  * const command = new UpdateApiKeyCredentialProviderCommand(input);
46
51
  * const response = await client.send(command);
@@ -48,6 +53,8 @@ declare const UpdateApiKeyCredentialProviderCommand_base: {
48
53
  * // apiKeySecretArn: { // Secret
49
54
  * // secretArn: "STRING_VALUE", // required
50
55
  * // },
56
+ * // apiKeySecretJsonKey: "STRING_VALUE",
57
+ * // apiKeySecretSource: "MANAGED" || "EXTERNAL",
51
58
  * // name: "STRING_VALUE", // required
52
59
  * // credentialProviderArn: "STRING_VALUE", // required
53
60
  * // createdTime: new Date("TIMESTAMP"), // required
@@ -167,6 +167,8 @@ declare const UpdateHarnessCommand_base: {
167
167
  * maxTokens: Number("int"),
168
168
  * temperature: Number("float"),
169
169
  * topP: Number("float"),
170
+ * apiFormat: "converse_stream" || "responses" || "chat_completions",
171
+ * additionalParams: "DOCUMENT_VALUE",
170
172
  * },
171
173
  * openAiModelConfig: { // HarnessOpenAiModelConfig
172
174
  * modelId: "STRING_VALUE", // required
@@ -174,6 +176,8 @@ declare const UpdateHarnessCommand_base: {
174
176
  * maxTokens: Number("int"),
175
177
  * temperature: Number("float"),
176
178
  * topP: Number("float"),
179
+ * apiFormat: "chat_completions" || "responses",
180
+ * additionalParams: "DOCUMENT_VALUE",
177
181
  * },
178
182
  * geminiModelConfig: { // HarnessGeminiModelConfig
179
183
  * modelId: "STRING_VALUE", // required
@@ -183,6 +187,15 @@ declare const UpdateHarnessCommand_base: {
183
187
  * topP: Number("float"),
184
188
  * topK: Number("int"),
185
189
  * },
190
+ * liteLlmModelConfig: { // HarnessLiteLlmModelConfig
191
+ * modelId: "STRING_VALUE", // required
192
+ * apiKeyArn: "STRING_VALUE",
193
+ * apiBase: "STRING_VALUE",
194
+ * maxTokens: Number("int"),
195
+ * temperature: Number("float"),
196
+ * topP: Number("float"),
197
+ * additionalParams: "DOCUMENT_VALUE",
198
+ * },
186
199
  * },
187
200
  * systemPrompt: [ // HarnessSystemPrompt
188
201
  * { // HarnessSystemContentBlock Union: only one key present
@@ -234,6 +247,17 @@ declare const UpdateHarnessCommand_base: {
234
247
  * skills: [ // HarnessSkills
235
248
  * { // HarnessSkill Union: only one key present
236
249
  * path: "STRING_VALUE",
250
+ * s3: { // HarnessSkillS3Source
251
+ * uri: "STRING_VALUE", // required
252
+ * },
253
+ * git: { // HarnessSkillGitSource
254
+ * url: "STRING_VALUE", // required
255
+ * path: "STRING_VALUE",
256
+ * auth: { // HarnessSkillGitAuth
257
+ * credentialArn: "STRING_VALUE", // required
258
+ * username: "STRING_VALUE",
259
+ * },
260
+ * },
237
261
  * },
238
262
  * ],
239
263
  * allowedTools: [ // HarnessAllowedTools
@@ -289,6 +313,8 @@ declare const UpdateHarnessCommand_base: {
289
313
  * // maxTokens: Number("int"),
290
314
  * // temperature: Number("float"),
291
315
  * // topP: Number("float"),
316
+ * // apiFormat: "converse_stream" || "responses" || "chat_completions",
317
+ * // additionalParams: "DOCUMENT_VALUE",
292
318
  * // },
293
319
  * // openAiModelConfig: { // HarnessOpenAiModelConfig
294
320
  * // modelId: "STRING_VALUE", // required
@@ -296,6 +322,8 @@ declare const UpdateHarnessCommand_base: {
296
322
  * // maxTokens: Number("int"),
297
323
  * // temperature: Number("float"),
298
324
  * // topP: Number("float"),
325
+ * // apiFormat: "chat_completions" || "responses",
326
+ * // additionalParams: "DOCUMENT_VALUE",
299
327
  * // },
300
328
  * // geminiModelConfig: { // HarnessGeminiModelConfig
301
329
  * // modelId: "STRING_VALUE", // required
@@ -305,6 +333,15 @@ declare const UpdateHarnessCommand_base: {
305
333
  * // topP: Number("float"),
306
334
  * // topK: Number("int"),
307
335
  * // },
336
+ * // liteLlmModelConfig: { // HarnessLiteLlmModelConfig
337
+ * // modelId: "STRING_VALUE", // required
338
+ * // apiKeyArn: "STRING_VALUE",
339
+ * // apiBase: "STRING_VALUE",
340
+ * // maxTokens: Number("int"),
341
+ * // temperature: Number("float"),
342
+ * // topP: Number("float"),
343
+ * // additionalParams: "DOCUMENT_VALUE",
344
+ * // },
308
345
  * // },
309
346
  * // systemPrompt: [ // HarnessSystemPrompt // required
310
347
  * // { // HarnessSystemContentBlock Union: only one key present
@@ -356,6 +393,17 @@ declare const UpdateHarnessCommand_base: {
356
393
  * // skills: [ // HarnessSkills // required
357
394
  * // { // HarnessSkill Union: only one key present
358
395
  * // path: "STRING_VALUE",
396
+ * // s3: { // HarnessSkillS3Source
397
+ * // uri: "STRING_VALUE", // required
398
+ * // },
399
+ * // git: { // HarnessSkillGitSource
400
+ * // url: "STRING_VALUE", // required
401
+ * // path: "STRING_VALUE",
402
+ * // auth: { // HarnessSkillGitAuth
403
+ * // credentialArn: "STRING_VALUE", // required
404
+ * // username: "STRING_VALUE",
405
+ * // },
406
+ * // },
359
407
  * // },
360
408
  * // ],
361
409
  * // allowedTools: [ // HarnessAllowedTools // required