1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWebproxyIsolatorserver
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectWebproxyIsolatorserver

Explore with Pulumi AI

fortimanager logo
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

    Configure forward-server addresses.

    Create ObjectWebproxyIsolatorserver Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ObjectWebproxyIsolatorserver(name: string, args?: ObjectWebproxyIsolatorserverArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebproxyIsolatorserver(resource_name: str,
                                     args: Optional[ObjectWebproxyIsolatorserverArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebproxyIsolatorserver(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     addr_type: Optional[str] = None,
                                     adom: Optional[str] = None,
                                     comment: Optional[str] = None,
                                     fqdn: Optional[str] = None,
                                     interface_select_method: Optional[str] = None,
                                     interfaces: Optional[Sequence[str]] = None,
                                     ip: Optional[str] = None,
                                     ipv6: Optional[str] = None,
                                     name: Optional[str] = None,
                                     object_webproxy_isolatorserver_id: Optional[str] = None,
                                     port: Optional[float] = None,
                                     scopetype: Optional[str] = None,
                                     vrf_select: Optional[float] = None)
    func NewObjectWebproxyIsolatorserver(ctx *Context, name string, args *ObjectWebproxyIsolatorserverArgs, opts ...ResourceOption) (*ObjectWebproxyIsolatorserver, error)
    public ObjectWebproxyIsolatorserver(string name, ObjectWebproxyIsolatorserverArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWebproxyIsolatorserver(String name, ObjectWebproxyIsolatorserverArgs args)
    public ObjectWebproxyIsolatorserver(String name, ObjectWebproxyIsolatorserverArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebproxyIsolatorserver
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ObjectWebproxyIsolatorserverArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ObjectWebproxyIsolatorserverArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ObjectWebproxyIsolatorserverArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebproxyIsolatorserverArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebproxyIsolatorserverArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var objectWebproxyIsolatorserverResource = new Fortimanager.ObjectWebproxyIsolatorserver("objectWebproxyIsolatorserverResource", new()
    {
        AddrType = "string",
        Adom = "string",
        Comment = "string",
        Fqdn = "string",
        InterfaceSelectMethod = "string",
        Interfaces = new[]
        {
            "string",
        },
        Ip = "string",
        Ipv6 = "string",
        Name = "string",
        ObjectWebproxyIsolatorserverId = "string",
        Port = 0,
        Scopetype = "string",
        VrfSelect = 0,
    });
    
    example, err := fortimanager.NewObjectWebproxyIsolatorserver(ctx, "objectWebproxyIsolatorserverResource", &fortimanager.ObjectWebproxyIsolatorserverArgs{
    	AddrType:              pulumi.String("string"),
    	Adom:                  pulumi.String("string"),
    	Comment:               pulumi.String("string"),
    	Fqdn:                  pulumi.String("string"),
    	InterfaceSelectMethod: pulumi.String("string"),
    	Interfaces: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Ip:                             pulumi.String("string"),
    	Ipv6:                           pulumi.String("string"),
    	Name:                           pulumi.String("string"),
    	ObjectWebproxyIsolatorserverId: pulumi.String("string"),
    	Port:                           pulumi.Float64(0),
    	Scopetype:                      pulumi.String("string"),
    	VrfSelect:                      pulumi.Float64(0),
    })
    
    var objectWebproxyIsolatorserverResource = new ObjectWebproxyIsolatorserver("objectWebproxyIsolatorserverResource", ObjectWebproxyIsolatorserverArgs.builder()
        .addrType("string")
        .adom("string")
        .comment("string")
        .fqdn("string")
        .interfaceSelectMethod("string")
        .interfaces("string")
        .ip("string")
        .ipv6("string")
        .name("string")
        .objectWebproxyIsolatorserverId("string")
        .port(0)
        .scopetype("string")
        .vrfSelect(0)
        .build());
    
    object_webproxy_isolatorserver_resource = fortimanager.ObjectWebproxyIsolatorserver("objectWebproxyIsolatorserverResource",
        addr_type="string",
        adom="string",
        comment="string",
        fqdn="string",
        interface_select_method="string",
        interfaces=["string"],
        ip="string",
        ipv6="string",
        name="string",
        object_webproxy_isolatorserver_id="string",
        port=0,
        scopetype="string",
        vrf_select=0)
    
    const objectWebproxyIsolatorserverResource = new fortimanager.ObjectWebproxyIsolatorserver("objectWebproxyIsolatorserverResource", {
        addrType: "string",
        adom: "string",
        comment: "string",
        fqdn: "string",
        interfaceSelectMethod: "string",
        interfaces: ["string"],
        ip: "string",
        ipv6: "string",
        name: "string",
        objectWebproxyIsolatorserverId: "string",
        port: 0,
        scopetype: "string",
        vrfSelect: 0,
    });
    
    type: fortimanager:ObjectWebproxyIsolatorserver
    properties:
        addrType: string
        adom: string
        comment: string
        fqdn: string
        interfaceSelectMethod: string
        interfaces:
            - string
        ip: string
        ipv6: string
        name: string
        objectWebproxyIsolatorserverId: string
        port: 0
        scopetype: string
        vrfSelect: 0
    

    ObjectWebproxyIsolatorserver Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ObjectWebproxyIsolatorserver resource accepts the following input properties:

    AddrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces List<string>
    Specify outgoing interface to reach server.
    Ip string
    Forward proxy server IP address.
    Ipv6 string
    Forward proxy server IPv6 address.
    Name string
    Server name.
    ObjectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    Port double
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VrfSelect double
    VRF ID used for connection to server.
    AddrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces []string
    Specify outgoing interface to reach server.
    Ip string
    Forward proxy server IP address.
    Ipv6 string
    Forward proxy server IPv6 address.
    Name string
    Server name.
    ObjectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    Port float64
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VrfSelect float64
    VRF ID used for connection to server.
    addrType String
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    fqdn String
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    ip String
    Forward proxy server IP address.
    ipv6 String
    Forward proxy server IPv6 address.
    name String
    Server name.
    objectWebproxyIsolatorserverId String
    an identifier for the resource with format {{name}}.
    port Double
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect Double
    VRF ID used for connection to server.
    addrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces string[]
    Specify outgoing interface to reach server.
    ip string
    Forward proxy server IP address.
    ipv6 string
    Forward proxy server IPv6 address.
    name string
    Server name.
    objectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    port number
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect number
    VRF ID used for connection to server.
    addr_type str
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    fqdn str
    Forward server Fully Qualified Domain Name (FQDN).
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces Sequence[str]
    Specify outgoing interface to reach server.
    ip str
    Forward proxy server IP address.
    ipv6 str
    Forward proxy server IPv6 address.
    name str
    Server name.
    object_webproxy_isolatorserver_id str
    an identifier for the resource with format {{name}}.
    port float
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrf_select float
    VRF ID used for connection to server.
    addrType String
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    fqdn String
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    ip String
    Forward proxy server IP address.
    ipv6 String
    Forward proxy server IPv6 address.
    name String
    Server name.
    objectWebproxyIsolatorserverId String
    an identifier for the resource with format {{name}}.
    port Number
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect Number
    VRF ID used for connection to server.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ObjectWebproxyIsolatorserver resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ObjectWebproxyIsolatorserver Resource

    Get an existing ObjectWebproxyIsolatorserver resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ObjectWebproxyIsolatorserverState, opts?: CustomResourceOptions): ObjectWebproxyIsolatorserver
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            addr_type: Optional[str] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            fqdn: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            interfaces: Optional[Sequence[str]] = None,
            ip: Optional[str] = None,
            ipv6: Optional[str] = None,
            name: Optional[str] = None,
            object_webproxy_isolatorserver_id: Optional[str] = None,
            port: Optional[float] = None,
            scopetype: Optional[str] = None,
            vrf_select: Optional[float] = None) -> ObjectWebproxyIsolatorserver
    func GetObjectWebproxyIsolatorserver(ctx *Context, name string, id IDInput, state *ObjectWebproxyIsolatorserverState, opts ...ResourceOption) (*ObjectWebproxyIsolatorserver, error)
    public static ObjectWebproxyIsolatorserver Get(string name, Input<string> id, ObjectWebproxyIsolatorserverState? state, CustomResourceOptions? opts = null)
    public static ObjectWebproxyIsolatorserver get(String name, Output<String> id, ObjectWebproxyIsolatorserverState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebproxyIsolatorserver    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AddrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces List<string>
    Specify outgoing interface to reach server.
    Ip string
    Forward proxy server IP address.
    Ipv6 string
    Forward proxy server IPv6 address.
    Name string
    Server name.
    ObjectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    Port double
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VrfSelect double
    VRF ID used for connection to server.
    AddrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    Fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Interfaces []string
    Specify outgoing interface to reach server.
    Ip string
    Forward proxy server IP address.
    Ipv6 string
    Forward proxy server IPv6 address.
    Name string
    Server name.
    ObjectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    Port float64
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    VrfSelect float64
    VRF ID used for connection to server.
    addrType String
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    fqdn String
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    ip String
    Forward proxy server IP address.
    ipv6 String
    Forward proxy server IPv6 address.
    name String
    Server name.
    objectWebproxyIsolatorserverId String
    an identifier for the resource with format {{name}}.
    port Double
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect Double
    VRF ID used for connection to server.
    addrType string
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    fqdn string
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces string[]
    Specify outgoing interface to reach server.
    ip string
    Forward proxy server IP address.
    ipv6 string
    Forward proxy server IPv6 address.
    name string
    Server name.
    objectWebproxyIsolatorserverId string
    an identifier for the resource with format {{name}}.
    port number
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect number
    VRF ID used for connection to server.
    addr_type str
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    fqdn str
    Forward server Fully Qualified Domain Name (FQDN).
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces Sequence[str]
    Specify outgoing interface to reach server.
    ip str
    Forward proxy server IP address.
    ipv6 str
    Forward proxy server IPv6 address.
    name str
    Server name.
    object_webproxy_isolatorserver_id str
    an identifier for the resource with format {{name}}.
    port float
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrf_select float
    VRF ID used for connection to server.
    addrType String
    Address type of the forwarding proxy server: IP or FQDN. Valid values: fqdn, ipv6, ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    fqdn String
    Forward server Fully Qualified Domain Name (FQDN).
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interfaces List<String>
    Specify outgoing interface to reach server.
    ip String
    Forward proxy server IP address.
    ipv6 String
    Forward proxy server IPv6 address.
    name String
    Server name.
    objectWebproxyIsolatorserverId String
    an identifier for the resource with format {{name}}.
    port Number
    Port number that the forwarding server expects to receive HTTP sessions on (1 - 65535, default = 3128).
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    vrfSelect Number
    VRF ID used for connection to server.

    Import

    ObjectWebProxy IsolatorServer can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebproxyIsolatorserver:ObjectWebproxyIsolatorserver labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev