@aws-sdk/client-bedrock-agentcore-control 3.907.0 → 3.909.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 +8 -0
- package/dist-cjs/index.js +234 -21
- package/dist-es/BedrockAgentCoreControl.js +2 -0
- package/dist-es/commands/CreateAgentRuntimeEndpointCommand.js +2 -2
- package/dist-es/commands/DeleteAgentRuntimeEndpointCommand.js +2 -2
- package/dist-es/commands/SynchronizeGatewayTargetsCommand.js +23 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +115 -0
- package/dist-es/protocols/Aws_restJson1.js +91 -19
- package/dist-types/BedrockAgentCoreControl.d.ts +7 -0
- package/dist-types/BedrockAgentCoreControlClient.d.ts +3 -2
- package/dist-types/commands/CreateAgentRuntimeEndpointCommand.d.ts +2 -0
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +3 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +1 -1
- package/dist-types/commands/CreateGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/CreateMemoryCommand.d.ts +41 -1
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +127 -1
- package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAgentRuntimeCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAgentRuntimeEndpointCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGatewayTargetCommand.d.ts +1 -1
- package/dist-types/commands/GetGatewayTargetCommand.d.ts +5 -1
- package/dist-types/commands/GetMemoryCommand.d.ts +21 -1
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +35 -1
- package/dist-types/commands/ListGatewayTargetsCommand.d.ts +1 -1
- package/dist-types/commands/ListOauth2CredentialProvidersCommand.d.ts +1 -1
- package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +192 -0
- package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +9 -2
- package/dist-types/commands/UpdateMemoryCommand.d.ts +61 -1
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +55 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +899 -51
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/BedrockAgentCoreControl.d.ts +17 -0
- package/dist-types/ts3.4/BedrockAgentCoreControlClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/SynchronizeGatewayTargetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +418 -13
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +14 -14
|
@@ -99,6 +99,26 @@ declare const UpdateMemoryCommand_base: {
|
|
|
99
99
|
* modelId: "STRING_VALUE", // required
|
|
100
100
|
* },
|
|
101
101
|
* },
|
|
102
|
+
* selfManagedConfiguration: { // SelfManagedConfigurationInput
|
|
103
|
+
* triggerConditions: [ // TriggerConditionInputList
|
|
104
|
+
* { // TriggerConditionInput Union: only one key present
|
|
105
|
+
* messageBasedTrigger: { // MessageBasedTriggerInput
|
|
106
|
+
* messageCount: Number("int"),
|
|
107
|
+
* },
|
|
108
|
+
* tokenBasedTrigger: { // TokenBasedTriggerInput
|
|
109
|
+
* tokenCount: Number("int"),
|
|
110
|
+
* },
|
|
111
|
+
* timeBasedTrigger: { // TimeBasedTriggerInput
|
|
112
|
+
* idleSessionTimeout: Number("int"),
|
|
113
|
+
* },
|
|
114
|
+
* },
|
|
115
|
+
* ],
|
|
116
|
+
* invocationConfiguration: { // InvocationConfigurationInput
|
|
117
|
+
* topicArn: "STRING_VALUE", // required
|
|
118
|
+
* payloadDeliveryBucketName: "STRING_VALUE", // required
|
|
119
|
+
* },
|
|
120
|
+
* historicalContextWindowSize: Number("int"),
|
|
121
|
+
* },
|
|
102
122
|
* },
|
|
103
123
|
* },
|
|
104
124
|
* },
|
|
@@ -139,6 +159,26 @@ declare const UpdateMemoryCommand_base: {
|
|
|
139
159
|
* },
|
|
140
160
|
* },
|
|
141
161
|
* },
|
|
162
|
+
* selfManagedConfiguration: { // ModifySelfManagedConfiguration
|
|
163
|
+
* triggerConditions: [
|
|
164
|
+
* {// Union: only one key present
|
|
165
|
+
* messageBasedTrigger: {
|
|
166
|
+
* messageCount: Number("int"),
|
|
167
|
+
* },
|
|
168
|
+
* tokenBasedTrigger: {
|
|
169
|
+
* tokenCount: Number("int"),
|
|
170
|
+
* },
|
|
171
|
+
* timeBasedTrigger: {
|
|
172
|
+
* idleSessionTimeout: Number("int"),
|
|
173
|
+
* },
|
|
174
|
+
* },
|
|
175
|
+
* ],
|
|
176
|
+
* invocationConfiguration: { // ModifyInvocationConfigurationInput
|
|
177
|
+
* topicArn: "STRING_VALUE",
|
|
178
|
+
* payloadDeliveryBucketName: "STRING_VALUE",
|
|
179
|
+
* },
|
|
180
|
+
* historicalContextWindowSize: Number("int"),
|
|
181
|
+
* },
|
|
142
182
|
* },
|
|
143
183
|
* },
|
|
144
184
|
* ],
|
|
@@ -170,7 +210,7 @@ declare const UpdateMemoryCommand_base: {
|
|
|
170
210
|
* // name: "STRING_VALUE", // required
|
|
171
211
|
* // description: "STRING_VALUE",
|
|
172
212
|
* // configuration: { // StrategyConfiguration
|
|
173
|
-
* // type: "SEMANTIC_OVERRIDE" || "SUMMARY_OVERRIDE" || "USER_PREFERENCE_OVERRIDE",
|
|
213
|
+
* // type: "SEMANTIC_OVERRIDE" || "SUMMARY_OVERRIDE" || "USER_PREFERENCE_OVERRIDE" || "SELF_MANAGED",
|
|
174
214
|
* // extraction: { // ExtractionConfiguration Union: only one key present
|
|
175
215
|
* // customExtractionConfiguration: { // CustomExtractionConfiguration Union: only one key present
|
|
176
216
|
* // semanticExtractionOverride: { // SemanticExtractionOverride
|
|
@@ -199,6 +239,26 @@ declare const UpdateMemoryCommand_base: {
|
|
|
199
239
|
* // },
|
|
200
240
|
* // },
|
|
201
241
|
* // },
|
|
242
|
+
* // selfManagedConfiguration: { // SelfManagedConfiguration
|
|
243
|
+
* // triggerConditions: [ // TriggerConditionsList // required
|
|
244
|
+
* // { // TriggerCondition Union: only one key present
|
|
245
|
+
* // messageBasedTrigger: { // MessageBasedTrigger
|
|
246
|
+
* // messageCount: Number("int"),
|
|
247
|
+
* // },
|
|
248
|
+
* // tokenBasedTrigger: { // TokenBasedTrigger
|
|
249
|
+
* // tokenCount: Number("int"),
|
|
250
|
+
* // },
|
|
251
|
+
* // timeBasedTrigger: { // TimeBasedTrigger
|
|
252
|
+
* // idleSessionTimeout: Number("int"),
|
|
253
|
+
* // },
|
|
254
|
+
* // },
|
|
255
|
+
* // ],
|
|
256
|
+
* // invocationConfiguration: { // InvocationConfiguration
|
|
257
|
+
* // topicArn: "STRING_VALUE", // required
|
|
258
|
+
* // payloadDeliveryBucketName: "STRING_VALUE", // required
|
|
259
|
+
* // },
|
|
260
|
+
* // historicalContextWindowSize: Number("int"), // required
|
|
261
|
+
* // },
|
|
202
262
|
* // },
|
|
203
263
|
* // type: "SEMANTIC" || "SUMMARIZATION" || "USER_PREFERENCE" || "CUSTOM", // required
|
|
204
264
|
* // namespaces: [ // NamespacesList // required
|
|
@@ -38,7 +38,7 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
38
38
|
* const client = new BedrockAgentCoreControlClient(config);
|
|
39
39
|
* const input = { // UpdateOauth2CredentialProviderRequest
|
|
40
40
|
* name: "STRING_VALUE", // required
|
|
41
|
-
* credentialProviderVendor: "GoogleOauth2" || "GithubOauth2" || "SlackOauth2" || "SalesforceOauth2" || "MicrosoftOauth2" || "CustomOauth2", // required
|
|
41
|
+
* 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
|
|
42
42
|
* oauth2ProviderConfigInput: { // Oauth2ProviderConfigInput Union: only one key present
|
|
43
43
|
* customOauth2ProviderConfig: { // CustomOauth2ProviderConfigInput
|
|
44
44
|
* oauthDiscovery: { // Oauth2Discovery Union: only one key present
|
|
@@ -50,6 +50,9 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
50
50
|
* responseTypes: [ // ResponseListType
|
|
51
51
|
* "STRING_VALUE",
|
|
52
52
|
* ],
|
|
53
|
+
* tokenEndpointAuthMethods: [ // TokenEndpointAuthMethodsType
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
53
56
|
* },
|
|
54
57
|
* },
|
|
55
58
|
* clientId: "STRING_VALUE", // required
|
|
@@ -74,6 +77,22 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
74
77
|
* microsoftOauth2ProviderConfig: { // MicrosoftOauth2ProviderConfigInput
|
|
75
78
|
* clientId: "STRING_VALUE", // required
|
|
76
79
|
* clientSecret: "STRING_VALUE", // required
|
|
80
|
+
* tenantId: "STRING_VALUE",
|
|
81
|
+
* },
|
|
82
|
+
* atlassianOauth2ProviderConfig: { // AtlassianOauth2ProviderConfigInput
|
|
83
|
+
* clientId: "STRING_VALUE", // required
|
|
84
|
+
* clientSecret: "STRING_VALUE", // required
|
|
85
|
+
* },
|
|
86
|
+
* linkedinOauth2ProviderConfig: { // LinkedinOauth2ProviderConfigInput
|
|
87
|
+
* clientId: "STRING_VALUE", // required
|
|
88
|
+
* clientSecret: "STRING_VALUE", // required
|
|
89
|
+
* },
|
|
90
|
+
* includedOauth2ProviderConfig: { // IncludedOauth2ProviderConfigInput
|
|
91
|
+
* clientId: "STRING_VALUE", // required
|
|
92
|
+
* clientSecret: "STRING_VALUE", // required
|
|
93
|
+
* issuer: "STRING_VALUE",
|
|
94
|
+
* authorizationEndpoint: "STRING_VALUE",
|
|
95
|
+
* tokenEndpoint: "STRING_VALUE",
|
|
77
96
|
* },
|
|
78
97
|
* },
|
|
79
98
|
* };
|
|
@@ -84,8 +103,9 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
84
103
|
* // secretArn: "STRING_VALUE", // required
|
|
85
104
|
* // },
|
|
86
105
|
* // name: "STRING_VALUE", // required
|
|
87
|
-
* // credentialProviderVendor: "GoogleOauth2" || "GithubOauth2" || "SlackOauth2" || "SalesforceOauth2" || "MicrosoftOauth2" || "CustomOauth2", // required
|
|
106
|
+
* // 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
|
|
88
107
|
* // credentialProviderArn: "STRING_VALUE", // required
|
|
108
|
+
* // callbackUrl: "STRING_VALUE",
|
|
89
109
|
* // oauth2ProviderConfigOutput: { // Oauth2ProviderConfigOutput Union: only one key present
|
|
90
110
|
* // customOauth2ProviderConfig: { // CustomOauth2ProviderConfigOutput
|
|
91
111
|
* // oauthDiscovery: { // Oauth2Discovery Union: only one key present
|
|
@@ -97,8 +117,12 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
97
117
|
* // responseTypes: [ // ResponseListType
|
|
98
118
|
* // "STRING_VALUE",
|
|
99
119
|
* // ],
|
|
120
|
+
* // tokenEndpointAuthMethods: [ // TokenEndpointAuthMethodsType
|
|
121
|
+
* // "STRING_VALUE",
|
|
122
|
+
* // ],
|
|
100
123
|
* // },
|
|
101
124
|
* // },
|
|
125
|
+
* // clientId: "STRING_VALUE",
|
|
102
126
|
* // },
|
|
103
127
|
* // googleOauth2ProviderConfig: { // GoogleOauth2ProviderConfigOutput
|
|
104
128
|
* // oauthDiscovery: {// Union: only one key present
|
|
@@ -110,8 +134,12 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
110
134
|
* // responseTypes: [
|
|
111
135
|
* // "STRING_VALUE",
|
|
112
136
|
* // ],
|
|
137
|
+
* // tokenEndpointAuthMethods: [
|
|
138
|
+
* // "STRING_VALUE",
|
|
139
|
+
* // ],
|
|
113
140
|
* // },
|
|
114
141
|
* // },
|
|
142
|
+
* // clientId: "STRING_VALUE",
|
|
115
143
|
* // },
|
|
116
144
|
* // githubOauth2ProviderConfig: { // GithubOauth2ProviderConfigOutput
|
|
117
145
|
* // oauthDiscovery: {// Union: only one key present
|
|
@@ -123,8 +151,12 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
123
151
|
* // responseTypes: [
|
|
124
152
|
* // "STRING_VALUE",
|
|
125
153
|
* // ],
|
|
154
|
+
* // tokenEndpointAuthMethods: [
|
|
155
|
+
* // "STRING_VALUE",
|
|
156
|
+
* // ],
|
|
126
157
|
* // },
|
|
127
158
|
* // },
|
|
159
|
+
* // clientId: "STRING_VALUE",
|
|
128
160
|
* // },
|
|
129
161
|
* // slackOauth2ProviderConfig: { // SlackOauth2ProviderConfigOutput
|
|
130
162
|
* // oauthDiscovery: {// Union: only one key present
|
|
@@ -136,8 +168,12 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
136
168
|
* // responseTypes: [
|
|
137
169
|
* // "STRING_VALUE",
|
|
138
170
|
* // ],
|
|
171
|
+
* // tokenEndpointAuthMethods: [
|
|
172
|
+
* // "STRING_VALUE",
|
|
173
|
+
* // ],
|
|
139
174
|
* // },
|
|
140
175
|
* // },
|
|
176
|
+
* // clientId: "STRING_VALUE",
|
|
141
177
|
* // },
|
|
142
178
|
* // salesforceOauth2ProviderConfig: { // SalesforceOauth2ProviderConfigOutput
|
|
143
179
|
* // oauthDiscovery: {// Union: only one key present
|
|
@@ -149,11 +185,28 @@ declare const UpdateOauth2CredentialProviderCommand_base: {
|
|
|
149
185
|
* // responseTypes: [
|
|
150
186
|
* // "STRING_VALUE",
|
|
151
187
|
* // ],
|
|
188
|
+
* // tokenEndpointAuthMethods: [
|
|
189
|
+
* // "STRING_VALUE",
|
|
190
|
+
* // ],
|
|
152
191
|
* // },
|
|
153
192
|
* // },
|
|
193
|
+
* // clientId: "STRING_VALUE",
|
|
154
194
|
* // },
|
|
155
195
|
* // microsoftOauth2ProviderConfig: { // MicrosoftOauth2ProviderConfigOutput
|
|
156
196
|
* // oauthDiscovery: "<Oauth2Discovery>", // required
|
|
197
|
+
* // clientId: "STRING_VALUE",
|
|
198
|
+
* // },
|
|
199
|
+
* // atlassianOauth2ProviderConfig: { // AtlassianOauth2ProviderConfigOutput
|
|
200
|
+
* // oauthDiscovery: "<Oauth2Discovery>", // required
|
|
201
|
+
* // clientId: "STRING_VALUE",
|
|
202
|
+
* // },
|
|
203
|
+
* // linkedinOauth2ProviderConfig: { // LinkedinOauth2ProviderConfigOutput
|
|
204
|
+
* // oauthDiscovery: "<Oauth2Discovery>", // required
|
|
205
|
+
* // clientId: "STRING_VALUE",
|
|
206
|
+
* // },
|
|
207
|
+
* // includedOauth2ProviderConfig: { // IncludedOauth2ProviderConfigOutput
|
|
208
|
+
* // oauthDiscovery: "<Oauth2Discovery>", // required
|
|
209
|
+
* // clientId: "STRING_VALUE",
|
|
157
210
|
* // },
|
|
158
211
|
* // },
|
|
159
212
|
* // createdTime: new Date("TIMESTAMP"), // required
|
|
@@ -42,6 +42,7 @@ export * from "./ListOauth2CredentialProvidersCommand";
|
|
|
42
42
|
export * from "./ListTagsForResourceCommand";
|
|
43
43
|
export * from "./ListWorkloadIdentitiesCommand";
|
|
44
44
|
export * from "./SetTokenVaultCMKCommand";
|
|
45
|
+
export * from "./SynchronizeGatewayTargetsCommand";
|
|
45
46
|
export * from "./TagResourceCommand";
|
|
46
47
|
export * from "./UntagResourceCommand";
|
|
47
48
|
export * from "./UpdateAgentRuntimeCommand";
|