@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
198 lines (197 loc) • 6.27 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* SamlServerProfile resource
*/
export declare class SamlServerProfile extends pulumi.CustomResource {
/**
* Get an existing SamlServerProfile 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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SamlServerProfileState, opts?: pulumi.CustomResourceOptions): SamlServerProfile;
/**
* Returns true if the given object is an instance of SamlServerProfile. 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 SamlServerProfile;
/**
* The identity provider certificate
*/
readonly certificate: pulumi.Output<string>;
/**
* The device in which the resource is defined
*/
readonly device: pulumi.Output<string | undefined>;
/**
* The identity provider ID
*/
readonly entityId: pulumi.Output<string>;
/**
* The folder in which the resource is defined
*
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly folder: pulumi.Output<string | undefined>;
/**
* Maxiumum clock skew
*/
readonly maxClockSkew: pulumi.Output<number | undefined>;
/**
* The name of the SAML server profile
*/
readonly name: pulumi.Output<string>;
/**
* SAML HTTP binding for SLO requests to the identity provider
*/
readonly sloBindings: pulumi.Output<string | undefined>;
/**
* The snippet in which the resource is defined
*
* > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`.
*/
readonly snippet: pulumi.Output<string | undefined>;
/**
* SAML HTTP binding for SSO requests to the identity provider
*/
readonly ssoBindings: pulumi.Output<string>;
/**
* Identity provider SSO URL
*/
readonly ssoUrl: pulumi.Output<string>;
readonly tfid: pulumi.Output<string>;
/**
* Validate the identity provider certificate?
*/
readonly validateIdpCertificate: pulumi.Output<boolean | undefined>;
/**
* Sign SAML message to the identity provider?
*/
readonly wantAuthRequestsSigned: pulumi.Output<boolean | undefined>;
/**
* Create a SamlServerProfile 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: SamlServerProfileArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering SamlServerProfile resources.
*/
export interface SamlServerProfileState {
/**
* The identity provider certificate
*/
certificate?: pulumi.Input<string>;
/**
* The device in which the resource is defined
*/
device?: pulumi.Input<string>;
/**
* The identity provider ID
*/
entityId?: 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>;
/**
* Maxiumum clock skew
*/
maxClockSkew?: pulumi.Input<number>;
/**
* The name of the SAML server profile
*/
name?: pulumi.Input<string>;
/**
* SAML HTTP binding for SLO requests to the identity provider
*/
sloBindings?: 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>;
/**
* SAML HTTP binding for SSO requests to the identity provider
*/
ssoBindings?: pulumi.Input<string>;
/**
* Identity provider SSO URL
*/
ssoUrl?: pulumi.Input<string>;
tfid?: pulumi.Input<string>;
/**
* Validate the identity provider certificate?
*/
validateIdpCertificate?: pulumi.Input<boolean>;
/**
* Sign SAML message to the identity provider?
*/
wantAuthRequestsSigned?: pulumi.Input<boolean>;
}
/**
* The set of arguments for constructing a SamlServerProfile resource.
*/
export interface SamlServerProfileArgs {
/**
* The identity provider certificate
*/
certificate: pulumi.Input<string>;
/**
* The device in which the resource is defined
*/
device?: pulumi.Input<string>;
/**
* The identity provider ID
*/
entityId: 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>;
/**
* Maxiumum clock skew
*/
maxClockSkew?: pulumi.Input<number>;
/**
* The name of the SAML server profile
*/
name?: pulumi.Input<string>;
/**
* SAML HTTP binding for SLO requests to the identity provider
*/
sloBindings?: 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>;
/**
* SAML HTTP binding for SSO requests to the identity provider
*/
ssoBindings: pulumi.Input<string>;
/**
* Identity provider SSO URL
*/
ssoUrl: pulumi.Input<string>;
/**
* Validate the identity provider certificate?
*/
validateIdpCertificate?: pulumi.Input<boolean>;
/**
* Sign SAML message to the identity provider?
*/
wantAuthRequestsSigned?: pulumi.Input<boolean>;
}