import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleSsoConnector = new cloudflare.SsoConnector("example_sso_connector", { * accountId: "023e105f4ecef8ad9ca31a8372d0c353", * emailDomain: "example.com", * beginVerification: true, * useFedrampLanguage: false, * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/ssoConnector:SsoConnector example '/' * ``` */ export declare class SsoConnector extends pulumi.CustomResource { /** * Get an existing SsoConnector 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?: SsoConnectorState, opts?: pulumi.CustomResourceOptions): SsoConnector; /** * Returns true if the given object is an instance of SsoConnector. 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 SsoConnector; /** * Account identifier tag. */ readonly accountId: pulumi.Output; /** * Begin the verification process after creation */ readonly beginVerification: pulumi.Output; /** * Timestamp for the creation of the SSO connector */ readonly createdOn: pulumi.Output; /** * Email domain of the new SSO connector */ readonly emailDomain: pulumi.Output; /** * SSO Connector enabled state */ readonly enabled: pulumi.Output; /** * Timestamp for the last update of the SSO connector */ readonly updatedOn: pulumi.Output; /** * Controls the display of FedRAMP language to the user during SSO login */ readonly useFedrampLanguage: pulumi.Output; readonly verification: pulumi.Output; /** * Create a SsoConnector 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: SsoConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SsoConnector resources. */ export interface SsoConnectorState { /** * Account identifier tag. */ accountId?: pulumi.Input; /** * Begin the verification process after creation */ beginVerification?: pulumi.Input; /** * Timestamp for the creation of the SSO connector */ createdOn?: pulumi.Input; /** * Email domain of the new SSO connector */ emailDomain?: pulumi.Input; /** * SSO Connector enabled state */ enabled?: pulumi.Input; /** * Timestamp for the last update of the SSO connector */ updatedOn?: pulumi.Input; /** * Controls the display of FedRAMP language to the user during SSO login */ useFedrampLanguage?: pulumi.Input; verification?: pulumi.Input; } /** * The set of arguments for constructing a SsoConnector resource. */ export interface SsoConnectorArgs { /** * Account identifier tag. */ accountId: pulumi.Input; /** * Begin the verification process after creation */ beginVerification?: pulumi.Input; /** * Email domain of the new SSO connector */ emailDomain: pulumi.Input; /** * SSO Connector enabled state */ enabled?: pulumi.Input; /** * Controls the display of FedRAMP language to the user during SSO login */ useFedrampLanguage?: pulumi.Input; }