import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets an InboundSamlSsoProfile. */ export declare function getInboundSamlSsoProfile(args: GetInboundSamlSsoProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetInboundSamlSsoProfileArgs { inboundSamlSsoProfileId: string; } export interface GetInboundSamlSsoProfileResult { /** * Immutable. The customer. For example: `customers/C0123abc`. */ readonly customer: string; /** * Human-readable name of the SAML SSO profile. */ readonly displayName: string; /** * SAML identity provider configuration. */ readonly idpConfig: outputs.cloudidentity.v1.SamlIdpConfigResponse; /** * [Resource name](https://cloud.google.com/apis/design/resource_names) of the SAML SSO profile. */ readonly name: string; /** * 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: outputs.cloudidentity.v1.SamlSpConfigResponse; } /** * Gets an InboundSamlSsoProfile. */ export declare function getInboundSamlSsoProfileOutput(args: GetInboundSamlSsoProfileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetInboundSamlSsoProfileOutputArgs { inboundSamlSsoProfileId: pulumi.Input; }