import * as pulumi from "@pulumi/pulumi"; /** * SamlServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM SAML Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM SAML Server Profile you want to find. * const scmSamlServerProf = scm.getSamlServerProfile({ * id: "a17abcfc-d37d-4b8a-bb09-102ffdc3abef", * }); * export const scmSamlServerProfileDetails = { * folder: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.folder), * name: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.name), * id: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.id), * ssoUrl: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.ssoUrl), * }; * ``` */ export declare function getSamlServerProfile(args: GetSamlServerProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSamlServerProfile. */ export interface GetSamlServerProfileArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * The UUID of the SAML server profile */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getSamlServerProfile. */ export interface GetSamlServerProfileResult { readonly certificate: string; /** * The device in which the resource is defined */ readonly device: string; readonly entityId: string; readonly folder: string; /** * The UUID of the SAML server profile */ readonly id: string; readonly maxClockSkew: number; readonly name: string; readonly sloBindings: string; readonly sloUrl: string; readonly snippet: string; readonly ssoBindings: string; readonly ssoUrl: string; readonly tfid: string; readonly validateIdpCertificate: boolean; readonly wantAuthRequestsSigned: boolean; } /** * SamlServerProfile data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // * // Data source to retrieve a single SCM SAML Server Profile object by its ID. * // * // Replace the ID with the UUID of the SCM SAML Server Profile you want to find. * const scmSamlServerProf = scm.getSamlServerProfile({ * id: "a17abcfc-d37d-4b8a-bb09-102ffdc3abef", * }); * export const scmSamlServerProfileDetails = { * folder: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.folder), * name: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.name), * id: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.id), * ssoUrl: scmSamlServerProf.then(scmSamlServerProf => scmSamlServerProf.ssoUrl), * }; * ``` */ export declare function getSamlServerProfileOutput(args: GetSamlServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSamlServerProfile. */ export interface GetSamlServerProfileOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * The UUID of the SAML server profile */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getSamlServerProfile.d.ts.map