@aws-sdk/client-bedrock-agentcore-control 3.1036.0 → 3.1037.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 (34) hide show
  1. package/dist-cjs/index.js +15 -4
  2. package/dist-cjs/schemas/schemas_0.js +39 -28
  3. package/dist-es/models/enums.js +14 -4
  4. package/dist-es/schemas/schemas_0.js +32 -21
  5. package/dist-types/commands/CreateAgentRuntimeCommand.d.ts +45 -4
  6. package/dist-types/commands/CreateGatewayCommand.d.ts +87 -3
  7. package/dist-types/commands/CreateGatewayTargetCommand.d.ts +2 -2
  8. package/dist-types/commands/CreateHarnessCommand.d.ts +87 -3
  9. package/dist-types/commands/CreateOauth2CredentialProviderCommand.d.ts +88 -3
  10. package/dist-types/commands/CreateRegistryCommand.d.ts +43 -0
  11. package/dist-types/commands/DeleteHarnessCommand.d.ts +43 -0
  12. package/dist-types/commands/DeleteOauth2CredentialProviderCommand.d.ts +3 -0
  13. package/dist-types/commands/GetAgentRuntimeCommand.d.ts +44 -1
  14. package/dist-types/commands/GetGatewayCommand.d.ts +43 -0
  15. package/dist-types/commands/GetGatewayTargetCommand.d.ts +1 -1
  16. package/dist-types/commands/GetHarnessCommand.d.ts +43 -0
  17. package/dist-types/commands/GetOauth2CredentialProviderCommand.d.ts +45 -0
  18. package/dist-types/commands/GetRegistryCommand.d.ts +43 -0
  19. package/dist-types/commands/SynchronizeGatewayTargetsCommand.d.ts +1 -1
  20. package/dist-types/commands/UpdateAgentRuntimeCommand.d.ts +44 -1
  21. package/dist-types/commands/UpdateGatewayCommand.d.ts +86 -0
  22. package/dist-types/commands/UpdateGatewayTargetCommand.d.ts +2 -2
  23. package/dist-types/commands/UpdateHarnessCommand.d.ts +86 -0
  24. package/dist-types/commands/UpdateOauth2CredentialProviderCommand.d.ts +87 -0
  25. package/dist-types/commands/UpdateRegistryCommand.d.ts +86 -0
  26. package/dist-types/models/enums.d.ts +30 -12
  27. package/dist-types/models/models_0.d.ts +151 -136
  28. package/dist-types/models/models_1.d.ts +53 -2
  29. package/dist-types/schemas/schemas_0.d.ts +2 -1
  30. package/dist-types/ts3.4/models/enums.d.ts +17 -6
  31. package/dist-types/ts3.4/models/models_0.d.ts +59 -56
  32. package/dist-types/ts3.4/models/models_1.d.ts +13 -1
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -1
  34. package/package.json +1 -1
@@ -34,6 +34,7 @@ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof
34
34
  * @enum
35
35
  */
