import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create an inbound SAML configuration for an Identity Toolkit project. */ export declare class InboundSamlConfig extends pulumi.CustomResource { /** * Get an existing InboundSamlConfig 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): InboundSamlConfig; /** * Returns true if the given object is an instance of InboundSamlConfig. 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 InboundSamlConfig; /** * The config's display name set by developers. */ readonly displayName: pulumi.Output; /** * True if allows the user to sign in with the provider. */ readonly enabled: pulumi.Output; /** * The SAML IdP (Identity Provider) configuration when the project acts as the relying party. */ readonly idpConfig: pulumi.Output; /** * The id to use for this config. */ readonly inboundSamlConfigId: pulumi.Output; /** * The name of the InboundSamlConfig resource, for example: 'projects/my-awesome-project/inboundSamlConfigs/my-config-id'. Ignored during create requests. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The SAML SP (Service Provider) configuration when the project acts as the relying party to receive and accept an authentication assertion issued by a SAML identity provider. */ readonly spConfig: pulumi.Output; readonly tenantId: pulumi.Output; /** * Create a InboundSamlConfig 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: InboundSamlConfigArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InboundSamlConfig resource. */ export interface InboundSamlConfigArgs { /** * The config's display name set by developers. */ displayName?: pulumi.Input; /** * True if allows the user to sign in with the provider. */ enabled?: pulumi.Input; /** * The SAML IdP (Identity Provider) configuration when the project acts as the relying party. */ idpConfig?: pulumi.Input; /** * The id to use for this config. */ inboundSamlConfigId?: pulumi.Input; /** * The name of the InboundSamlConfig resource, for example: 'projects/my-awesome-project/inboundSamlConfigs/my-config-id'. Ignored during create requests. */ name?: pulumi.Input; project?: pulumi.Input; /** * The SAML SP (Service Provider) configuration when the project acts as the relying party to receive and accept an authentication assertion issued by a SAML identity provider. */ spConfig?: pulumi.Input; tenantId: pulumi.Input; }