UNPKG

@pulumiverse/fortios

Version:

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

166 lines (165 loc) 5.64 kB
import * as pulumi from "@pulumi/pulumi"; /** * Define known domain controller servers. Applies to FortiOS Version `6.4.0,6.4.1,6.4.2,6.4.10,6.4.11,6.4.12,6.4.13,6.4.14,6.4.15,7.0.0`. * * ## Import * * CredentialStore DomainController can be imported using any of these accepted formats: * * ```sh * $ pulumi import fortios:credentialstore/domaincontroller:Domaincontroller labelname {{server_name}} * ``` * * If you do not want to import arguments of block: * * $ export "FORTIOS_IMPORT_TABLE"="false" * * ```sh * $ pulumi import fortios:credentialstore/domaincontroller:Domaincontroller labelname {{server_name}} * ``` * * $ unset "FORTIOS_IMPORT_TABLE" */ export declare class Domaincontroller extends pulumi.CustomResource { /** * Get an existing Domaincontroller 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?: DomaincontrollerState, opts?: pulumi.CustomResourceOptions): Domaincontroller; /** * Returns true if the given object is an instance of Domaincontroller. 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 Domaincontroller; /** * Fully qualified domain name (FQDN). */ readonly domainName: pulumi.Output<string>; /** * Hostname of the server to connect to. */ readonly hostname: pulumi.Output<string>; /** * IPv4 server address. */ readonly ip: pulumi.Output<string>; /** * IPv6 server address. */ readonly ip6: pulumi.Output<string>; /** * Password for specified username. */ readonly password: pulumi.Output<string | undefined>; /** * Port number of service. Port number 0 indicates automatic discovery. */ readonly port: pulumi.Output<number>; /** * Name of the server to connect to. */ readonly serverName: pulumi.Output<string>; /** * User name to sign in with. Must have proper permissions for service. */ readonly username: 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>; /** * Create a Domaincontroller 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?: DomaincontrollerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Domaincontroller resources. */ export interface DomaincontrollerState { /** * Fully qualified domain name (FQDN). */ domainName?: pulumi.Input<string>; /** * Hostname of the server to connect to. */ hostname?: pulumi.Input<string>; /** * IPv4 server address. */ ip?: pulumi.Input<string>; /** * IPv6 server address. */ ip6?: pulumi.Input<string>; /** * Password for specified username. */ password?: pulumi.Input<string>; /** * Port number of service. Port number 0 indicates automatic discovery. */ port?: pulumi.Input<number>; /** * Name of the server to connect to. */ serverName?: pulumi.Input<string>; /** * User name to sign in with. Must have proper permissions for service. */ username?: 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>; } /** * The set of arguments for constructing a Domaincontroller resource. */ export interface DomaincontrollerArgs { /** * Fully qualified domain name (FQDN). */ domainName?: pulumi.Input<string>; /** * Hostname of the server to connect to. */ hostname?: pulumi.Input<string>; /** * IPv4 server address. */ ip?: pulumi.Input<string>; /** * IPv6 server address. */ ip6?: pulumi.Input<string>; /** * Password for specified username. */ password?: pulumi.Input<string>; /** * Port number of service. Port number 0 indicates automatic discovery. */ port?: pulumi.Input<number>; /** * Name of the server to connect to. */ serverName?: pulumi.Input<string>; /** * User name to sign in with. Must have proper permissions for service. */ username?: 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>; }