@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
67 lines (66 loc) • 1.83 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* SamlServerProfile data source
*/
export declare function getSamlServerProfile(args: GetSamlServerProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetSamlServerProfileResult>;
/**
* A collection of arguments for invoking getSamlServerProfile.
*/
export interface GetSamlServerProfileArgs {
/**
* The UUID of the SAML server profile
*/
id: string;
/**
* The name of the SAML server profile
*/
name?: string;
}
/**
* A collection of values returned by getSamlServerProfile.
*/
export interface GetSamlServerProfileResult {
/**
* The identity provider certificate
*/
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;
/**
* The name of the SAML server profile
*/
readonly name: string;
readonly sloBindings: string;
readonly snippet: string;
readonly ssoBindings: string;
readonly ssoUrl: string;
readonly tfid: string;
readonly validateIdpCertificate: boolean;
readonly wantAuthRequestsSigned: boolean;
}
/**
* SamlServerProfile data source
*/
export declare function getSamlServerProfileOutput(args: GetSamlServerProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSamlServerProfileResult>;
/**
* A collection of arguments for invoking getSamlServerProfile.
*/
export interface GetSamlServerProfileOutputArgs {
/**
* The UUID of the SAML server profile
*/
id: pulumi.Input<string>;
/**
* The name of the SAML server profile
*/
name?: pulumi.Input<string>;
}