@aws-sdk/client-bedrock-agentcore-control 3.1066.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.
Files changed (41) hide show
  1. package/dist-cjs/index.js +12 -0
  2. package/dist-cjs/schemas/schemas_0.js +75 -53
  3. package/dist-es/models/enums.js +10 -0
  4. package/dist-es/schemas/schemas_0.js +59 -37
  5. package/dist-types/commands/AddDatasetExamplesCommand.d.ts +1 -13
  6. package/dist-types/commands/CreateConfigurationBundleCommand.d.ts +1 -0
  7. package/dist-types/commands/CreateDatasetCommand.d.ts +1 -4
  8. package/dist-types/commands/CreateDatasetVersionCommand.d.ts +1 -12
  9. package/dist-types/commands/CreateMemoryCommand.d.ts +8 -1
  10. package/dist-types/commands/CreateOnlineEvaluationConfigCommand.d.ts +11 -1
  11. package/dist-types/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -25
  13. package/dist-types/commands/DeleteDatasetExamplesCommand.d.ts +1 -11
  14. package/dist-types/commands/DeleteMemoryCommand.d.ts +1 -1
  15. package/dist-types/commands/GetConfigurationBundleCommand.d.ts +1 -0
  16. package/dist-types/commands/GetConfigurationBundleVersionCommand.d.ts +1 -0
  17. package/dist-types/commands/GetDatasetCommand.d.ts +1 -19
  18. package/dist-types/commands/GetMemoryCommand.d.ts +3 -1
  19. package/dist-types/commands/GetOnlineEvaluationConfigCommand.d.ts +11 -1
  20. package/dist-types/commands/ListDatasetExamplesCommand.d.ts +1 -9
  21. package/dist-types/commands/ListDatasetVersionsCommand.d.ts +1 -4
  22. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListMemoriesCommand.d.ts +1 -1
  24. package/dist-types/commands/ListOnlineEvaluationConfigsCommand.d.ts +10 -0
  25. package/dist-types/commands/UpdateConfigurationBundleCommand.d.ts +1 -0
  26. package/dist-types/commands/UpdateDatasetCommand.d.ts +1 -7
  27. package/dist-types/commands/UpdateDatasetExamplesCommand.d.ts +1 -16
  28. package/dist-types/commands/UpdateMemoryCommand.d.ts +8 -1
  29. package/dist-types/commands/UpdateOnlineEvaluationConfigCommand.d.ts +10 -0
  30. package/dist-types/models/enums.d.ts +37 -25
  31. package/dist-types/models/models_0.d.ts +55 -66
  32. package/dist-types/models/models_1.d.ts +72 -44
  33. package/dist-types/models/models_2.d.ts +40 -0
  34. package/dist-types/schemas/schemas_0.d.ts +2 -0
  35. package/dist-types/ts3.4/commands/CreateWorkloadIdentityCommand.d.ts +1 -1
  36. package/dist-types/ts3.4/models/enums.d.ts +14 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +4 -0
  38. package/dist-types/ts3.4/models/models_1.d.ts +19 -12
  39. package/dist-types/ts3.4/models/models_2.d.ts +10 -0
  40. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
  41. package/package.json +1 -1
