import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * SAML identity provider is a user authentication service provider responsible for collecting and storing user identity data such as usernames and passwords. In access control (IAM), it is an entity that contains external identity provider metadata and provides identity management services. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const iAMSamlProviderDemo = new volcenginecc.iam.SamlProvider("IAMSamlProviderDemo", { * samlProviderName: "ccapi-test", * description: "ccapi-test", * encodedSamlMetadataDocument: "PD94bWwgdmVyc2lvbxxxxxx==", * ssoType: 1, * status: 1, * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:iam/samlProvider:SamlProvider example "saml_provider_name" * ``` */ export declare class SamlProvider extends pulumi.CustomResource { /** * Get an existing SamlProvider 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SamlProviderState, opts?: pulumi.CustomResourceOptions): SamlProvider; /** * Returns true if the given object is an instance of SamlProvider. 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 SamlProvider; /** * SAML Certificate Expiration Reminder Time */ readonly certificateExpireTime: pulumi.Output; readonly certificates: pulumi.Output; /** * Creation Time */ readonly createDate: pulumi.Output; /** * SAML Identity Provider Description */ readonly description: pulumi.Output; /** * Base64 Encoded SAML Identity Provider Metadata File */ readonly encodedSamlMetadataDocument: pulumi.Output; /** * SAML Identity Provider Name */ readonly samlProviderName: pulumi.Output; /** * Identity Provider SSO Type 1. Role SSO 2. User SSO */ readonly ssoType: pulumi.Output; /** * Identity Provider Status (User SSO Only) 1. Enabled 2. Enabled and other login methods disabled 3. Disabled */ readonly status: pulumi.Output; /** * Identity Provider Trn */ readonly trn: pulumi.Output; /** * Update Time */ readonly updateDate: pulumi.Output; /** * Create a SamlProvider 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: SamlProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SamlProvider resources. */ export interface SamlProviderState { /** * SAML Certificate Expiration Reminder Time */ certificateExpireTime?: pulumi.Input; certificates?: pulumi.Input[]>; /** * Creation Time */ createDate?: pulumi.Input; /** * SAML Identity Provider Description */ description?: pulumi.Input; /** * Base64 Encoded SAML Identity Provider Metadata File */ encodedSamlMetadataDocument?: pulumi.Input; /** * SAML Identity Provider Name */ samlProviderName?: pulumi.Input; /** * Identity Provider SSO Type 1. Role SSO 2. User SSO */ ssoType?: pulumi.Input; /** * Identity Provider Status (User SSO Only) 1. Enabled 2. Enabled and other login methods disabled 3. Disabled */ status?: pulumi.Input; /** * Identity Provider Trn */ trn?: pulumi.Input; /** * Update Time */ updateDate?: pulumi.Input; } /** * The set of arguments for constructing a SamlProvider resource. */ export interface SamlProviderArgs { /** * SAML Identity Provider Description */ description?: pulumi.Input; /** * Base64 Encoded SAML Identity Provider Metadata File */ encodedSamlMetadataDocument: pulumi.Input; /** * SAML Identity Provider Name */ samlProviderName: pulumi.Input; /** * Identity Provider SSO Type 1. Role SSO 2. User SSO */ ssoType: pulumi.Input; /** * Identity Provider Status (User SSO Only) 1. Enabled 2. Enabled and other login methods disabled 3. Disabled */ status?: pulumi.Input; }