36
36
  export declare const AgentManagedRuntimeType: {
37
+ readonly NODE_22: "NODE_22";
37
38
  readonly PYTHON_3_10: "PYTHON_3_10";
38
39
  readonly PYTHON_3_11: "PYTHON_3_11";
39
40
  readonly PYTHON_3_12: "PYTHON_3_12";
@@ -69,6 +70,18 @@ export declare const InboundTokenClaimValueType: {
69
70
  * @public
70
71
  */
71
72
  export type InboundTokenClaimValueType = (typeof InboundTokenClaimValueType)[keyof typeof InboundTokenClaimValueType];
73
+ /**
74
+ * @public
75
+ * @enum
76
+ */
77
+ export declare const EndpointIpAddressType: {
78
+ readonly IPV4: "IPV4";
79
+ readonly IPV6: "IPV6";
80
+ };
81
+ /**
82
+ * @public
83
+ */
84
+ export type EndpointIpAddressType = (typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
72
85
  /**
73
86
  * @public
74
87
  * @enum
@@ -371,18 +384,6 @@ export declare const CredentialProviderType: {
371
384
  * @public
372
385
  */
373
386
  export type CredentialProviderType = (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
374
- /**
375
- * @public
376
- * @enum
377
- */
378
- export declare const EndpointIpAddressType: {
379
- readonly IPV4: "IPV4";
380
- readonly IPV6: "IPV6";
381
- };
382
- /**
383
- * @public
384
- */
385
- export type EndpointIpAddressType = (typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
386
387
  /**
387
388
  * @public
388
389
  * @enum
@@ -634,6 +635,23 @@ export declare const CredentialProviderVendorType: {
634
635
  * @public
635
636
  */
636
637
  export type CredentialProviderVendorType = (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
638
+ /**
639
+ * @public
640
+ * @enum
641
+ */
642
+ export declare const Status: {
643
+ readonly CREATE_FAILED: "CREATE_FAILED";
644
+ readonly CREATING: "CREATING";
645
+ readonly DELETE_FAILED: "DELETE_FAILED";
646
+ readonly DELETING: "DELETING";
647
+ readonly READY: "READY";
648
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
649
+ readonly UPDATING: "UPDATING";
650
+ };
651
+ /**
652
+ * @public
653
+ */
654
+ export type Status = (typeof Status)[keyof typeof Status];
637
655
  /**
638
656
  * @public
639
657
  * @enum
@@ -459,7 +459,7 @@ export interface CodeConfiguration {
459
459
  */
460
460
  code: Code | undefined;
461
461
  /**
462
- * <p>The runtime environment for executing the code (for example, Python 3.9 or Node.js 18).</p>
462
+ * <p>The runtime environment for executing the agent code. Specify the programming language and version to use for the agent runtime. For valid values, see the list of supported runtimes.</p>
463
463
  * @public
464
464
  */
465
465
  runtime: AgentManagedRuntimeType | undefined;
@@ -607,6 +607,136 @@ export interface CustomClaimValidationType {
607
607
  */
608
608
  authorizingClaimMatchValue: AuthorizingClaimMatchValueType | undefined;
609
609
  }
610
+ /**
611
+ * <p>Configuration for a managed VPC Lattice resource. The gateway creates and manages the VPC Lattice resource gateway and resource configuration on your behalf using a service-linked role.</p>
612
+ * @public
613
+ */
614
+ export interface ManagedVpcResource {
615
+ /**
616
+ * <p>The ID of the VPC that contains your private resource.</p>
617
+ * @public
618
+ */
619
+ vpcIdentifier: string | undefined;
620
+ /**
621
+ * <p>The subnet IDs within the VPC where the VPC Lattice resource gateway is placed.</p>
622
+ * @public
623
+ */
624
+ subnetIds: string[] | undefined;
625
+ /**
626
+ * <p>The IP address type for the resource configuration endpoint.</p>
627
+ * @public
628
+ */
629
+ endpointIpAddressType: EndpointIpAddressType | undefined;
630
+ /**
631
+ * <p>The security group IDs to associate with the VPC Lattice resource gateway. If not specified, the default security group for the VPC is used.</p>
632
+ * @public
633
+ */
634
+ securityGroupIds?: string[] | undefined;
635
+ /**
636
+ * <p>Tags to apply to the managed VPC Lattice resource gateway.</p>
637
+ * @public
638
+ */
639
+ tags?: Record<string, string> | undefined;
640
+ /**
641
+ * <p>An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint. Required when your private endpoint uses a domain that is not publicly resolvable.</p>
642
+ * @public
643
+ */
644
+ routingDomain?: string | undefined;
645
+ }
646
+ /**
647
+ * <p>Configuration for a self-managed VPC Lattice resource. You create and manage the VPC Lattice resource gateway and resource configuration, then provide the resource configuration identifier.</p>
648
+ * @public
649
+ */
650
+ export type SelfManagedLatticeResource = SelfManagedLatticeResource.ResourceConfigurationIdentifierMember | SelfManagedLatticeResource.$UnknownMember;
651
+ /**
652
+ * @public
653
+ */
654
+ export declare namespace SelfManagedLatticeResource {
655
+ /**
656
+ * <p>The ARN or ID of the VPC Lattice resource configuration.</p>
657
+ * @public
658
+ */
659
+ interface ResourceConfigurationIdentifierMember {
660
+ resourceConfigurationIdentifier: string;
661
+ $unknown?: never;
662
+ }
663
+ /**
664
+ * @public
665
+ */
666
+ interface $UnknownMember {
667
+ resourceConfigurationIdentifier?: never;
668
+ $unknown: [string, any];
669
+ }
670
+ /**
671
+ * @deprecated unused in schema-serde mode.
672
+ *
673
+ */
674
+ interface Visitor<T> {
675
+ resourceConfigurationIdentifier: (value: string) => T;
676
+ _: (name: string, value: any) => T;
677
+ }
678
+ }
679
+ /**
680
+ * <p>The private endpoint configuration for a gateway target. Defines how the gateway connects to private resources in your VPC.</p>
681
+ * @public
682
+ */
683
+ export type PrivateEndpoint = PrivateEndpoint.ManagedVpcResourceMember | PrivateEndpoint.SelfManagedLatticeResourceMember | PrivateEndpoint.$UnknownMember;
684
+ /**
685
+ * @public
686
+ */
687
+ export declare namespace PrivateEndpoint {
688
+ /**
689
+ * <p>Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.</p>
690
+ * @public
691
+ */
692
+ interface SelfManagedLatticeResourceMember {
693
+ selfManagedLatticeResource: SelfManagedLatticeResource;
694
+ managedVpcResource?: never;
695
+ $unknown?: never;
696
+ }
697
+ /**
698
+ * <p>Configuration for connecting to a private resource using a managed VPC Lattice resource. The gateway creates and manages the VPC Lattice resources on your behalf.</p>
699
+ * @public
700
+ */
701
+ interface ManagedVpcResourceMember {
702
+ selfManagedLatticeResource?: never;
703
+ managedVpcResource: ManagedVpcResource;
704
+ $unknown?: never;
705
+ }
706
+ /**
707
+ * @public
708
+ */
709
+ interface $UnknownMember {
710
+ selfManagedLatticeResource?: never;
711
+ managedVpcResource?: never;
712
+ $unknown: [string, any];
713
+ }
714
+ /**
715
+ * @deprecated unused in schema-serde mode.
716
+ *
717
+ */
718
+ interface Visitor<T> {
719
+ selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
720
+ managedVpcResource: (value: ManagedVpcResource) => T;
721
+ _: (name: string, value: any) => T;
722
+ }
723
+ }
724
+ /**
725
+ * <p>A mapping of a specific domain to a private endpoint for secure connectivity through a VPC Lattice resource configuration.</p>
726
+ * @public
727
+ */
728
+ export interface PrivateEndpointOverride {
729
+ /**
730
+ * <p>The domain to override with a private endpoint.</p>
731
+ * @public
732
+ */
733
+ domain: string | undefined;
734
+ /**
735
+ * <p>The private endpoint configuration for the specified domain.</p>
736
+ * @public
737
+ */
738
+ privateEndpoint: PrivateEndpoint | undefined;
739
+ }
610
740
  /**
611
741
  * <p>Configuration for inbound JWT-based authorization, specifying how incoming requests should be authenticated.</p>
612
742
  * @public
@@ -637,6 +767,16 @@ export interface CustomJWTAuthorizerConfiguration {
637
767
  * @public
638
768
  */
639
769
  customClaims?: CustomClaimValidationType[] | undefined;
770
+ /**
771
+ * <p>The private endpoint configuration for a gateway target. Defines how the gateway connects to private resources in your VPC.</p>
772
+ * @public
773
+ */
774
+ privateEndpoint?: PrivateEndpoint | undefined;
775
+ /**
776
+ * <p>A list of private endpoint overrides for the JWT authorizer. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations.</p>
777
+ * @public
778
+ */
779
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
640
780
  }
641
781
  /**
642
782
  * <p>Represents inbound authorization configuration options used to authenticate incoming requests. </p>
@@ -3951,120 +4091,6 @@ export interface MetadataConfiguration {
3951
4091
  */
3952
4092
  allowedResponseHeaders?: string[] | undefined;
3953
4093
  }
3954
- /**
3955
- * <p>Configuration for a managed VPC Lattice resource. The gateway creates and manages the VPC Lattice resource gateway and resource configuration on your behalf using a service-linked role.</p>
3956
- * @public
3957
- */
3958
- export interface ManagedLatticeResource {
3959
- /**
3960
- * <p>The ID of the VPC that contains your private resource.</p>
3961
- * @public
3962
- */
3963
- vpcIdentifier: string | undefined;
3964
- /**
3965
- * <p>The subnet IDs within the VPC where the VPC Lattice resource gateway is placed.</p>
3966
- * @public
3967
- */
3968
- subnetIds: string[] | undefined;
3969
- /**
3970
- * <p>The IP address type for the resource configuration endpoint.</p>
3971
- * @public
3972
- */
3973
- endpointIpAddressType: EndpointIpAddressType | undefined;
3974
- /**
3975
- * <p>The security group IDs to associate with the VPC Lattice resource gateway. If not specified, the default security group for the VPC is used.</p>
3976
- * @public
3977
- */
3978
- securityGroupIds?: string[] | undefined;
3979
- /**
3980
- * <p>Tags to apply to the managed VPC Lattice resource gateway.</p>
3981
- * @public
3982
- */
3983
- tags?: Record<string, string> | undefined;
3984
- /**
3985
- * <p>An intermediate publicly resolvable domain used as the VPC Lattice resource configuration endpoint. Required when your private endpoint uses a domain that is not publicly resolvable.</p>
3986
- * @public
3987
- */
3988
- routingDomain?: string | undefined;
3989
- }
3990
- /**
3991
- * <p>Configuration for a self-managed VPC Lattice resource. You create and manage the VPC Lattice resource gateway and resource configuration, then provide the resource configuration identifier.</p>
3992
- * @public
3993
- */
3994
- export type SelfManagedLatticeResource = SelfManagedLatticeResource.ResourceConfigurationIdentifierMember | SelfManagedLatticeResource.$UnknownMember;
3995
- /**
3996
- * @public
3997
- */
3998
- export declare namespace SelfManagedLatticeResource {
3999
- /**
4000
- * <p>The ARN or ID of the VPC Lattice resource configuration.</p>
4001
- * @public
4002
- */
4003
- interface ResourceConfigurationIdentifierMember {
4004
- resourceConfigurationIdentifier: string;
4005
- $unknown?: never;
4006
- }
4007
- /**
4008
- * @public
4009
- */
4010
- interface $UnknownMember {
4011
- resourceConfigurationIdentifier?: never;
4012
- $unknown: [string, any];
4013
- }
4014
- /**
4015
- * @deprecated unused in schema-serde mode.
4016
- *
4017
- */
4018
- interface Visitor<T> {
4019
- resourceConfigurationIdentifier: (value: string) => T;
4020
- _: (name: string, value: any) => T;
4021
- }
4022
- }
4023
- /**
4024
- * <p>The private endpoint configuration for a gateway target. Defines how the gateway connects to private resources in your VPC.</p>
4025
- * @public
4026
- */
4027
- export type PrivateEndpoint = PrivateEndpoint.ManagedLatticeResourceMember | PrivateEndpoint.SelfManagedLatticeResourceMember | PrivateEndpoint.$UnknownMember;
4028
- /**
4029
- * @public
4030
- */
4031
- export declare namespace PrivateEndpoint {
4032
- /**
4033
- * <p>Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.</p>
4034
- * @public
4035
- */
4036
- interface SelfManagedLatticeResourceMember {
4037
- selfManagedLatticeResource: SelfManagedLatticeResource;
4038
- managedLatticeResource?: never;
4039
- $unknown?: never;
4040
- }
4041
- /**
4042
- * <p>Configuration for connecting to a private resource using a managed VPC Lattice resource. The gateway creates and manages the VPC Lattice resources on your behalf.</p>
4043
- * @public
4044
- */
4045
- interface ManagedLatticeResourceMember {
4046
- selfManagedLatticeResource?: never;
4047
- managedLatticeResource: ManagedLatticeResource;
4048
- $unknown?: never;
4049
- }
4050
- /**
4051
- * @public
4052
- */
4053
- interface $UnknownMember {
4054
- selfManagedLatticeResource?: never;
4055
- managedLatticeResource?: never;
4056
- $unknown: [string, any];
4057
- }
4058
- /**
4059
- * @deprecated unused in schema-serde mode.
4060
- *
4061
- */
4062
- interface Visitor<T> {
4063
- selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
4064
- managedLatticeResource: (value: ManagedLatticeResource) => T;
4065
- _: (name: string, value: any) => T;
4066
- }
4067
- }
4068
4094
  /**
4069
4095
  * <p>Specifies which operations from an API Gateway REST API are exposed as tools. Tool names and descriptions are derived from the operationId and description fields in the API's exported OpenAPI specification.</p>
4070
4096
  * @public
@@ -8070,6 +8096,16 @@ export interface CustomOauth2ProviderConfigInput {
8070
8096
  * @public
8071
8097
  */
8072
8098
  clientSecret: string | undefined;
8099
+ /**
8100
+ * <p>The default private endpoint for the custom OAuth2 provider, enabling secure connectivity through a VPC Lattice resource configuration.</p>
8101
+ * @public
8102
+ */
8103
+ privateEndpoint?: PrivateEndpoint | undefined;
8104
+ /**
8105
+ * <p>The list of private endpoint overrides for the custom OAuth2 provider. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations.</p>
8106
+ * @public
8107
+ */
8108
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
8073
8109
  }
8074
8110
  /**
8075
8111
  * <p>Input configuration for a GitHub OAuth2 provider.</p>
@@ -8150,24 +8186,3 @@ export interface LinkedinOauth2ProviderConfigInput {
8150
8186
  */
8151
8187
  clientSecret: string | undefined;
8152
8188
  }
8153
- /**
8154
- * <p>Input configuration for a Microsoft OAuth2 provider.</p>
8155
- * @public
8156
- */
8157
- export interface MicrosoftOauth2ProviderConfigInput {
8158
- /**
8159
- * <p>The client ID for the Microsoft OAuth2 provider.</p>
8160
- * @public
8161
- */
8162
- clientId: string | undefined;
8163
- /**
8164
- * <p>The client secret for the Microsoft OAuth2 provider.</p>
8165
- * @public
8166
- */
8167
- clientSecret: string | undefined;
8168
- /**
8169
- * <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>
8170
- * @public
8171
- */
8172
- tenantId?: string | undefined;
8173
- }
@@ -1,5 +1,26 @@
1
- import type { CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SchemaType, SynchronizationType, TargetStatus } from "./enums";
2
- import type { A2aDescriptor, AgentSkillsDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AtlassianOauth2ProviderConfigInput, AuthorizationData, AuthorizerConfiguration, CredentialProviderConfiguration, CustomOauth2ProviderConfigInput, GithubOauth2ProviderConfigInput, GoogleOauth2ProviderConfigInput, IncludedOauth2ProviderConfigInput, KmsConfiguration, LinkedinOauth2ProviderConfigInput, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, MicrosoftOauth2ProviderConfigInput, Oauth2Discovery, PrivateEndpoint, S3Configuration, Secret, SkillDefinition, SkillMdDefinition, UpdatedAuthorizerConfiguration } from "./models_0";
1
+ import type { CredentialProviderVendorType, DescriptorType, FilterOperator, FindingType, OnlineEvaluationConfigStatus, OnlineEvaluationExecutionStatus, PolicyEngineStatus, PolicyGenerationStatus, PolicyStatus, PolicyValidationMode, RegistryAuthorizerType, RegistryRecordCredentialProviderType, RegistryRecordOAuthGrantType, RegistryRecordStatus, RegistryStatus, SchemaType, Status, SynchronizationType, TargetStatus } from "./enums";
2
+ import type { A2aDescriptor, AgentSkillsDescriptor, ApiGatewayTargetConfiguration, ApiSchemaConfiguration, AtlassianOauth2ProviderConfigInput, AuthorizationData, AuthorizerConfiguration, CredentialProviderConfiguration, CustomOauth2ProviderConfigInput, GithubOauth2ProviderConfigInput, GoogleOauth2ProviderConfigInput, IncludedOauth2ProviderConfigInput, KmsConfiguration, LinkedinOauth2ProviderConfigInput, ManagedResourceDetails, McpServerTargetConfiguration, MetadataConfiguration, Oauth2Discovery, PrivateEndpoint, PrivateEndpointOverride, S3Configuration, Secret, SkillDefinition, SkillMdDefinition, UpdatedAuthorizerConfiguration } from "./models_0";
3
+ /**
4
+ * <p>Input configuration for a Microsoft OAuth2 provider.</p>
5
+ * @public
6
+ */
7
+ export interface MicrosoftOauth2ProviderConfigInput {
8
+ /**
9
+ * <p>The client ID for the Microsoft OAuth2 provider.</p>
10
+ * @public
11
+ */
12
+ clientId: string | undefined;
13
+ /**
14
+ * <p>The client secret for the Microsoft OAuth2 provider.</p>
15
+ * @public
16
+ */
17
+ clientSecret: string | undefined;
18
+ /**
19
+ * <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>
20
+ * @public
21
+ */
22
+ tenantId?: string | undefined;
23
+ }
3
24
  /**
4
25
  * <p>Input configuration for a Salesforce OAuth2 provider.</p>
5
26
  * @public
@@ -273,6 +294,16 @@ export interface CustomOauth2ProviderConfigOutput {
273
294
  * @public
274
295
  */
275
296
  clientId?: string | undefined;
297
+ /**
298
+ * <p>The default private endpoint for the custom OAuth2 provider, enabling secure connectivity through a VPC Lattice resource configuration.</p>
299
+ * @public
300
+ */
301
+ privateEndpoint?: PrivateEndpoint | undefined;
302
+ /**
303
+ * <p>The list of private endpoint overrides for the custom OAuth2 provider. Each override maps a specific domain to a private endpoint, enabling secure connectivity through VPC Lattice resource configurations.</p>
304
+ * @public
305
+ */
306
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
276
307
  }
277
308
  /**
278
309
  * <p>Output configuration for a GitHub OAuth2 provider.</p>
@@ -600,6 +631,11 @@ export interface CreateOauth2CredentialProviderResponse {
600
631
  * @public
601
632
  */
602
633
  oauth2ProviderConfigOutput?: Oauth2ProviderConfigOutput | undefined;
634
+ /**
635
+ * <p>The current status of the OAuth2 credential provider.</p>
636
+ * @public
637
+ */
638
+ status?: Status | undefined;
603
639
  }
