@aws-sdk/client-bedrock-agentcore-control 3.1067.0 → 3.1068.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.
@@ -1,5 +1,45 @@
1
1
  import type { SchemaType, TargetProtocolType, TargetStatus } from "./enums";
2
2
  import type { ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AuthorizationData, CredentialProviderConfiguration, HttpTargetConfiguration, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, PrivateEndpoint, S3Configuration } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface CreateWorkloadIdentityRequest {
7
+ /**
8
+ * <p>The name of the workload identity. The name must be unique within your account.</p>
9
+ * @public
10
+ */
11
+ name: string | undefined;
12
+ /**
13
+ * <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
14
+ * @public
15
+ */
16
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
17
+ /**
18
+ * <p>A map of tag keys and values to assign to the workload identity. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.</p>
19
+ * @public
20
+ */
21
+ tags?: Record<string, string> | undefined;
22
+ }
23
+ /**
24
+ * @public
25
+ */
26
+ export interface CreateWorkloadIdentityResponse {
27
+ /**
28
+ * <p>The name of the workload identity.</p>
29
+ * @public
30
+ */
31
+ name: string | undefined;
32
+ /**
33
+ * <p>The Amazon Resource Name (ARN) of the workload identity.</p>
34
+ * @public
35
+ */
36
+ workloadIdentityArn: string | undefined;
37
+ /**
38
+ * <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
39
+ * @public
40
+ */
41
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
42
+ }
3
43
  /**
4
44
  * @public
5
45
  */
@@ -49,6 +49,7 @@ export declare var CedarPolicy$: StaticStructureSchema;
49
49
  export declare var Certificate$: StaticStructureSchema;
50
50
  export declare var CloudWatchLogsInputConfig$: StaticStructureSchema;
51
51
  export declare var CloudWatchOutputConfig$: StaticStructureSchema;
52
+ export declare var ClusteringConfig$: StaticStructureSchema;
52
53
  export declare var CodeConfiguration$: StaticStructureSchema;
53
54
  export declare var CodeInterpreterNetworkConfiguration$: StaticStructureSchema;
54
55
  export declare var CodeInterpreterSummary$: StaticStructureSchema;
@@ -289,6 +290,7 @@ export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
289
290
  export declare var IndexedKey$: StaticStructureSchema;
290
291
  export declare var InferenceConfiguration$: StaticStructureSchema;
291
292
  export declare var InlineExamplesSource$: StaticStructureSchema;
293
+ export declare var Insight$: StaticStructureSchema;
292
294
  export declare var InterceptorInputConfiguration$: StaticStructureSchema;
293
295
  export declare var InvocationConfiguration$: StaticStructureSchema;
294
296
  export declare var InvocationConfigurationInput$: StaticStructureSchema;
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreateWorkloadIdentityRequest,
10
10
  CreateWorkloadIdentityResponse,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreateWorkloadIdentityCommandInput
@@ -472,6 +472,13 @@ export declare const Status: {
472
472
  readonly UPDATING: "UPDATING";
473
473
  };
474
474
  export type Status = (typeof Status)[keyof typeof Status];