@@ -1,10 +1,12 @@
1
1
  import {
2
2
  ActorTokenContentType,
3
3
  ClientAuthenticationMethodType,
4
+ ClusteringFrequency,
4
5
  ContentLevel,
5
6
  ContentType,
6
7
  CredentialProviderVendorType,
7
8
  DescriptorType,
9
+ ExtractionType,
8
10
  FilterOperator,
9
11
  FindingType,
10
12
  MemoryStatus,
@@ -133,6 +135,7 @@ export declare namespace ExtractionConfig {
133
135
  export interface MetadataSchemaEntry {
134
136
  key: string | undefined;
135
137
  type?: MetadataValueType | undefined;
138
+ extractionType?: ExtractionType | undefined;
136
139
  extractionConfig?: ExtractionConfig | undefined;
137
140
  }
138
141
  export interface MemoryRecordSchema {
@@ -1548,6 +1551,9 @@ export interface UpdateOauth2CredentialProviderResponse {
1548
1551
  lastUpdatedTime: Date | undefined;
1549
1552
  status?: Status | undefined;
1550
1553
  }
1554
+ export interface ClusteringConfig {
1555
+ frequencies: ClusteringFrequency[] | undefined;
1556
+ }
1551
1557
  export interface CloudWatchLogsInputConfig {
1552
1558
  logGroupNames: string[] | undefined;
1553
1559
  serviceNames: string[] | undefined;
@@ -1586,6 +1592,9 @@ export declare namespace EvaluatorReference {
1586
1592
  _: (name: string, value: any) => T;
1587
1593
  }
1588
1594
  }
1595
+ export interface Insight {
1596
+ insightId: string | undefined;
1597
+ }
1589
1598
  export type FilterValue =
1590
1599
  | FilterValue.BooleanValueMember
1591
1600
  | FilterValue.DoubleValueMember
@@ -1645,7 +1654,9 @@ export interface CreateOnlineEvaluationConfigRequest {
1645
1654
  description?: string | undefined;
1646
1655
  rule: Rule | undefined;
1647
1656
  dataSourceConfig: DataSourceConfig | undefined;
1648
- evaluators: EvaluatorReference[] | undefined;
1657
+ evaluators?: EvaluatorReference[] | undefined;
1658
+ insights?: Insight[] | undefined;
1659
+ clusteringConfig?: ClusteringConfig | undefined;
1649
1660
  evaluationExecutionRoleArn: string | undefined;
1650
1661
  enableOnCreate: boolean | undefined;
1651
1662
  tags?: Record<string, string> | undefined;
@@ -1683,7 +1694,9 @@ export interface GetOnlineEvaluationConfigResponse {
1683
1694
  description?: string | undefined;
1684
1695
  rule: Rule | undefined;
1685
1696
  dataSourceConfig: DataSourceConfig | undefined;
1686
- evaluators: EvaluatorReference[] | undefined;
1697
+ evaluators?: EvaluatorReference[] | undefined;
1698
+ insights?: Insight[] | undefined;
1699
+ clusteringConfig?: ClusteringConfig | undefined;
1687
1700
  outputConfig?: OutputConfig | undefined;
1688
1701
  evaluationExecutionRoleArn?: string | undefined;
1689
1702
  status: OnlineEvaluationConfigStatus | undefined;
@@ -1706,6 +1719,8 @@ export interface OnlineEvaluationConfigSummary {
1706
1719
  createdAt: Date | undefined;
1707
1720
  updatedAt: Date | undefined;
1708
1721
  failureReason?: string | undefined;
1722
+ insights?: Insight[] | undefined;
1723
+ clusteringConfig?: ClusteringConfig | undefined;
1709
1724
  }
1710
1725
  export interface ListOnlineEvaluationConfigsResponse {
1711
1726
  onlineEvaluationConfigs: OnlineEvaluationConfigSummary[] | undefined;
@@ -1718,6 +1733,8 @@ export interface UpdateOnlineEvaluationConfigRequest {
1718
1733
  rule?: Rule | undefined;
1719
1734
  dataSourceConfig?: DataSourceConfig | undefined;
1720
1735
  evaluators?: EvaluatorReference[] | undefined;
1736
+ insights?: Insight[] | undefined;
1737
+ clusteringConfig?: ClusteringConfig | undefined;
1721
1738
  evaluationExecutionRoleArn?: string | undefined;
1722
1739
  executionStatus?: OnlineEvaluationExecutionStatus | undefined;
1723
1740
  }
@@ -2826,13 +2843,3 @@ export interface UntagResourceRequest {
2826
2843
  tagKeys: string[] | undefined;
2827
2844
  }
2828
2845
  export interface UntagResourceResponse {}
2829
- export interface CreateWorkloadIdentityRequest {
2830
- name: string | undefined;
2831
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2832
- tags?: Record<string, string> | undefined;
2833
- }
2834
- export interface CreateWorkloadIdentityResponse {
2835
- name: string | undefined;
2836
- workloadIdentityArn: string | undefined;
2837
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2838
- }
@@ -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.1066.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",