604
640
  /**
605
641
  * @public
@@ -670,6 +706,16 @@ export interface GetOauth2CredentialProviderResponse {
670
706
  * @public
671
707
  */
672
708
  lastUpdatedTime: Date | undefined;
709
+ /**
710
+ * <p>The current status of the OAuth2 credential provider.</p>
711
+ * @public
712
+ */
713
+ status?: Status | undefined;
714
+ /**
715
+ * <p>The reason for the failure if the OAuth2 credential provider is in a failed state.</p>
716
+ * @public
717
+ */
718
+ failureReason?: string | undefined;
673
719
  }
674
720
  /**
675
721
  * @public
@@ -796,6 +842,11 @@ export interface UpdateOauth2CredentialProviderResponse {
796
842
  * @public
797
843
  */
798
844
  lastUpdatedTime: Date | undefined;
845
+ /**
846
+ * <p>The current status of the OAuth2 credential provider.</p>
847
+ * @public
848
+ */
849
+ status?: Status | undefined;
799
850
  }
800
851
  /**
801
852
  * <p> The configuration for reading agent traces from CloudWatch logs as input for online evaluation. </p>
@@ -277,8 +277,8 @@ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
277
277
  export declare var ListWorkloadIdentitiesRequest$: StaticStructureSchema;
278
278
  export declare var ListWorkloadIdentitiesResponse$: StaticStructureSchema;
279
279
  export declare var LlmAsAJudgeEvaluatorConfig$: StaticStructureSchema;
280
- export declare var ManagedLatticeResource$: StaticStructureSchema;
281
280
  export declare var ManagedResourceDetails$: StaticStructureSchema;
281
+ export declare var ManagedVpcResource$: StaticStructureSchema;
282
282
  export declare var McpDescriptor$: StaticStructureSchema;
283
283
  export declare var MCPGatewayConfiguration$: StaticStructureSchema;
284
284
  export declare var McpLambdaTargetConfiguration$: StaticStructureSchema;
@@ -309,6 +309,7 @@ export declare var PolicyEngine$: StaticStructureSchema;
309
309
  export declare var PolicyGeneration$: StaticStructureSchema;
310
310
  export declare var PolicyGenerationAsset$: StaticStructureSchema;
311
311
  export declare var PolicyGenerationDetails$: StaticStructureSchema;
312
+ export declare var PrivateEndpointOverride$: StaticStructureSchema;
312
313
  export declare var ProtocolConfiguration$: StaticStructureSchema;
313
314
  export declare var PutResourcePolicyRequest$: StaticStructureSchema;
314
315
  export declare var PutResourcePolicyResponse$: StaticStructureSchema;
@@ -18,6 +18,7 @@ export declare const ValidationExceptionReason: {
18
18
  export type ValidationExceptionReason =
19
19
  (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
20
20
  export declare const AgentManagedRuntimeType: {
21
+ readonly NODE_22: "NODE_22";
21
22
  readonly PYTHON_3_10: "PYTHON_3_10";
22
23
  readonly PYTHON_3_11: "PYTHON_3_11";
23
24
  readonly PYTHON_3_12: "PYTHON_3_12";
@@ -39,6 +40,12 @@ export declare const InboundTokenClaimValueType: {
39
40
  };
40
41
  export type InboundTokenClaimValueType =
41
42
  (typeof InboundTokenClaimValueType)[keyof typeof InboundTokenClaimValueType];
43
+ export declare const EndpointIpAddressType: {
44
+ readonly IPV4: "IPV4";
45
+ readonly IPV6: "IPV6";
46
+ };
47
+ export type EndpointIpAddressType =
48
+ (typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
42
49
  export declare const NetworkMode: {
43
50
  readonly PUBLIC: "PUBLIC";
44
51
  readonly VPC: "VPC";
@@ -197,12 +204,6 @@ export declare const CredentialProviderType: {
197
204
  };
198
205
  export type CredentialProviderType =
199
206
  (typeof CredentialProviderType)[keyof typeof CredentialProviderType];
200
- export declare const EndpointIpAddressType: {
201
- readonly IPV4: "IPV4";
202
- readonly IPV6: "IPV6";
203
- };
204
- export type EndpointIpAddressType =
205
- (typeof EndpointIpAddressType)[keyof typeof EndpointIpAddressType];
206
207
  export declare const RestApiMethod: {
207
208
  readonly DELETE: "DELETE";
208
209
  readonly GET: "GET";
@@ -347,6 +348,16 @@ export declare const CredentialProviderVendorType: {
347
348
  };
348
349
  export type CredentialProviderVendorType =
349
350
  (typeof CredentialProviderVendorType)[keyof typeof CredentialProviderVendorType];
351
+ export declare const Status: {
352
+ readonly CREATE_FAILED: "CREATE_FAILED";
353
+ readonly CREATING: "CREATING";
354
+ readonly DELETE_FAILED: "DELETE_FAILED";
355
+ readonly DELETING: "DELETING";
356
+ readonly READY: "READY";
357
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
358
+ readonly UPDATING: "UPDATING";
359
+ };
360
+ export type Status = (typeof Status)[keyof typeof Status];
350
361
  export declare const FilterOperator: {
351
362
  readonly CONTAINS: "Contains";
352
363
  readonly EQUALS: "Equals";
@@ -224,12 +224,69 @@ export interface CustomClaimValidationType {
224
224
  inboundTokenClaimValueType: InboundTokenClaimValueType | undefined;
225
225
  authorizingClaimMatchValue: AuthorizingClaimMatchValueType | undefined;
226
226
  }
227
+ export interface ManagedVpcResource {
228
+ vpcIdentifier: string | undefined;
229
+ subnetIds: string[] | undefined;
230
+ endpointIpAddressType: EndpointIpAddressType | undefined;
231
+ securityGroupIds?: string[] | undefined;
232
+ tags?: Record<string, string> | undefined;
233
+ routingDomain?: string | undefined;
234
+ }
235
+ export type SelfManagedLatticeResource =
236
+ | SelfManagedLatticeResource.ResourceConfigurationIdentifierMember
237
+ | SelfManagedLatticeResource.$UnknownMember;
238
+ export declare namespace SelfManagedLatticeResource {
239
+ interface ResourceConfigurationIdentifierMember {
240
+ resourceConfigurationIdentifier: string;
241
+ $unknown?: never;
242
+ }
243
+ interface $UnknownMember {
244
+ resourceConfigurationIdentifier?: never;
245
+ $unknown: [string, any];
246
+ }
247
+ interface Visitor<T> {
248
+ resourceConfigurationIdentifier: (value: string) => T;
249
+ _: (name: string, value: any) => T;
250
+ }
251
+ }
252
+ export type PrivateEndpoint =
253
+ | PrivateEndpoint.ManagedVpcResourceMember
254
+ | PrivateEndpoint.SelfManagedLatticeResourceMember
255
+ | PrivateEndpoint.$UnknownMember;
256
+ export declare namespace PrivateEndpoint {
257
+ interface SelfManagedLatticeResourceMember {
258
+ selfManagedLatticeResource: SelfManagedLatticeResource;
259
+ managedVpcResource?: never;
260
+ $unknown?: never;
261
+ }
262
+ interface ManagedVpcResourceMember {
263
+ selfManagedLatticeResource?: never;
264
+ managedVpcResource: ManagedVpcResource;
265
+ $unknown?: never;
266
+ }
267
+ interface $UnknownMember {
268
+ selfManagedLatticeResource?: never;
269
+ managedVpcResource?: never;
270
+ $unknown: [string, any];
271
+ }
272
+ interface Visitor<T> {
273
+ selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
274
+ managedVpcResource: (value: ManagedVpcResource) => T;
275
+ _: (name: string, value: any) => T;
276
+ }
277
+ }
278
+ export interface PrivateEndpointOverride {
279
+ domain: string | undefined;
280
+ privateEndpoint: PrivateEndpoint | undefined;
281
+ }
227
282
  export interface CustomJWTAuthorizerConfiguration {
228
283
  discoveryUrl: string | undefined;
229
284
  allowedAudience?: string[] | undefined;
230
285
  allowedClients?: string[] | undefined;
231
286
  allowedScopes?: string[] | undefined;
232
287
  customClaims?: CustomClaimValidationType[] | undefined;
288
+ privateEndpoint?: PrivateEndpoint | undefined;
289
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
233
290
  }
234
291
  export type AuthorizerConfiguration =
235
292
  | AuthorizerConfiguration.CustomJWTAuthorizerMember
@@ -1146,57 +1203,6 @@ export interface MetadataConfiguration {
1146
1203
  allowedQueryParameters?: string[] | undefined;
1147
1204
  allowedResponseHeaders?: string[] | undefined;
1148
1205
  }
1149
- export interface ManagedLatticeResource {
1150
- vpcIdentifier: string | undefined;
1151
- subnetIds: string[] | undefined;
1152
- endpointIpAddressType: EndpointIpAddressType | undefined;
1153
- securityGroupIds?: string[] | undefined;
1154
- tags?: Record<string, string> | undefined;
1155
- routingDomain?: string | undefined;
1156
- }
1157
- export type SelfManagedLatticeResource =
1158
- | SelfManagedLatticeResource.ResourceConfigurationIdentifierMember
1159
- | SelfManagedLatticeResource.$UnknownMember;
1160
- export declare namespace SelfManagedLatticeResource {
1161
- interface ResourceConfigurationIdentifierMember {
1162
- resourceConfigurationIdentifier: string;
1163
- $unknown?: never;
1164
- }
1165
- interface $UnknownMember {
1166
- resourceConfigurationIdentifier?: never;
1167
- $unknown: [string, any];
1168
- }
1169
- interface Visitor<T> {
1170
- resourceConfigurationIdentifier: (value: string) => T;
1171
- _: (name: string, value: any) => T;
1172
- }
1173
- }
1174
- export type PrivateEndpoint =
1175
- | PrivateEndpoint.ManagedLatticeResourceMember
1176
- | PrivateEndpoint.SelfManagedLatticeResourceMember
1177
- | PrivateEndpoint.$UnknownMember;
1178
- export declare namespace PrivateEndpoint {
1179
- interface SelfManagedLatticeResourceMember {
1180
- selfManagedLatticeResource: SelfManagedLatticeResource;
1181
- managedLatticeResource?: never;
1182
- $unknown?: never;
1183
- }
1184
- interface ManagedLatticeResourceMember {
1185
- selfManagedLatticeResource?: never;
1186
- managedLatticeResource: ManagedLatticeResource;
1187
- $unknown?: never;
1188
- }
1189
- interface $UnknownMember {
1190
- selfManagedLatticeResource?: never;
1191
- managedLatticeResource?: never;
1192
- $unknown: [string, any];
1193
- }
1194
- interface Visitor<T> {
1195
- selfManagedLatticeResource: (value: SelfManagedLatticeResource) => T;
1196
- managedLatticeResource: (value: ManagedLatticeResource) => T;
1197
- _: (name: string, value: any) => T;
1198
- }
1199
- }
1200
1206
  export interface ApiGatewayToolFilter {
1201
1207
  filterPath: string | undefined;
1202
1208
  methods: RestApiMethod[] | undefined;
@@ -2750,6 +2756,8 @@ export interface CustomOauth2ProviderConfigInput {
2750
2756
  oauthDiscovery: Oauth2Discovery | undefined;
2751
2757
  clientId: string | undefined;
2752
2758
  clientSecret: string | undefined;
2759
+ privateEndpoint?: PrivateEndpoint | undefined;
2760
+ privateEndpointOverrides?: PrivateEndpointOverride[] | undefined;
2753
2761
  }
2754
2762
  export interface GithubOauth2ProviderConfigInput {
2755
2763
  clientId: string | undefined;
@@ -2770,8 +2778,3 @@ export interface LinkedinOauth2ProviderConfigInput {
2770
2778
  clientId: string | undefined;
2771
2779
  clientSecret: string | undefined;
2772
2780
  }
2773
- export interface MicrosoftOauth2ProviderConfigInput {
2774
- clientId: string | undefined;
2775
- clientSecret: string | undefined;
2776
- tenantId?: string | undefined;
2777
- }