import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create a default supported Idp configuration for an Identity Toolkit project. */ export declare class DefaultSupportedIdpConfig extends pulumi.CustomResource { /** * Get an existing DefaultSupportedIdpConfig 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): DefaultSupportedIdpConfig; /** * Returns true if the given object is an instance of DefaultSupportedIdpConfig. 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 DefaultSupportedIdpConfig; /** * Additional config for Apple-based projects. */ readonly appleSignInConfig: pulumi.Output; /** * OAuth client ID. */ readonly clientId: pulumi.Output; /** * OAuth client secret. */ readonly clientSecret: pulumi.Output; /** * True if allows the user to sign in with the provider. */ readonly enabled: pulumi.Output; /** * The id of the Idp to create a config for. Call ListDefaultSupportedIdps for list of all default supported Idps. */ readonly idpId: pulumi.Output; /** * The name of the DefaultSupportedIdpConfig resource, for example: "projects/my-awesome-project/defaultSupportedIdpConfigs/google.com" */ readonly name: pulumi.Output; readonly project: pulumi.Output; readonly tenantId: pulumi.Output; /** * Create a DefaultSupportedIdpConfig 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: DefaultSupportedIdpConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DefaultSupportedIdpConfig resource. */ export interface DefaultSupportedIdpConfigArgs { /** * Additional config for Apple-based projects. */ appleSignInConfig?: pulumi.Input; /** * OAuth client ID. */ clientId?: pulumi.Input; /** * OAuth client secret. */ clientSecret?: pulumi.Input; /** * True if allows the user to sign in with the provider. */ enabled?: pulumi.Input; /** * The id of the Idp to create a config for. Call ListDefaultSupportedIdps for list of all default supported Idps. */ idpId?: pulumi.Input; /** * The name of the DefaultSupportedIdpConfig resource, for example: "projects/my-awesome-project/defaultSupportedIdpConfigs/google.com" */ name?: pulumi.Input; project?: pulumi.Input; tenantId: pulumi.Input; }