UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

214 lines (213 loc) 7.88 kB
import * as pulumi from "@pulumi/pulumi"; /** * Configure external identity provider. Applies to FortiOS Version `7.2.8,7.4.2,7.4.3,7.4.4`. * * ## Import * * User ExternalIdentityProvider can be imported using any of these accepted formats: * * ```sh * $ pulumi import fortios:user/externalidentityprovider:Externalidentityprovider labelname {{name}} * ``` * * If you do not want to import arguments of block: * * $ export "FORTIOS_IMPORT_TABLE"="false" * * ```sh * $ pulumi import fortios:user/externalidentityprovider:Externalidentityprovider labelname {{name}} * ``` * * $ unset "FORTIOS_IMPORT_TABLE" */ export declare class Externalidentityprovider extends pulumi.CustomResource { /** * Get an existing Externalidentityprovider 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?: ExternalidentityproviderState, opts?: pulumi.CustomResourceOptions): Externalidentityprovider; /** * Returns true if the given object is an instance of Externalidentityprovider. 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 Externalidentityprovider; /** * Group attribute name in authentication query. */ readonly groupAttrName: pulumi.Output<string>; /** * Specify outgoing interface to reach server. */ readonly interface: pulumi.Output<string>; /** * Specify how to select outgoing interface to reach server. Valid values: `auto`, `sdwan`, `specify`. */ readonly interfaceSelectMethod: pulumi.Output<string>; /** * External identity provider name. */ readonly name: pulumi.Output<string>; /** * External identity provider service port number (0 to use default). */ readonly port: pulumi.Output<number>; /** * Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: `disable`, `enable`. */ readonly serverIdentityCheck: pulumi.Output<string>; /** * Use this IPv4/v6 address to connect to the external identity provider. */ readonly sourceIp: pulumi.Output<string>; /** * Connection timeout value in seconds (default=5). */ readonly timeout: pulumi.Output<number>; /** * External identity provider type. Valid values: `ms-graph`. */ readonly type: pulumi.Output<string>; /** * External identity provider URL (e.g. "https://example.com:8080/api/v1"). */ readonly url: pulumi.Output<string>; /** * User attribute name in authentication query. */ readonly userAttrName: pulumi.Output<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ readonly vdomparam: pulumi.Output<string>; /** * External identity API version. Valid values: `v1.0`, `beta`. */ readonly version: pulumi.Output<string>; /** * Create a Externalidentityprovider 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?: ExternalidentityproviderArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Externalidentityprovider resources. */ export interface ExternalidentityproviderState { /** * Group attribute name in authentication query. */ groupAttrName?: pulumi.Input<string>; /** * Specify outgoing interface to reach server. */ interface?: pulumi.Input<string>; /** * Specify how to select outgoing interface to reach server. Valid values: `auto`, `sdwan`, `specify`. */ interfaceSelectMethod?: pulumi.Input<string>; /** * External identity provider name. */ name?: pulumi.Input<string>; /** * External identity provider service port number (0 to use default). */ port?: pulumi.Input<number>; /** * Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: `disable`, `enable`. */ serverIdentityCheck?: pulumi.Input<string>; /** * Use this IPv4/v6 address to connect to the external identity provider. */ sourceIp?: pulumi.Input<string>; /** * Connection timeout value in seconds (default=5). */ timeout?: pulumi.Input<number>; /** * External identity provider type. Valid values: `ms-graph`. */ type?: pulumi.Input<string>; /** * External identity provider URL (e.g. "https://example.com:8080/api/v1"). */ url?: pulumi.Input<string>; /** * User attribute name in authentication query. */ userAttrName?: pulumi.Input<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; /** * External identity API version. Valid values: `v1.0`, `beta`. */ version?: pulumi.Input<string>; } /** * The set of arguments for constructing a Externalidentityprovider resource. */ export interface ExternalidentityproviderArgs { /** * Group attribute name in authentication query. */ groupAttrName?: pulumi.Input<string>; /** * Specify outgoing interface to reach server. */ interface?: pulumi.Input<string>; /** * Specify how to select outgoing interface to reach server. Valid values: `auto`, `sdwan`, `specify`. */ interfaceSelectMethod?: pulumi.Input<string>; /** * External identity provider name. */ name?: pulumi.Input<string>; /** * External identity provider service port number (0 to use default). */ port?: pulumi.Input<number>; /** * Enable/disable server's identity check against its certificate and subject alternative name(s). Valid values: `disable`, `enable`. */ serverIdentityCheck?: pulumi.Input<string>; /** * Use this IPv4/v6 address to connect to the external identity provider. */ sourceIp?: pulumi.Input<string>; /** * Connection timeout value in seconds (default=5). */ timeout?: pulumi.Input<number>; /** * External identity provider type. Valid values: `ms-graph`. */ type?: pulumi.Input<string>; /** * External identity provider URL (e.g. "https://example.com:8080/api/v1"). */ url?: pulumi.Input<string>; /** * User attribute name in authentication query. */ userAttrName?: pulumi.Input<string>; /** * Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; /** * External identity API version. Valid values: `v1.0`, `beta`. */ version?: pulumi.Input<string>; }