import * as pulumi from "@pulumi/pulumi"; /** * SamlServerProfile resource * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * const scmSamlServerProfile1 = new scm.SamlServerProfile("scm_saml_server_profile_1", { * folder: "ngfw-shared", * name: "scm-saml-server-prof-1", * certificate: "Global Authentication Cookie Cert", * entityId: "123", * ssoUrl: "http://example.com", * ssoBindings: "post", * }); * const scmSamlServerProfile2 = new scm.SamlServerProfile("scm_saml_server_profile_2", { * folder: "ngfw-shared", * name: "scm-saml-server-prof-2", * certificate: "Global Authentication Cookie Cert", * entityId: "test_id", * maxClockSkew: 100, * sloBindings: "redirect", * ssoBindings: "redirect", * ssoUrl: "http://target.com", * validateIdpCertificate: true, * }); * const scmSamlServerProfile3 = new scm.SamlServerProfile("scm_saml_server_profile_3", { * folder: "ngfw-shared", * name: "scm-saml-server-prof-3", * certificate: "Global Authentication Cookie Cert", * entityId: "test_123", * maxClockSkew: 900, * sloBindings: "post", * ssoBindings: "redirect", * sloUrl: "http://auth.com", * ssoUrl: "http://okta.com", * validateIdpCertificate: false, * wantAuthRequestsSigned: false, * }); * ``` * * ## Import * * The following command can be used to import a resource not managed by Terraform: * * ```sh * $ pulumi import scm:index/samlServerProfile:SamlServerProfile example folder:::id * ``` * * or * * ```sh * $ pulumi import scm:index/samlServerProfile:SamlServerProfile example :snippet::id * ``` * * or * * ```sh * $ pulumi import scm:index/samlServerProfile:SamlServerProfile example ::device:id * ``` * * **Note:** Please provide just one of folder, snippet, or device for the import command. */ 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, 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; /** * The device in which the resource is defined */ readonly device: pulumi.Output; /** * The identity provider ID */ readonly entityId: pulumi.Output; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: pulumi.Output; /** * Maxiumum clock skew */ readonly maxClockSkew: pulumi.Output; /** * The name of the SAML server profile */ readonly name: pulumi.Output; /** * SAML HTTP binding for SLO requests to the identity provider */ readonly sloBindings: pulumi.Output; /** * Identity provider SLO URL */ readonly sloUrl: pulumi.Output; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: pulumi.Output; /** * SAML HTTP binding for SSO requests to the identity provider */ readonly ssoBindings: pulumi.Output; /** * Identity provider SSO URL */ readonly ssoUrl: pulumi.Output; /** * The Terraform ID. */ readonly tfid: pulumi.Output; /** * Validate the identity provider certificate? */ readonly validateIdpCertificate: pulumi.Output; /** * Sign SAML message to the identity provider? */ readonly wantAuthRequestsSigned: pulumi.Output; /** * 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; /** * The device in which the resource is defined */ device?: pulumi.Input; /** * The identity provider ID */ entityId?: pulumi.Input; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input; /** * Maxiumum clock skew */ maxClockSkew?: pulumi.Input; /** * The name of the SAML server profile */ name?: pulumi.Input; /** * SAML HTTP binding for SLO requests to the identity provider */ sloBindings?: pulumi.Input; /** * Identity provider SLO URL */ sloUrl?: pulumi.Input; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input; /** * SAML HTTP binding for SSO requests to the identity provider */ ssoBindings?: pulumi.Input; /** * Identity provider SSO URL */ ssoUrl?: pulumi.Input; /** * The Terraform ID. */ tfid?: pulumi.Input; /** * Validate the identity provider certificate? */ validateIdpCertificate?: pulumi.Input; /** * Sign SAML message to the identity provider? */ wantAuthRequestsSigned?: pulumi.Input; } /** * The set of arguments for constructing a SamlServerProfile resource. */ export interface SamlServerProfileArgs { /** * The identity provider certificate */ certificate: pulumi.Input; /** * The device in which the resource is defined */ device?: pulumi.Input; /** * The identity provider ID */ entityId: pulumi.Input; /** * The folder in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input; /** * Maxiumum clock skew */ maxClockSkew?: pulumi.Input; /** * The name of the SAML server profile */ name?: pulumi.Input; /** * SAML HTTP binding for SLO requests to the identity provider */ sloBindings?: pulumi.Input; /** * Identity provider SLO URL */ sloUrl?: pulumi.Input; /** * The snippet in which the resource is defined * * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input; /** * SAML HTTP binding for SSO requests to the identity provider */ ssoBindings: pulumi.Input; /** * Identity provider SSO URL */ ssoUrl: pulumi.Input; /** * Validate the identity provider certificate? */ validateIdpCertificate?: pulumi.Input; /** * Sign SAML message to the identity provider? */ wantAuthRequestsSigned?: pulumi.Input; } //# sourceMappingURL=samlServerProfile.d.ts.map