@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.
- package/dist-cjs/index.js +16 -0
- package/dist-cjs/schemas/schemas_0.js +135 -80
- package/dist-es/models/enums.js +13 -0
- package/dist-es/schemas/schemas_0.js +124 -69
- package/dist-types/commands/CreateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/CreateHarnessCommand.d.ts +48 -0
- package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/CreatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/commands/DeleteHarnessCommand.d.ts +24 -0
- package/dist-types/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/GetApiKeyCredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetHarnessCommand.d.ts +24 -0
- package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +2 -0
- package/dist-types/commands/GetPaymentCredentialProviderCommand.d.ts +8 -0
- package/dist-types/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/commands/ListConfigurationBundlesCommand.d.ts +1 -0
- package/dist-types/commands/ListWorkloadIdentitiesCommand.d.ts +1 -2
- package/dist-types/commands/UpdateApiKeyCredentialProviderCommand.d.ts +8 -1
- package/dist-types/commands/UpdateHarnessCommand.d.ts +48 -0
- package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +53 -18
- package/dist-types/commands/UpdatePaymentCredentialProviderCommand.d.ts +32 -4
- package/dist-types/models/enums.d.ts +52 -0
- package/dist-types/models/models_0.d.ts +228 -86
- package/dist-types/models/models_1.d.ts +298 -88
- package/dist-types/models/models_2.d.ts +70 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/DeleteWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetWorkloadIdentityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkloadIdentitiesCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +78 -23
- package/dist-types/ts3.4/models/models_1.d.ts +76 -37
- package/dist-types/ts3.4/models/models_2.d.ts +18 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +6 -6
|
@@ -1,5 +1,85 @@
|
|
|
1
|
-
import type { ActorTokenContentType, ClientAuthenticationMethodType, ContentLevel, ContentType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, Status, SynchronizationType } from "./enums";
|
|
2
|
-
import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration,
|
|
1
|
+
import type { ActorTokenContentType, ClientAuthenticationMethodType, ContentLevel, ContentType, CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, MemoryStatus, MemoryStrategyStatus, MemoryStrategyType, MemoryView, MetadataValueType, OnBehalfOfTokenExchangeGrantTypeType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, OverrideType, PaymentConnectorStatus, PaymentConnectorType, PaymentCredentialProviderVendorType, PaymentManagerStatus, PaymentsAuthorizerType, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SecretSourceType, Status, SynchronizationType } from "./enums";
|
|
2
|
+
import type { A2aDescriptor, AgentSkillsDescriptor, AuthorizerConfiguration, KmsConfiguration, PrivateEndpoint, PrivateEndpointOverride, Secret, SecretReference, SkillDefinition, SkillMdDefinition, UpdatedAuthorizerConfiguration, WorkloadIdentityDetails } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>A metadata key indexed for filtering.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface IndexedKey {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The metadata key name to index.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
key: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The data type of the indexed key.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
type: MetadataValueType | undefined;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* <p>Configurations for overriding the consolidation step of the episodic memory strategy.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface EpisodicOverrideConsolidationConfigurationInput {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The text to append to the prompt for the consolidation step of the episodic memory strategy.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
appendToPrompt: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The model ID to use for the consolidation step of the episodic memory strategy.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
modelId: string | undefined;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* <p>Configurations for overriding the extraction step of the episodic memory strategy.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface EpisodicOverrideExtractionConfigurationInput {
|
|
40
|
+
/**
|
|
41
|
+
* <p>The text to append to the prompt for the extraction step of the episodic memory strategy.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
appendToPrompt: string | undefined;
|
|
45
|
+
/**
|
|
46
|
+
* <p>The model ID to use for the extraction step of the episodic memory strategy.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
modelId: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>Validation for NUMBER fields.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export interface NumberValidation {
|
|
56
|
+
/**
|
|
57
|
+
* <p>Minimum allowed value.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
minValue?: number | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>Maximum allowed value.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
maxValue?: number | undefined;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* <p>Validation for STRINGLIST fields.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export interface StringListValidation {
|
|
72
|
+
/**
|
|
73
|
+
* <p>Allowed values for items in this STRINGLIST field.</p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
allowedValues?: string[] | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* <p>Maximum number of items in the string list.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
maxItems?: number | undefined;
|
|
82
|
+
}
|
|
3
83
|
/**
|
|
4
84
|
* <p>Validation for STRING fields.</p>
|
|
5
85
|
* @public
|
|
@@ -2328,7 +2408,17 @@ export interface AtlassianOauth2ProviderConfigInput {
|
|
|
2328
2408
|
* <p>The client secret for the Atlassian OAuth2 provider. This secret is assigned by Atlassian and used along with the client ID to authenticate your application.</p>
|
|
2329
2409
|
* @public
|
|
2330
2410
|
*/
|
|
2331
|
-
clientSecret
|
|
2411
|
+
clientSecret?: string | undefined;
|
|
2412
|
+
/**
|
|
2413
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2414
|
+
* @public
|
|
2415
|
+
*/
|
|
2416
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2417
|
+
/**
|
|
2418
|
+
* <p>The source type of the client secret for the Atlassian OAuth2 provider. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2419
|
+
* @public
|
|
2420
|
+
*/
|
|
2421
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2332
2422
|
}
|
|
2333
2423
|
/**
|
|
2334
2424
|
* <p>Contains the authorization server metadata for an OAuth2 provider.</p>
|
|
@@ -2459,15 +2549,15 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
2459
2549
|
*/
|
|
2460
2550
|
clientSecret?: string | undefined;
|
|
2461
2551
|
/**
|
|
2462
|
-
* <p>
|
|
2552
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2463
2553
|
* @public
|
|
2464
2554
|
*/
|
|
2465
|
-
|
|
2555
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2466
2556
|
/**
|
|
2467
|
-
* <p>The
|
|
2557
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2468
2558
|
* @public
|
|
2469
2559
|
*/
|
|
2470
|
-
|
|
2560
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2471
2561
|
/**
|
|
2472
2562
|
* <p>The configuration for on-behalf-of token exchange. This enables authentication flows that use RFC 8693 token exchange or RFC 7523 JWT authorization grants.</p>
|
|
2473
2563
|
* @public
|
|
@@ -2478,6 +2568,16 @@ export interface CustomOauth2ProviderConfigInput {
|
|
|
2478
2568
|
* @public
|
|
2479
2569
|
*/
|
|
2480
2570
|
clientAuthenticationMethod?: ClientAuthenticationMethodType | undefined;
|
|
2571
|
+
/**
|
|
2572
|
+
* <p>The default private endpoint for the custom OAuth2 provider, enabling secure connectivity through a VPC Lattice resource configuration.</p>
|
|
2573
|
+
* @public
|
|
2574
|
+
*/
|
|
2575
|
+
privateEndpoint?: PrivateEndpoint | undefined;
|
|
2576
|
+
/**
|
|
2577
|
+
* <p>The private endpoint overrides for the custom OAuth2 provider configuration.</p>
|
|
2578
|
+
* @public
|
|
2579
|
+
*/
|
|
2580
|
+
privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
|
|
2481
2581
|
}
|
|
2482
2582
|
/**
|
|
2483
2583
|
* <p>Input configuration for a GitHub OAuth2 provider.</p>
|
|
@@ -2493,7 +2593,17 @@ export interface GithubOauth2ProviderConfigInput {
|
|
|
2493
2593
|
* <p>The client secret for the GitHub OAuth2 provider.</p>
|
|
2494
2594
|
* @public
|
|
2495
2595
|
*/
|
|
2496
|
-
clientSecret
|
|
2596
|
+
clientSecret?: string | undefined;
|
|
2597
|
+
/**
|
|
2598
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2599
|
+
* @public
|
|
2600
|
+
*/
|
|
2601
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2602
|
+
/**
|
|
2603
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2604
|
+
* @public
|
|
2605
|
+
*/
|
|
2606
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2497
2607
|
}
|
|
2498
2608
|
/**
|
|
2499
2609
|
* <p>Input configuration for a Google OAuth2 provider.</p>
|
|
@@ -2509,7 +2619,17 @@ export interface GoogleOauth2ProviderConfigInput {
|
|
|
2509
2619
|
* <p>The client secret for the Google OAuth2 provider.</p>
|
|
2510
2620
|
* @public
|
|
2511
2621
|
*/
|
|
2512
|
-
clientSecret
|
|
2622
|
+
clientSecret?: string | undefined;
|
|
2623
|
+
/**
|
|
2624
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2625
|
+
* @public
|
|
2626
|
+
*/
|
|
2627
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2628
|
+
/**
|
|
2629
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2630
|
+
* @public
|
|
2631
|
+
*/
|
|
2632
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2513
2633
|
}
|
|
2514
2634
|
/**
|
|
2515
2635
|
* <p>Configuration settings for connecting to a supported OAuth2 provider. This includes client credentials and OAuth2 discovery information for providers that have built-in support.</p>
|
|
@@ -2525,7 +2645,17 @@ export interface IncludedOauth2ProviderConfigInput {
|
|
|
2525
2645
|
* <p>The client secret for the supported OAuth2 provider. This secret is assigned by the OAuth2 provider and used along with the client ID to authenticate your application.</p>
|
|
2526
2646
|
* @public
|
|
2527
2647
|
*/
|
|
2528
|
-
clientSecret
|
|
2648
|
+
clientSecret?: string | undefined;
|
|
2649
|
+
/**
|
|
2650
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2651
|
+
* @public
|
|
2652
|
+
*/
|
|
2653
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2654
|
+
/**
|
|
2655
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2656
|
+
* @public
|
|
2657
|
+
*/
|
|
2658
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2529
2659
|
/**
|
|
2530
2660
|
* <p>Token issuer of your isolated OAuth2 application tenant. This URL identifies the authorization server that issues tokens for this provider.</p>
|
|
2531
2661
|
* @public
|
|
@@ -2556,7 +2686,17 @@ export interface LinkedinOauth2ProviderConfigInput {
|
|
|
2556
2686
|
* <p>The client secret for the LinkedIn OAuth2 provider. This secret is assigned by LinkedIn and used along with the client ID to authenticate your application.</p>
|
|
2557
2687
|
* @public
|
|
2558
2688
|
*/
|
|
2559
|
-
clientSecret
|
|
2689
|
+
clientSecret?: string | undefined;
|
|
2690
|
+
/**
|
|
2691
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2692
|
+
* @public
|
|
2693
|
+
*/
|
|
2694
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2695
|
+
/**
|
|
2696
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2697
|
+
* @public
|
|
2698
|
+
*/
|
|
2699
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2560
2700
|
}
|
|
2561
2701
|
/**
|
|
2562
2702
|
* <p>Input configuration for a Microsoft OAuth2 provider.</p>
|
|
@@ -2572,7 +2712,17 @@ export interface MicrosoftOauth2ProviderConfigInput {
|
|
|
2572
2712
|
* <p>The client secret for the Microsoft OAuth2 provider.</p>
|
|
2573
2713
|
* @public
|
|
2574
2714
|
*/
|
|
2575
|
-
clientSecret
|
|
2715
|
+
clientSecret?: string | undefined;
|
|
2716
|
+
/**
|
|
2717
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2718
|
+
* @public
|
|
2719
|
+
*/
|
|
2720
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2721
|
+
/**
|
|
2722
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2723
|
+
* @public
|
|
2724
|
+
*/
|
|
2725
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2576
2726
|
/**
|
|
2577
2727
|
* <p>The Microsoft Entra ID (formerly Azure AD) tenant ID for your organization. This identifies the specific tenant within Microsoft's identity platform where your application is registered.</p>
|
|
2578
2728
|
* @public
|
|
@@ -2593,7 +2743,17 @@ export interface SalesforceOauth2ProviderConfigInput {
|
|
|
2593
2743
|
* <p>The client secret for the Salesforce OAuth2 provider.</p>
|
|
2594
2744
|
* @public
|
|
2595
2745
|
*/
|
|
2596
|
-
clientSecret
|
|
2746
|
+
clientSecret?: string | undefined;
|
|
2747
|
+
/**
|
|
2748
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2749
|
+
* @public
|
|
2750
|
+
*/
|
|
2751
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2752
|
+
/**
|
|
2753
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2754
|
+
* @public
|
|
2755
|
+
*/
|
|
2756
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2597
2757
|
}
|
|
2598
2758
|
/**
|
|
2599
2759
|
* <p>Input configuration for a Slack OAuth2 provider.</p>
|
|
@@ -2609,7 +2769,17 @@ export interface SlackOauth2ProviderConfigInput {
|
|
|
2609
2769
|
* <p>The client secret for the Slack OAuth2 provider.</p>
|
|
2610
2770
|
* @public
|
|
2611
2771
|
*/
|
|
2612
|
-
clientSecret
|
|
2772
|
+
clientSecret?: string | undefined;
|
|
2773
|
+
/**
|
|
2774
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the client secret. This includes the secret ID and the JSON key used to extract the client secret value from the secret. Required when <code>clientSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
2775
|
+
* @public
|
|
2776
|
+
*/
|
|
2777
|
+
clientSecretConfig?: SecretReference | undefined;
|
|
2778
|
+
/**
|
|
2779
|
+
* <p>The source type of the client secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
2780
|
+
* @public
|
|
2781
|
+
*/
|
|
2782
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
2613
2783
|
}
|
|
2614
2784
|
/**
|
|
2615
2785
|
* <p>Contains the input configuration for an OAuth2 provider.</p>
|
|
@@ -3179,6 +3349,16 @@ export interface CreateOauth2CredentialProviderResponse {
|
|
|
3179
3349
|
* @public
|
|
3180
3350
|
*/
|
|
3181
3351
|
clientSecretArn: Secret | undefined;
|
|
3352
|
+
/**
|
|
3353
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3354
|
+
* @public
|
|
3355
|
+
*/
|
|
3356
|
+
clientSecretJsonKey?: string | undefined;
|
|
3357
|
+
/**
|
|
3358
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3359
|
+
* @public
|
|
3360
|
+
*/
|
|
3361
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3182
3362
|
/**
|
|
3183
3363
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3184
3364
|
* @public
|
|
@@ -3239,6 +3419,16 @@ export interface GetOauth2CredentialProviderResponse {
|
|
|
3239
3419
|
* @public
|
|
3240
3420
|
*/
|
|
3241
3421
|
clientSecretArn: Secret | undefined;
|
|
3422
|
+
/**
|
|
3423
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3424
|
+
* @public
|
|
3425
|
+
*/
|
|
3426
|
+
clientSecretJsonKey?: string | undefined;
|
|
3427
|
+
/**
|
|
3428
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3429
|
+
* @public
|
|
3430
|
+
*/
|
|
3431
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3242
3432
|
/**
|
|
3243
3433
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3244
3434
|
* @public
|
|
@@ -3375,6 +3565,16 @@ export interface UpdateOauth2CredentialProviderResponse {
|
|
|
3375
3565
|
* @public
|
|
3376
3566
|
*/
|
|
3377
3567
|
clientSecretArn: Secret | undefined;
|
|
3568
|
+
/**
|
|
3569
|
+
* <p>The JSON key used to extract the client secret value from the AWS Secrets Manager secret.</p>
|
|
3570
|
+
* @public
|
|
3571
|
+
*/
|
|
3572
|
+
clientSecretJsonKey?: string | undefined;
|
|
3573
|
+
/**
|
|
3574
|
+
* <p>The source type of the client secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
3575
|
+
* @public
|
|
3576
|
+
*/
|
|
3577
|
+
clientSecretSource?: SecretSourceType | undefined;
|
|
3378
3578
|
/**
|
|
3379
3579
|
* <p>The name of the OAuth2 credential provider.</p>
|
|
3380
3580
|
* @public
|
|
@@ -4023,12 +4223,32 @@ export interface CoinbaseCdpConfigurationInput {
|
|
|
4023
4223
|
* <p>The API key secret provided by Coinbase Developer Platform.</p>
|
|
4024
4224
|
* @public
|
|
4025
4225
|
*/
|
|
4026
|
-
apiKeySecret
|
|
4226
|
+
apiKeySecret?: string | undefined;
|
|
4227
|
+
/**
|
|
4228
|
+
* <p>The source type of the API key secret for the Coinbase Developer Platform. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4229
|
+
* @public
|
|
4230
|
+
*/
|
|
4231
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
4232
|
+
/**
|
|
4233
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the API key secret. This includes the secret ID and the JSON key used to extract the API key secret value from the secret. Required when <code>apiKeySecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4234
|
+
* @public
|
|
4235
|
+
*/
|
|
4236
|
+
apiKeySecretConfig?: SecretReference | undefined;
|
|
4027
4237
|
/**
|
|
4028
4238
|
* <p>The wallet secret provided by Coinbase Developer Platform.</p>
|
|
4029
4239
|
* @public
|
|
4030
4240
|
*/
|
|
4031
|
-
walletSecret
|
|
4241
|
+
walletSecret?: string | undefined;
|
|
4242
|
+
/**
|
|
4243
|
+
* <p>The source type of the wallet secret for the Coinbase Developer Platform. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4244
|
+
* @public
|
|
4245
|
+
*/
|
|
4246
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
4247
|
+
/**
|
|
4248
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the wallet secret. This includes the secret ID and the JSON key used to extract the wallet secret value from the secret. Required when <code>walletSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4249
|
+
* @public
|
|
4250
|
+
*/
|
|
4251
|
+
walletSecretConfig?: SecretReference | undefined;
|
|
4032
4252
|
}
|
|
4033
4253
|
/**
|
|
4034
4254
|
* <p>Stripe Privy configuration — credentials provided by Stripe and Privy.</p>
|
|
@@ -4044,12 +4264,32 @@ export interface StripePrivyConfigurationInput {
|
|
|
4044
4264
|
* <p>The app secret provided by Privy.</p>
|
|
4045
4265
|
* @public
|
|
4046
4266
|
*/
|
|
4047
|
-
appSecret
|
|
4267
|
+
appSecret?: string | undefined;
|
|
4268
|
+
/**
|
|
4269
|
+
* <p>The source type of the app secret. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4270
|
+
* @public
|
|
4271
|
+
*/
|
|
4272
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
4273
|
+
/**
|
|
4274
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the app secret. This includes the secret ID and the JSON key used to extract the app secret value from the secret. Required when <code>appSecretSource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4275
|
+
* @public
|
|
4276
|
+
*/
|
|
4277
|
+
appSecretConfig?: SecretReference | undefined;
|
|
4048
4278
|
/**
|
|
4049
4279
|
* <p>The authorization private key for the Stripe Privy integration.</p>
|
|
4050
4280
|
* @public
|
|
4051
4281
|
*/
|
|
4052
|
-
authorizationPrivateKey
|
|
4282
|
+
authorizationPrivateKey?: string | undefined;
|
|
4283
|
+
/**
|
|
4284
|
+
* <p>The source type of the authorization private key. Use <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if you manage the secret yourself in AWS Secrets Manager.</p>
|
|
4285
|
+
* @public
|
|
4286
|
+
*/
|
|
4287
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
4288
|
+
/**
|
|
4289
|
+
* <p>A reference to the AWS Secrets Manager secret that stores the authorization private key. This includes the secret ID and the JSON key used to extract the authorization private key value from the secret. Required when <code>authorizationPrivateKeySource</code> is set to <code>EXTERNAL</code>.</p>
|
|
4290
|
+
* @public
|
|
4291
|
+
*/
|
|
4292
|
+
authorizationPrivateKeyConfig?: SecretReference | undefined;
|
|
4053
4293
|
/**
|
|
4054
4294
|
* <p>The authorization ID for the Stripe Privy integration.</p>
|
|
4055
4295
|
* @public
|
|
@@ -4141,11 +4381,31 @@ export interface CoinbaseCdpConfigurationOutput {
|
|
|
4141
4381
|
* @public
|
|
4142
4382
|
*/
|
|
4143
4383
|
apiKeySecretArn: Secret | undefined;
|
|
4384
|
+
/**
|
|
4385
|
+
* <p>The JSON key used to extract the API key secret value from the AWS Secrets Manager secret.</p>
|
|
4386
|
+
* @public
|
|
4387
|
+
*/
|
|
4388
|
+
apiKeySecretJsonKey?: string | undefined;
|
|
4389
|
+
/**
|
|
4390
|
+
* <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4391
|
+
* @public
|
|
4392
|
+
*/
|
|
4393
|
+
apiKeySecretSource?: SecretSourceType | undefined;
|
|
4144
4394
|
/**
|
|
4145
4395
|
* <p>Contains information about a secret in AWS Secrets Manager.</p>
|
|
4146
4396
|
* @public
|
|
4147
4397
|
*/
|
|
4148
4398
|
walletSecretArn: Secret | undefined;
|
|
4399
|
+
/**
|
|
4400
|
+
* <p>The JSON key used to extract the wallet secret value from the AWS Secrets Manager secret.</p>
|
|
4401
|
+
* @public
|
|
4402
|
+
*/
|
|
4403
|
+
walletSecretJsonKey?: string | undefined;
|
|
4404
|
+
/**
|
|
4405
|
+
* <p>The source type of the wallet secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4406
|
+
* @public
|
|
4407
|
+
*/
|
|
4408
|
+
walletSecretSource?: SecretSourceType | undefined;
|
|
4149
4409
|
}
|
|
4150
4410
|
/**
|
|
4151
4411
|
* <p>Stripe Privy configuration output with secret ARNs.</p>
|
|
@@ -4162,11 +4422,31 @@ export interface StripePrivyConfigurationOutput {
|
|
|
4162
4422
|
* @public
|
|
4163
4423
|
*/
|
|
4164
4424
|
appSecretArn: Secret | undefined;
|
|
4425
|
+
/**
|
|
4426
|
+
* <p>The JSON key used to extract the app secret value from the AWS Secrets Manager secret.</p>
|
|
4427
|
+
* @public
|
|
4428
|
+
*/
|
|
4429
|
+
appSecretJsonKey?: string | undefined;
|
|
4430
|
+
/**
|
|
4431
|
+
* <p>The source type of the app secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4432
|
+
* @public
|
|
4433
|
+
*/
|
|
4434
|
+
appSecretSource?: SecretSourceType | undefined;
|
|
4165
4435
|
/**
|
|
4166
4436
|
* <p>Contains information about a secret in AWS Secrets Manager.</p>
|
|
4167
4437
|
* @public
|
|
4168
4438
|
*/
|
|
4169
4439
|
authorizationPrivateKeyArn: Secret | undefined;
|
|
4440
|
+
/**
|
|
4441
|
+
* <p>The JSON key used to extract the authorization private key value from the AWS Secrets Manager secret.</p>
|
|
4442
|
+
* @public
|
|
4443
|
+
*/
|
|
4444
|
+
authorizationPrivateKeyJsonKey?: string | undefined;
|
|
4445
|
+
/**
|
|
4446
|
+
* <p>The source type of the authorization private key. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
|
|
4447
|
+
* @public
|
|
4448
|
+
*/
|
|
4449
|
+
authorizationPrivateKeySource?: SecretSourceType | undefined;
|
|
4170
4450
|
/**
|
|
4171
4451
|
* <p>The authorization ID for the Stripe Privy integration.</p>
|
|
4172
4452
|
* @public
|
|
@@ -8187,73 +8467,3 @@ export interface CreateWorkloadIdentityResponse {
|
|
|
8187
8467
|
*/
|
|
8188
8468
|
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
8189
8469
|
}
|
|
8190
|
-
/**
|
|
8191
|
-
* @public
|
|
8192
|
-
*/
|
|
8193
|
-
export interface DeleteWorkloadIdentityRequest {
|
|
8194
|
-
/**
|
|
8195
|
-
* <p>The name of the workload identity to delete.</p>
|
|
8196
|
-
* @public
|
|
8197
|
-
*/
|
|
8198
|
-
name: string | undefined;
|
|
8199
|
-
}
|
|
8200
|
-
/**
|
|
8201
|
-
* @public
|
|
8202
|
-
*/
|
|
8203
|
-
export interface DeleteWorkloadIdentityResponse {
|
|
8204
|
-
}
|
|
8205
|
-
/**
|
|
8206
|
-
* @public
|
|
8207
|
-
*/
|
|
8208
|
-
export interface GetWorkloadIdentityRequest {
|
|
8209
|
-
/**
|
|
8210
|
-
* <p>The name of the workload identity to retrieve.</p>
|
|
8211
|
-
* @public
|
|
8212
|
-
*/
|
|
8213
|
-
name: string | undefined;
|
|
8214
|
-
}
|
|
8215
|
-
/**
|
|
8216
|
-
* @public
|
|
8217
|
-
*/
|
|
8218
|
-
export interface GetWorkloadIdentityResponse {
|
|
8219
|
-
/**
|
|
8220
|
-
* <p>The name of the workload identity.</p>
|
|
8221
|
-
* @public
|
|
8222
|
-
*/
|
|
8223
|
-
name: string | undefined;
|
|
8224
|
-
/**
|
|
8225
|
-
* <p>The Amazon Resource Name (ARN) of the workload identity.</p>
|
|
8226
|
-
* @public
|
|
8227
|
-
*/
|
|
8228
|
-
workloadIdentityArn: string | undefined;
|
|
8229
|
-
/**
|
|
8230
|
-
* <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
|
|
8231
|
-
* @public
|
|
8232
|
-
*/
|
|
8233
|
-
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
8234
|
-
/**
|
|
8235
|
-
* <p>The timestamp when the workload identity was created.</p>
|
|
8236
|
-
* @public
|
|
8237
|
-
*/
|
|
8238
|
-
createdTime: Date | undefined;
|
|
8239
|
-
/**
|
|
8240
|
-
* <p>The timestamp when the workload identity was last updated.</p>
|
|
8241
|
-
* @public
|
|
8242
|
-
*/
|
|
8243
|
-
lastUpdatedTime: Date | undefined;
|
|
8244
|
-
}
|
|
8245
|
-
/**
|
|
8246
|
-
* @public
|
|
8247
|
-
*/
|
|
8248
|
-
export interface ListWorkloadIdentitiesRequest {
|
|
8249
|
-
/**
|
|
8250
|
-
* <p>Pagination token.</p>
|
|
8251
|
-
* @public
|
|
8252
|
-
*/
|
|
8253
|
-
nextToken?: string | undefined;
|
|
8254
|
-
/**
|
|
8255
|
-
* <p>Maximum number of results to return.</p>
|
|
8256
|
-
* @public
|
|
8257
|
-
*/
|
|
8258
|
-
maxResults?: number | undefined;
|
|
8259
|
-
}
|
|
@@ -1,5 +1,75 @@
|
|
|
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 DeleteWorkloadIdentityRequest {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The name of the workload identity to delete.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
name: string | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface DeleteWorkloadIdentityResponse {
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export interface GetWorkloadIdentityRequest {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The name of the workload identity to retrieve.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
name: string | undefined;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface GetWorkloadIdentityResponse {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The name of the workload identity.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
name: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The Amazon Resource Name (ARN) of the workload identity.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
workloadIdentityArn: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The list of allowed OAuth2 return URLs for resources associated with this workload identity.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
allowedResourceOauth2ReturnUrls?: string[] | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The timestamp when the workload identity was created.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
createdTime: Date | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The timestamp when the workload identity was last updated.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
lastUpdatedTime: Date | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface ListWorkloadIdentitiesRequest {
|
|
62
|
+
/**
|
|
63
|
+
* <p>Pagination token.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
nextToken?: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>Maximum number of results to return.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
maxResults?: number | undefined;
|
|
72
|
+
}
|
|
3
73
|
/**
|
|
4
74
|
* <p>Contains information about a workload identity.</p>
|
|
5
75
|
* @public
|
|
@@ -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;
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../BedrockAgentCoreControlClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ListWorkloadIdentitiesRequest,
|
|
10
|
+
ListWorkloadIdentitiesResponse,
|
|
11
|
+
} from "../models/models_2";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ListWorkloadIdentitiesCommandInput
|