import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates an InboundSamlSsoProfile for a customer. * Auto-naming is currently not supported for this resource. */ export declare class InboundSamlSsoProfile extends pulumi.CustomResource { /** * Get an existing InboundSamlSsoProfile 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): InboundSamlSsoProfile; /** * Returns true if the given object is an instance of InboundSamlSsoProfile. 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 InboundSamlSsoProfile; /** * Immutable. The customer. For example: `customers/C0123abc`. */ readonly customer: pulumi.Output; /** * Human-readable name of the SAML SSO profile. */ readonly displayName: pulumi.Output; /** * SAML identity provider configuration. */ readonly idpConfig: pulumi.Output; /** * [Resource name](https://cloud.google.com/apis/design/resource_names) of the SAML SSO profile. */ readonly name: pulumi.Output; /** * SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider. */ readonly spConfig: pulumi.Output; /** * Create a InboundSamlSsoProfile 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?: InboundSamlSsoProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InboundSamlSsoProfile resource. */ export interface InboundSamlSsoProfileArgs { /** * Immutable. The customer. For example: `customers/C0123abc`. */ customer?: pulumi.Input; /** * Human-readable name of the SAML SSO profile. */ displayName?: pulumi.Input; /** * SAML identity provider configuration. */ idpConfig?: pulumi.Input; /** * SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider. */ spConfig?: pulumi.Input; }