import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::BedrockAgentCore::OAuth2CredentialProvider */ export declare class OAuth2CredentialProvider extends pulumi.CustomResource { /** * Get an existing OAuth2CredentialProvider resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): OAuth2CredentialProvider; /** * Returns true if the given object is an instance of OAuth2CredentialProvider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is OAuth2CredentialProvider; /** * The callback URL for the OAuth2 authorization flow */ readonly callbackUrl: pulumi.Output; /** * The ARN of the client secret in AWS Secrets Manager */ readonly clientSecretArn: pulumi.Output; /** * The timestamp when the credential provider was created */ readonly createdTime: pulumi.Output; /** * The Amazon Resource Name (ARN) of the OAuth2 credential provider */ readonly credentialProviderArn: pulumi.Output; /** * The vendor of the OAuth2 credential provider */ readonly credentialProviderVendor: pulumi.Output; /** * The timestamp when the credential provider was last updated */ readonly lastUpdatedTime: pulumi.Output; /** * The name of the OAuth2 credential provider */ readonly name: pulumi.Output; /** * The configuration settings for the OAuth2 provider */ readonly oauth2ProviderConfigInput: pulumi.Output; /** * The output configuration for the OAuth2 provider */ readonly oauth2ProviderConfigOutput: pulumi.Output; /** * Tags to assign to the OAuth2 credential provider */ readonly tags: pulumi.Output; /** * Create a OAuth2CredentialProvider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: OAuth2CredentialProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a OAuth2CredentialProvider resource. */ export interface OAuth2CredentialProviderArgs { /** * The vendor of the OAuth2 credential provider */ credentialProviderVendor: pulumi.Input; /** * The name of the OAuth2 credential provider */ name?: pulumi.Input; /** * The configuration settings for the OAuth2 provider */ oauth2ProviderConfigInput?: pulumi.Input; /** * Tags to assign to the OAuth2 credential provider */ tags?: pulumi.Input[]>; }