@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
@@ -86,6 +86,12 @@ export declare const AgentRuntimeStatus: {
86
86
  };
87
87
  export type AgentRuntimeStatus =
88
88
  (typeof AgentRuntimeStatus)[keyof typeof AgentRuntimeStatus];
89
+ export declare const SecretSourceType: {
90
+ readonly EXTERNAL: "EXTERNAL";
91
+ readonly MANAGED: "MANAGED";
92
+ };
93
+ export type SecretSourceType =
94
+ (typeof SecretSourceType)[keyof typeof SecretSourceType];
89
95
  export declare const BrowserProfileStatus: {
90
96
  readonly DELETED: "DELETED";
91
97
  readonly DELETING: "DELETING";
@@ -315,6 +321,19 @@ export declare const KeyType: {
315
321
  readonly ServiceManagedKey: "ServiceManagedKey";
316
322
  };
317
323
  export type KeyType = (typeof KeyType)[keyof typeof KeyType];
324
+ export declare const HarnessBedrockApiFormat: {
325
+ readonly CHAT_COMPLETIONS: "chat_completions";
326
+ readonly CONVERSE_STREAM: "converse_stream";
327
+ readonly RESPONSES: "responses";
328
+ };
329
+ export type HarnessBedrockApiFormat =
330
+ (typeof HarnessBedrockApiFormat)[keyof typeof HarnessBedrockApiFormat];
331
+ export declare const HarnessOpenAiApiFormat: {
332
+ readonly CHAT_COMPLETIONS: "chat_completions";
333
+ readonly RESPONSES: "responses";
334
+ };
335
+ export type HarnessOpenAiApiFormat =
336
+ (typeof HarnessOpenAiApiFormat)[keyof typeof HarnessOpenAiApiFormat];
318
337
  export declare const HarnessToolType: {
319
338
  readonly AGENTCORE_BROWSER: "agentcore_browser";
320
339
  readonly AGENTCORE_CODE_INTERPRETER: "agentcore_code_interpreter";
@@ -27,6 +27,8 @@ import {
27
27
  GatewayProtocolType,
28
28
  GatewayRuleStatus,
29
29
  GatewayStatus,
30
+ HarnessBedrockApiFormat,
31
+ HarnessOpenAiApiFormat,
30
32
  HarnessStatus,
31
33
  HarnessToolType,
32
34
  HarnessTruncationStrategy,
@@ -34,13 +36,13 @@ import {
34
36
  IncludedData,
35
37
  KeyType,
36
38
  ListingMode,
37
- MetadataValueType,
38
39
  NetworkMode,
39
40
  OAuthGrantType,
40
41
  PrincipalMatchOperator,
41
42
  ResourceType,
42
43
  RestApiMethod,
43
44
  SearchType,
45
+ SecretSourceType,
44
46
  ServerProtocol,
45
47
  TargetStatus,
46
48
  } from "./enums";
@@ -665,9 +667,15 @@ export interface AgentSkillsDescriptor {
665
667
  skillMd?: SkillMdDefinition | undefined;
666
668
  skillDefinition?: SkillDefinition | undefined;
667
669
  }
670
+ export interface SecretReference {
671
+ secretId: string | undefined;
672
+ jsonKey: string | undefined;
673
+ }
668
674
  export interface CreateApiKeyCredentialProviderRequest {
669
675
  name: string | undefined;
670
- apiKey: string | undefined;
676
+ apiKey?: string | undefined;
677
+ apiKeySecretConfig?: SecretReference | undefined;
678
+ apiKeySecretSource?: SecretSourceType | undefined;
671
679
  tags?: Record<string, string> | undefined;
672
680
  }
673
681
  export interface Secret {
@@ -675,6 +683,8 @@ export interface Secret {
675
683
  }
676
684
  export interface CreateApiKeyCredentialProviderResponse {
677
685
  apiKeySecretArn: Secret | undefined;
686
+ apiKeySecretJsonKey?: string | undefined;
687
+ apiKeySecretSource?: SecretSourceType | undefined;
678
688
  name: string | undefined;
679
689
  credentialProviderArn: string | undefined;
680
690
  }
@@ -687,6 +697,8 @@ export interface GetApiKeyCredentialProviderRequest {
687
697
  }
688
698
  export interface GetApiKeyCredentialProviderResponse {
689
699
  apiKeySecretArn: Secret | undefined;
700
+ apiKeySecretJsonKey?: string | undefined;
701
+ apiKeySecretSource?: SecretSourceType | undefined;
690
702
  name: string | undefined;
691
703
  credentialProviderArn: string | undefined;
692
704
  createdTime: Date | undefined;
@@ -708,10 +720,14 @@ export interface ListApiKeyCredentialProvidersResponse {
708
720
  }
709
721
  export interface UpdateApiKeyCredentialProviderRequest {
710
722
  name: string | undefined;
711
- apiKey: string | undefined;
723
+ apiKey?: string | undefined;
724
+ apiKeySecretConfig?: SecretReference | undefined;
725
+ apiKeySecretSource?: SecretSourceType | undefined;
712
726
  }
713
727
  export interface UpdateApiKeyCredentialProviderResponse {
714
728
  apiKeySecretArn: Secret | undefined;
729
+ apiKeySecretJsonKey?: string | undefined;
730
+ apiKeySecretSource?: SecretSourceType | undefined;
715
731
  name: string | undefined;
716
732
  credentialProviderArn: string | undefined;
717
733
  createdTime: Date | undefined;
@@ -1035,6 +1051,7 @@ export interface ConfigurationBundleSummary {
1035
1051
  bundleId: string | undefined;
1036
1052
  bundleName: string | undefined;
1037
1053
  description?: string | undefined;
1054
+ createdAt?: Date | undefined;
1038
1055
  }
1039
1056
  export interface ListConfigurationBundlesResponse {
1040
1057
  bundles: ConfigurationBundleSummary[] | undefined;
@@ -2059,6 +2076,8 @@ export interface HarnessBedrockModelConfig {
2059
2076
  maxTokens?: number | undefined;
2060
2077
  temperature?: number | undefined;
2061
2078
  topP?: number | undefined;
2079
+ apiFormat?: HarnessBedrockApiFormat | undefined;
2080
+ additionalParams?: __DocumentType | undefined;
2062
2081
  }
2063
2082
  export interface HarnessGeminiModelConfig {
2064
2083
  modelId: string | undefined;
@@ -2068,16 +2087,28 @@ export interface HarnessGeminiModelConfig {
2068
2087
  topP?: number | undefined;
2069
2088
  topK?: number | undefined;
2070
2089
  }
2090
+ export interface HarnessLiteLlmModelConfig {
2091
+ modelId: string | undefined;
2092
+ apiKeyArn?: string | undefined;
2093
+ apiBase?: string | undefined;
2094
+ maxTokens?: number | undefined;
2095
+ temperature?: number | undefined;
2096
+ topP?: number | undefined;
2097
+ additionalParams?: __DocumentType | undefined;
2098
+ }
2071
2099
  export interface HarnessOpenAiModelConfig {
2072
2100
  modelId: string | undefined;
2073
2101
  apiKeyArn: string | undefined;
2074
2102
  maxTokens?: number | undefined;
2075
2103
  temperature?: number | undefined;
2076
2104
  topP?: number | undefined;
2105
+ apiFormat?: HarnessOpenAiApiFormat | undefined;
2106
+ additionalParams?: __DocumentType | undefined;
2077
2107
  }
2078
2108
  export type HarnessModelConfiguration =
2079
2109
  | HarnessModelConfiguration.BedrockModelConfigMember
2080
2110
  | HarnessModelConfiguration.GeminiModelConfigMember
2111
+ | HarnessModelConfiguration.LiteLlmModelConfigMember
2081
2112
  | HarnessModelConfiguration.OpenAiModelConfigMember
2082
2113
  | HarnessModelConfiguration.$UnknownMember;
2083
2114
  export declare namespace HarnessModelConfiguration {
@@ -2085,47 +2116,91 @@ export declare namespace HarnessModelConfiguration {
2085
2116
  bedrockModelConfig: HarnessBedrockModelConfig;
2086
2117
  openAiModelConfig?: never;
2087
2118
  geminiModelConfig?: never;
2119
+ liteLlmModelConfig?: never;
2088
2120
  $unknown?: never;
2089
2121
  }
2090
2122
  interface OpenAiModelConfigMember {
2091
2123
  bedrockModelConfig?: never;
2092
2124
  openAiModelConfig: HarnessOpenAiModelConfig;
2093
2125
  geminiModelConfig?: never;
2126
+ liteLlmModelConfig?: never;
2094
2127
  $unknown?: never;
2095
2128
  }
2096
2129
  interface GeminiModelConfigMember {
2097
2130
  bedrockModelConfig?: never;
2098
2131
  openAiModelConfig?: never;
2099
2132
  geminiModelConfig: HarnessGeminiModelConfig;
2133
+ liteLlmModelConfig?: never;
2134
+ $unknown?: never;
2135
+ }
2136
+ interface LiteLlmModelConfigMember {
2137
+ bedrockModelConfig?: never;
2138
+ openAiModelConfig?: never;
2139
+ geminiModelConfig?: never;
2140
+ liteLlmModelConfig: HarnessLiteLlmModelConfig;
2100
2141
  $unknown?: never;
2101
2142
  }
2102
2143
  interface $UnknownMember {
2103
2144
  bedrockModelConfig?: never;
2104
2145
  openAiModelConfig?: never;
2105
2146
  geminiModelConfig?: never;
2147
+ liteLlmModelConfig?: never;
2106
2148
  $unknown: [string, any];
2107
2149
  }
2108
2150
  interface Visitor<T> {
2109
2151
  bedrockModelConfig: (value: HarnessBedrockModelConfig) => T;
2110
2152
  openAiModelConfig: (value: HarnessOpenAiModelConfig) => T;
2111
2153
  geminiModelConfig: (value: HarnessGeminiModelConfig) => T;
2154
+ liteLlmModelConfig: (value: HarnessLiteLlmModelConfig) => T;
2112
2155
  _: (name: string, value: any) => T;
2113
2156
  }
2114
2157
  }
2158
+ export interface HarnessSkillGitAuth {
2159
+ credentialArn: string | undefined;
2160
+ username?: string | undefined;
2161
+ }
2162
+ export interface HarnessSkillGitSource {
2163
+ url: string | undefined;
2164
+ path?: string | undefined;
2165
+ auth?: HarnessSkillGitAuth | undefined;
2166
+ }
2167
+ export interface HarnessSkillS3Source {
2168
+ uri: string | undefined;
2169
+ }
2115
2170
  export type HarnessSkill =
2171
+ | HarnessSkill.GitMember
2116
2172
  | HarnessSkill.PathMember
2173
+ | HarnessSkill.S3Member
2117
2174
  | HarnessSkill.$UnknownMember;
2118
2175
  export declare namespace HarnessSkill {
2119
2176
  interface PathMember {
2120
2177
  path: string;
2178
+ s3?: never;
2179
+ git?: never;
2180
+ $unknown?: never;
2181
+ }
2182
+ interface S3Member {
2183
+ path?: never;
2184
+ s3: HarnessSkillS3Source;
2185
+ git?: never;
2186
+ $unknown?: never;
2187
+ }
2188
+ interface GitMember {
2189
+ path?: never;
2190
+ s3?: never;
2191
+ git: HarnessSkillGitSource;
2121
2192
  $unknown?: never;
2122
2193
  }
2123
2194
  interface $UnknownMember {
2124
2195
  path?: never;
2196
+ s3?: never;
2197
+ git?: never;
2125
2198
  $unknown: [string, any];
2126
2199
  }
2127
2200
  interface Visitor<T> {
2128
2201
  path: (value: string) => T;
2202
+ s3: (value: HarnessSkillS3Source) => T;
2203
+ git: (value: HarnessSkillGitSource) => T;
2129
2204
  _: (name: string, value: any) => T;
2130
2205
  }
2131
2206
  }
@@ -2452,23 +2527,3 @@ export interface ListTagsForResourceRequest {
2452
2527
  export interface ListTagsForResourceResponse {
2453
2528
  tags?: Record<string, string> | undefined;
2454
2529
  }
2455
- export interface IndexedKey {
2456
- key: string | undefined;
2457
- type: MetadataValueType | undefined;
2458
- }
2459
- export interface EpisodicOverrideConsolidationConfigurationInput {
2460
- appendToPrompt: string | undefined;
2461
- modelId: string | undefined;
2462
- }
2463
- export interface EpisodicOverrideExtractionConfigurationInput {
2464
- appendToPrompt: string | undefined;
2465
- modelId: string | undefined;
2466
- }
2467
- export interface NumberValidation {
2468
- minValue?: number | undefined;
2469
- maxValue?: number | undefined;
2470
- }
2471
- export interface StringListValidation {
2472
- allowedValues?: string[] | undefined;
2473
- maxItems?: number | undefined;
2474
- }
@@ -30,6 +30,7 @@ import {
30
30
  RegistryRecordOAuthGrantType,
31
31
  RegistryRecordStatus,
32
32
  RegistryStatus,
33
+ SecretSourceType,
33
34
  Status,
34
35
  SynchronizationType,
35
36
  } from "./enums";
@@ -37,20 +38,36 @@ import {
37
38
  A2aDescriptor,
38
39
  AgentSkillsDescriptor,
39
40
  AuthorizerConfiguration,
40
- EpisodicOverrideConsolidationConfigurationInput,
41
- EpisodicOverrideExtractionConfigurationInput,
42
- IndexedKey,
43
41
  KmsConfiguration,
44
- NumberValidation,
45
42
  PrivateEndpoint,
46
43
  PrivateEndpointOverride,
47
44
  Secret,
45
+ SecretReference,
48
46
  SkillDefinition,
49
47
  SkillMdDefinition,
50
- StringListValidation,
51
48
  UpdatedAuthorizerConfiguration,
52
49
  WorkloadIdentityDetails,
53
50
  } from "./models_0";
51
+ export interface IndexedKey {
52
+ key: string | undefined;
53
+ type: MetadataValueType | undefined;
54
+ }
55
+ export interface EpisodicOverrideConsolidationConfigurationInput {
56
+ appendToPrompt: string | undefined;
57
+ modelId: string | undefined;
58
+ }
59
+ export interface EpisodicOverrideExtractionConfigurationInput {
60
+ appendToPrompt: string | undefined;
61
+ modelId: string | undefined;
62
+ }
63
+ export interface NumberValidation {
64
+ minValue?: number | undefined;
65
+ maxValue?: number | undefined;
66
+ }
67
+ export interface StringListValidation {
68
+ allowedValues?: string[] | undefined;
69
+ maxItems?: number | undefined;
70
+ }
54
71
  export interface StringValidation {
55
72
  allowedValues: string[] | undefined;
56
73
  }
@@ -1007,7 +1024,9 @@ export interface UpdateMemoryOutput {
1007
1024
  }
1008
1025
  export interface AtlassianOauth2ProviderConfigInput {
1009
1026
  clientId: string | undefined;
1010
- clientSecret: string | undefined;
1027
+ clientSecret?: string | undefined;
1028
+ clientSecretConfig?: SecretReference | undefined;
1029
+ clientSecretSource?: SecretSourceType | undefined;
1011
1030
  }
1012
1031
  export interface Oauth2AuthorizationServerMetadata {
1013
1032
  issuer: string | undefined;
@@ -1056,42 +1075,58 @@ export interface CustomOauth2ProviderConfigInput {
1056
1075
  oauthDiscovery: Oauth2Discovery | undefined;
1057
1076
  clientId?: string | undefined;
1058
1077
  clientSecret?: string | undefined;
1059
- privateEndpoint?: PrivateEndpoint | undefined;
1060
- privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
1078
+ clientSecretConfig?: SecretReference | undefined;
1079
+ clientSecretSource?: SecretSourceType | undefined;
1061
1080
  onBehalfOfTokenExchangeConfig?: OnBehalfOfTokenExchangeConfigType | undefined;
1062
1081
  clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
1082
+ privateEndpoint?: PrivateEndpoint | undefined;
1083
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
1063
1084
  }
1064
1085
  export interface GithubOauth2ProviderConfigInput {
1065
1086
  clientId: string | undefined;
1066
- clientSecret: string | undefined;
1087
+ clientSecret?: string | undefined;
1088
+ clientSecretConfig?: SecretReference | undefined;
1089
+ clientSecretSource?: SecretSourceType | undefined;
1067
1090
  }
1068
1091
  export interface GoogleOauth2ProviderConfigInput {
1069
1092
  clientId: string | undefined;
1070
- clientSecret: string | undefined;
1093
+ clientSecret?: string | undefined;
1094
+ clientSecretConfig?: SecretReference | undefined;
1095
+ clientSecretSource?: SecretSourceType | undefined;
1071
1096
  }
1072
1097
  export interface IncludedOauth2ProviderConfigInput {
1073
1098
  clientId: string | undefined;
1074
- clientSecret: string | undefined;
1099
+ clientSecret?: string | undefined;
1100
+ clientSecretConfig?: SecretReference | undefined;
1101
+ clientSecretSource?: SecretSourceType | undefined;
1075
1102
  issuer?: string | undefined;
1076
1103
  authorizationEndpoint?: string | undefined;
1077
1104
  tokenEndpoint?: string | undefined;
1078
1105
  }
1079
1106
  export interface LinkedinOauth2ProviderConfigInput {
1080
1107
  clientId: string | undefined;
1081
- clientSecret: string | undefined;
1108
+ clientSecret?: string | undefined;
1109
+ clientSecretConfig?: SecretReference | undefined;
1110
+ clientSecretSource?: SecretSourceType | undefined;
1082
1111
  }
1083
1112
  export interface MicrosoftOauth2ProviderConfigInput {
1084
1113
  clientId: string | undefined;
1085
- clientSecret: string | undefined;
1114
+ clientSecret?: string | undefined;
1115
+ clientSecretConfig?: SecretReference | undefined;
1116
+ clientSecretSource?: SecretSourceType | undefined;
1086
1117
  tenantId?: string | undefined;
1087
1118
  }
1088
1119
  export interface SalesforceOauth2ProviderConfigInput {
1089
1120
  clientId: string | undefined;
1090
- clientSecret: string | undefined;
1121
+ clientSecret?: string | undefined;
1122
+ clientSecretConfig?: SecretReference | undefined;
1123
+ clientSecretSource?: SecretSourceType | undefined;
1091
1124
  }
1092
1125
  export interface SlackOauth2ProviderConfigInput {
1093
1126
  clientId: string | undefined;
1094
- clientSecret: string | undefined;
1127
+ clientSecret?: string | undefined;
1128
+ clientSecretConfig?: SecretReference | undefined;
1129
+ clientSecretSource?: SecretSourceType | undefined;
1095
1130
  }
1096
1131
  export type Oauth2ProviderConfigInput =
1097
1132
  | Oauth2ProviderConfigInput.AtlassianOauth2ProviderConfigMember
@@ -1451,6 +1486,8 @@ export declare namespace Oauth2ProviderConfigOutput {
1451
1486
  }
1452
1487
  export interface CreateOauth2CredentialProviderResponse {
1453
1488
  clientSecretArn: Secret | undefined;
1489
+ clientSecretJsonKey?: string | undefined;
1490
+ clientSecretSource?: SecretSourceType | undefined;
1454
1491
  name: string | undefined;
1455
1492
  credentialProviderArn: string | undefined;
1456
1493
  callbackUrl?: string | undefined;
@@ -1466,6 +1503,8 @@ export interface GetOauth2CredentialProviderRequest {
1466
1503
  }
1467
1504
  export interface GetOauth2CredentialProviderResponse {
1468
1505
  clientSecretArn: Secret | undefined;
1506
+ clientSecretJsonKey?: string | undefined;
1507
+ clientSecretSource?: SecretSourceType | undefined;
1469
1508
  name: string | undefined;
1470
1509
  credentialProviderArn: string | undefined;
1471
1510
  credentialProviderVendor: CredentialProviderVendorType | undefined;
@@ -1498,6 +1537,8 @@ export interface UpdateOauth2CredentialProviderRequest {
1498
1537
  }
1499
1538
  export interface UpdateOauth2CredentialProviderResponse {
1500
1539
  clientSecretArn: Secret | undefined;
1540
+ clientSecretJsonKey?: string | undefined;
1541
+ clientSecretSource?: SecretSourceType | undefined;
1501
1542
  name: string | undefined;
1502
1543
  credentialProviderVendor: CredentialProviderVendorType | undefined;
1503
1544
  credentialProviderArn: string | undefined;
@@ -1690,13 +1731,21 @@ export interface UpdateOnlineEvaluationConfigResponse {
1690
1731
  }
1691
1732
  export interface CoinbaseCdpConfigurationInput {
1692
1733
  apiKeyId: string | undefined;
1693
- apiKeySecret: string | undefined;
1694
- walletSecret: string | undefined;
1734
+ apiKeySecret?: string | undefined;
1735
+ apiKeySecretSource?: SecretSourceType | undefined;
1736
+ apiKeySecretConfig?: SecretReference | undefined;
1737
+ walletSecret?: string | undefined;
1738
+ walletSecretSource?: SecretSourceType | undefined;
1739
+ walletSecretConfig?: SecretReference | undefined;
1695
1740
  }
1696
1741
  export interface StripePrivyConfigurationInput {
1697
1742
  appId: string | undefined;
1698
- appSecret: string | undefined;
1699
- authorizationPrivateKey: string | undefined;
1743
+ appSecret?: string | undefined;
1744
+ appSecretSource?: SecretSourceType | undefined;
1745
+ appSecretConfig?: SecretReference | undefined;
1746
+ authorizationPrivateKey?: string | undefined;
1747
+ authorizationPrivateKeySource?: SecretSourceType | undefined;
1748
+ authorizationPrivateKeyConfig?: SecretReference | undefined;
1700
1749
  authorizationId: string | undefined;
1701
1750
  }
1702
1751
  export type PaymentProviderConfigurationInput =
@@ -1734,12 +1783,20 @@ export interface CreatePaymentCredentialProviderRequest {
1734
1783
  export interface CoinbaseCdpConfigurationOutput {
1735
1784
  apiKeyId: string | undefined;
1736
1785
  apiKeySecretArn: Secret | undefined;
1786
+ apiKeySecretJsonKey?: string | undefined;
1787
+ apiKeySecretSource?: SecretSourceType | undefined;
1737
1788
  walletSecretArn: Secret | undefined;
1789
+ walletSecretJsonKey?: string | undefined;
1790
+ walletSecretSource?: SecretSourceType | undefined;
1738
1791
  }
1739
1792
  export interface StripePrivyConfigurationOutput {
1740
1793
  appId: string | undefined;
1741
1794
  appSecretArn: Secret | undefined;
1795
+ appSecretJsonKey?: string | undefined;
1796
+ appSecretSource?: SecretSourceType | undefined;
1742
1797
  authorizationPrivateKeyArn: Secret | undefined;
1798
+ authorizationPrivateKeyJsonKey?: string | undefined;
1799
+ authorizationPrivateKeySource?: SecretSourceType | undefined;
1743
1800
  authorizationId: string | undefined;
1744
1801
  }
1745
1802
  export type PaymentProviderConfigurationOutput =
@@ -2779,21 +2836,3 @@ export interface CreateWorkloadIdentityResponse {
2779
2836
  workloadIdentityArn: string | undefined;
2780
2837
  allowedResourceOauth2ReturnUrls?: string[] | undefined;
2781
2838
  }
2782
- export interface DeleteWorkloadIdentityRequest {
2783
- name: string | undefined;
2784
- }
2785
- export interface DeleteWorkloadIdentityResponse {}
2786
- export interface GetWorkloadIdentityRequest {
2787
- name: string | undefined;
2788
- }
2789
- export interface GetWorkloadIdentityResponse {
2790
- name: string | undefined;
2791
- workloadIdentityArn: string | undefined;
2792
- allowedResourceOauth2ReturnUrls?: string[] | undefined;
2793
- createdTime: Date | undefined;
2794
- lastUpdatedTime: Date | undefined;
2795
- }
2796
- export interface ListWorkloadIdentitiesRequest {
2797
- nextToken?: string | undefined;
2798
- maxResults?: number | undefined;
2799
- }
@@ -11,6 +11,24 @@ import {
11
11
  PrivateEndpoint,
12
12
  S3Configuration,
13
13
  } from "./models_0";
14
+ export interface DeleteWorkloadIdentityRequest {
15
+ name: string | undefined;
16
+ }
17
+ export interface DeleteWorkloadIdentityResponse {}
18
+ export interface GetWorkloadIdentityRequest {
19
+ name: string | undefined;
20
+ }
21
+ export interface GetWorkloadIdentityResponse {
22
+ name: string | undefined;
23
+ workloadIdentityArn: string | undefined;
24
+ allowedResourceOauth2ReturnUrls?: string[] | undefined;
25
+ createdTime: Date | undefined;
26
+ lastUpdatedTime: Date | undefined;
27
+ }
28
+ export interface ListWorkloadIdentitiesRequest {
29
+ nextToken?: string | undefined;
30
+ maxResults?: number | undefined;
31
+ }
14
32
  export interface WorkloadIdentityType {
15
33
  name: string | undefined;
16
34
  workloadIdentityArn: string | undefined;
@@ -271,8 +271,12 @@ export declare var HarnessAgentCoreRuntimeEnvironmentRequest$: StaticStructureSc
271
271
  export declare var HarnessBedrockModelConfig$: StaticStructureSchema;
272
272
  export declare var HarnessGeminiModelConfig$: StaticStructureSchema;
273
273
  export declare var HarnessInlineFunctionConfig$: StaticStructureSchema;
274
+ export declare var HarnessLiteLlmModelConfig$: StaticStructureSchema;
274
275
  export declare var HarnessOpenAiModelConfig$: StaticStructureSchema;
275
276
  export declare var HarnessRemoteMcpConfig$: StaticStructureSchema;
277
+ export declare var HarnessSkillGitAuth$: StaticStructureSchema;
278
+ export declare var HarnessSkillGitSource$: StaticStructureSchema;
279
+ export declare var HarnessSkillS3Source$: StaticStructureSchema;
276
280
  export declare var HarnessSlidingWindowConfiguration$: StaticStructureSchema;
277
281
  export declare var HarnessSummarizationConfiguration$: StaticStructureSchema;
278
282
  export declare var HarnessSummary$: StaticStructureSchema;
@@ -432,6 +436,7 @@ export declare var SalesforceOauth2ProviderConfigOutput$: StaticStructureSchema;
432
436
  export declare var SamplingConfig$: StaticStructureSchema;
433
437
  export declare var SchemaDefinition$: StaticStructureSchema;
434
438
  export declare var Secret$: StaticStructureSchema;
439
+ export declare var SecretReference$: StaticStructureSchema;
435
440
  export declare var SecretsManagerLocation$: StaticStructureSchema;
436
441
  export declare var SelfManagedConfiguration$: StaticStructureSchema;
437
442
  export declare var SelfManagedConfigurationInput$: 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.1055.0",
4
+ "version": "3.1057.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 client-bedrock-agentcore-control",
@@ -21,12 +21,12 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.14",
25
- "@aws-sdk/credential-provider-node": "^3.972.45",
24
+ "@aws-sdk/core": "^3.974.15",
25
+ "@aws-sdk/credential-provider-node": "^3.972.47",
26
26
  "@aws-sdk/types": "^3.973.9",
27
- "@smithy/core": "^3.24.3",
28
- "@smithy/fetch-http-handler": "^5.4.3",
29
- "@smithy/node-http-handler": "^4.7.3",
27
+ "@smithy/core": "^3.24.5",
28
+ "@smithy/fetch-http-handler": "^5.4.5",
29
+ "@smithy/node-http-handler": "^4.7.5",
30
30
  "@smithy/types": "^4.14.2",
31
31
  "tslib": "^2.6.2"
32
32
  },