@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
127 lines (126 loc) • 3.81 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 device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: string;
/**
* The UUID of the SAML server profile
*/
id: string;
/**
* The name of the SAML server profile
*/
name?: string;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: 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
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly device: string;
/**
* The identity provider ID
*/
readonly entityId: string;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly folder: string;
/**
* The UUID of the SAML server profile
*/
readonly id: string;
/**
* Maxiumum clock skew
*/
readonly maxClockSkew: number;
/**
* The name of the SAML server profile
*/
readonly name: string;
/**
* SAML HTTP binding for SLO requests to the identity provider
*/
readonly sloBindings: string;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly snippet: string;
/**
* SAML HTTP binding for SSO requests to the identity provider
*/
readonly ssoBindings: string;
/**
* Identity provider SSO URL
*/
readonly ssoUrl: string;
readonly tfid: string;
/**
* Validate the identity provider certificate?
*/
readonly validateIdpCertificate: boolean;
/**
* Sign SAML message to the identity provider?
*/
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 device in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
device?: pulumi.Input<string>;
/**
* The folder in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
folder?: pulumi.Input<string>;
/**
* The UUID of the SAML server profile
*/
id: pulumi.Input<string>;
/**
* The name of the SAML server profile
*/
name?: pulumi.Input<string>;
/**
* The snippet in which the resource is defined
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
snippet?: pulumi.Input<string>;
}