475
+ export declare const ClusteringFrequency: {
476
+ readonly DAILY: "DAILY";
477
+ readonly MONTHLY: "MONTHLY";
478
+ readonly WEEKLY: "WEEKLY";
479
+ };
480
+ export type ClusteringFrequency =
481
+ (typeof ClusteringFrequency)[keyof typeof ClusteringFrequency];
475
482
  export declare const FilterOperator: {
476
483
  readonly CONTAINS: "Contains";
477
484
  readonly EQUALS: "Equals";
@@ -991,6 +991,7 @@ export interface CreateConfigurationBundleRequest {
991
991
  branchName?: string | undefined;
992
992
  commitMessage?: string | undefined;
993
993
  createdBy?: VersionCreatedBySource | undefined;
994
+ kmsKeyArn?: string | undefined;
994
995
  tags?: Record<string, string> | undefined;
995
996
  }
996
997
  export interface CreateConfigurationBundleResponse {
@@ -1026,6 +1027,7 @@ export interface GetConfigurationBundleResponse {
1026
1027
  lineageMetadata?: VersionLineageMetadata | undefined;
1027
1028
  createdAt: Date | undefined;
1028
1029
  updatedAt: Date | undefined;
1030
+ kmsKeyArn?: string | undefined;
1029
1031
  }
1030
1032
  export interface GetConfigurationBundleVersionRequest {
1031
1033
  bundleId: string | undefined;
@@ -1041,6 +1043,7 @@ export interface GetConfigurationBundleVersionResponse {
1041
1043
  lineageMetadata?: VersionLineageMetadata | undefined;
1042
1044
  createdAt: Date | undefined;
1043
1045
  versionCreatedAt: Date | undefined;
1046
+ kmsKeyArn?: string | undefined;
1044
1047
  }
1045
1048
  export interface ListConfigurationBundlesRequest {
1046
1049
  nextToken?: string | undefined;
@@ -1089,6 +1092,7 @@ export interface UpdateConfigurationBundleRequest {
1089
1092
  branchName?: string | undefined;
1090
1093
  commitMessage?: string | undefined;
1091
1094
  createdBy?: VersionCreatedBySource | undefined;
1095
+ kmsKeyArn?: string | undefined;
1092
1096
  }
1093
1097
  export interface UpdateConfigurationBundleResponse {
1094
1098
  bundleArn: string | undefined;
@@ -1,6 +1,7 @@
1
1
  import {
2
2
  ActorTokenContentType,
3
3
  ClientAuthenticationMethodType,
4
+ ClusteringFrequency,
4
5
  ContentLevel,
5
6
  ContentType,
6
7
  CredentialProviderVendorType,
@@ -1550,6 +1551,9 @@ export interface UpdateOauth2CredentialProviderResponse {
1550
1551
  lastUpdatedTime: Date | undefined;
1551
1552
  status?: Status | undefined;
1552
1553
  }
1554
+ export interface ClusteringConfig {
1555
+ frequencies: ClusteringFrequency[] | undefined;
1556
+ }
1553
1557
  export interface CloudWatchLogsInputConfig {
1554
1558
  logGroupNames: string[] | undefined;
1555
1559
  serviceNames: string[] | undefined;
@@ -1588,6 +1592,9 @@ export declare namespace EvaluatorReference {
1588
1592
  _: (name: string, value: any) => T;
1589
1593
  }
1590
1594
  }
1595
+ export interface Insight {
1596
+ insightId: string | undefined;
1597
+ }
1591
1598
  export type FilterValue =
1592
1599
  | FilterValue.BooleanValueMember
1593
1600
  | FilterValue.DoubleValueMember
@@ -1647,7 +1654,9 @@ export interface CreateOnlineEvaluationConfigRequest {
1647
1654
  description?: string | undefined;
1648
1655
  rule: Rule | undefined;
1649
1656
  dataSourceConfig: DataSourceConfig | undefined;
1650
- evaluators: EvaluatorReference[] | undefined;
1657
+ evaluators?: EvaluatorReference[] | undefined;
1658
+ insights?: Insight[] | undefined;
1659
+ clusteringConfig?: ClusteringConfig | undefined;
1651
1660
  evaluationExecutionRoleArn: string | undefined;
1652
1661
  enableOnCreate: boolean | undefined;
1653
1662
  tags?: Record<string, string> | undefined;
@@ -1685,7 +1694,9 @@ export interface GetOnlineEvaluationConfigResponse {
1685
1694
  description?: string | undefined;
1686
1695
  rule: Rule | undefined;
1687
1696
  dataSourceConfig: DataSourceConfig | undefined;
1688
- evaluators: EvaluatorReference[] | undefined;
1697
+ evaluators?: EvaluatorReference[] | undefined;
1698
+ insights?: Insight[] | undefined;
1699
+ clusteringConfig?: ClusteringConfig | undefined;
1689
1700
  outputConfig?: OutputConfig | undefined;
1690
1701
  evaluationExecutionRoleArn?: string | undefined;
1691
1702
  status: OnlineEvaluationConfigStatus | undefined;
@@ -1708,6 +1719,8 @@ export interface OnlineEvaluationConfigSummary {
1708
1719
  createdAt: Date | undefined;
1709
1720
  updatedAt: Date | undefined;
1710
1721
  failureReason?: string | undefined;
1722
+ insights?: Insight[] | undefined;
1723
+ clusteringConfig?: ClusteringConfig | undefined;
1711
1724
  }
1712
1725
  export interface ListOnlineEvaluationConfigsResponse {
1713
1726
  onlineEvaluationConfigs: OnlineEvaluationConfigSummary[] | undefined;
@@ -1720,6 +1733,8 @@ export interface UpdateOnlineEvaluationConfigRequest {
1720
1733
  rule?: Rule | undefined;
1721
1734
  dataSourceConfig?: DataSourceConfig | undefined;
1722
1735
  evaluators?: EvaluatorReference[] | undefined;
1736
+ insights?: Insight[] | undefined;
1737
+ clusteringConfig?: ClusteringConfig | undefined;
1723
1738
  evaluationExecutionRoleArn?: string | undefined;
1724
1739
  executionStatus?: OnlineEvaluationExecutionStatus | undefined;
1725
1740
  }
@@ -2828,13 +2843,3 @@ export interface UntagResourceRequest {
2828
2843
  tagKeys: string[] | undefined;
2829
2844
  }
2830
2845
  export interface UntagResourceResponse {}
2831
- export interface CreateWorkloadIdentityRequest {
2832
- name: string | undefined;
2833
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2834
- tags?: Record<string, string> | undefined;
2835
- }
2836
- export interface CreateWorkloadIdentityResponse {
2837
- name: string | undefined;
2838
- workloadIdentityArn: string | undefined;
2839
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2840
- }
@@ -11,6 +11,16 @@ import {
11
11
  PrivateEndpoint,
12
12
  S3Configuration,
13
13
  } from "./models_0";
14
+ export interface CreateWorkloadIdentityRequest {
15
+ name: string | undefined;
16
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
17
+ tags?: Record<string, string> | undefined;
18
+ }
19
+ export interface CreateWorkloadIdentityResponse {
20
+ name: string | undefined;
21
+ workloadIdentityArn: string | undefined;
22
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
23
+ }
14
24
  export interface DeleteWorkloadIdentityRequest {
15
25
  name: string | undefined;
16
26
  }
@@ -49,6 +49,7 @@ export declare var CedarPolicy$: StaticStructureSchema;
49
49
  export declare var Certificate$: StaticStructureSchema;
50
50
  export declare var CloudWatchLogsInputConfig$: StaticStructureSchema;
51
51
  export declare var CloudWatchOutputConfig$: StaticStructureSchema;
52
+ export declare var ClusteringConfig$: StaticStructureSchema;
52
53
  export declare var CodeConfiguration$: StaticStructureSchema;
53
54
  export declare var CodeInterpreterNetworkConfiguration$: StaticStructureSchema;
54
55
  export declare var CodeInterpreterSummary$: StaticStructureSchema;
@@ -289,6 +290,7 @@ export declare var IncludedOauth2ProviderConfigOutput$: StaticStructureSchema;
289
290
  export declare var IndexedKey$: StaticStructureSchema;
290
291
  export declare var InferenceConfiguration$: StaticStructureSchema;
291
292
  export declare var InlineExamplesSource$: StaticStructureSchema;
293
+ export declare var Insight$: StaticStructureSchema;
292
294
  export declare var InterceptorInputConfiguration$: StaticStructureSchema;
293
295
  export declare var InvocationConfiguration$: StaticStructureSchema;
294
296
  export declare var InvocationConfigurationInput$: 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.1067.0",
4
+ "version": "3.1068.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",