1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectFirewallProxyaddress
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectFirewallProxyaddress

Explore with Pulumi AI

Configure web proxy address.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • header_group: fortimanager.ObjectFirewallProxyaddressHeadergroup
  • tagging: fortimanager.ObjectFirewallProxyaddressTagging

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectFirewallProxyaddress("trname", {
    caseSensitivity: "disable",
    color: 3,
    referrer: "disable",
    type: "url",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectFirewallProxyaddress("trname",
    case_sensitivity="disable",
    color=3,
    referrer="disable",
    type="url")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewObjectFirewallProxyaddress(ctx, "trname", &fortimanager.ObjectFirewallProxyaddressArgs{
			CaseSensitivity: pulumi.String("disable"),
			Color:           pulumi.Float64(3),
			Referrer:        pulumi.String("disable"),
			Type:            pulumi.String("url"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectFirewallProxyaddress("trname", new()
    {
        CaseSensitivity = "disable",
        Color = 3,
        Referrer = "disable",
        Type = "url",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallProxyaddress;
import com.pulumi.fortimanager.ObjectFirewallProxyaddressArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new ObjectFirewallProxyaddress("trname", ObjectFirewallProxyaddressArgs.builder()
            .caseSensitivity("disable")
            .color(3)
            .referrer("disable")
            .type("url")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectFirewallProxyaddress
    properties:
      caseSensitivity: disable
      color: 3
      referrer: disable
      type: url
Copy

Create ObjectFirewallProxyaddress Resource

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

Constructor syntax

new ObjectFirewallProxyaddress(name: string, args?: ObjectFirewallProxyaddressArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallProxyaddress(resource_name: str,
                               args: Optional[ObjectFirewallProxyaddressArgs] = None,
                               opts: Optional[ResourceOptions] = None)

@overload
def ObjectFirewallProxyaddress(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               _image_base64: Optional[str] = None,
                               adom: Optional[str] = None,
                               applications: Optional[Sequence[str]] = None,
                               case_sensitivity: Optional[str] = None,
                               category: Optional[str] = None,
                               color: Optional[float] = None,
                               comment: Optional[str] = None,
                               dynamic_sort_subtable: Optional[str] = None,
                               header: Optional[str] = None,
                               header_groups: Optional[Sequence[ObjectFirewallProxyaddressHeaderGroupArgs]] = None,
                               header_name: Optional[str] = None,
                               host: Optional[str] = None,
                               host_regex: Optional[str] = None,
                               methods: Optional[Sequence[str]] = None,
                               name: Optional[str] = None,
                               object_firewall_proxyaddress_id: Optional[str] = None,
                               path: Optional[str] = None,
                               query: Optional[str] = None,
                               referrer: Optional[str] = None,
                               scopetype: Optional[str] = None,
                               taggings: Optional[Sequence[ObjectFirewallProxyaddressTaggingArgs]] = None,
                               type: Optional[str] = None,
                               ua_max_ver: Optional[str] = None,
                               ua_min_ver: Optional[str] = None,
                               uas: Optional[Sequence[str]] = None,
                               uuid: Optional[str] = None,
                               visibility: Optional[str] = None)
func NewObjectFirewallProxyaddress(ctx *Context, name string, args *ObjectFirewallProxyaddressArgs, opts ...ResourceOption) (*ObjectFirewallProxyaddress, error)
public ObjectFirewallProxyaddress(string name, ObjectFirewallProxyaddressArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallProxyaddress(String name, ObjectFirewallProxyaddressArgs args)
public ObjectFirewallProxyaddress(String name, ObjectFirewallProxyaddressArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallProxyaddress
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectFirewallProxyaddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectFirewallProxyaddressArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectFirewallProxyaddressArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectFirewallProxyaddressArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectFirewallProxyaddressArgs
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 objectFirewallProxyaddressResource = new Fortimanager.ObjectFirewallProxyaddress("objectFirewallProxyaddressResource", new()
{
    _imageBase64 = "string",
    Adom = "string",
    Applications = new[]
    {
        "string",
    },
    CaseSensitivity = "string",
    Category = "string",
    Color = 0,
    Comment = "string",
    DynamicSortSubtable = "string",
    Header = "string",
    HeaderGroups = new[]
    {
        new Fortimanager.Inputs.ObjectFirewallProxyaddressHeaderGroupArgs
        {
            CaseSensitivity = "string",
            Header = "string",
            HeaderName = "string",
            Id = 0,
        },
    },
    HeaderName = "string",
    Host = "string",
    HostRegex = "string",
    Methods = new[]
    {
        "string",
    },
    Name = "string",
    ObjectFirewallProxyaddressId = "string",
    Path = "string",
    Query = "string",
    Referrer = "string",
    Scopetype = "string",
    Taggings = new[]
    {
        new Fortimanager.Inputs.ObjectFirewallProxyaddressTaggingArgs
        {
            Category = "string",
            Name = "string",
            Tags = new[]
            {
                "string",
            },
        },
    },
    Type = "string",
    UaMaxVer = "string",
    UaMinVer = "string",
    Uas = new[]
    {
        "string",
    },
    Uuid = "string",
    Visibility = "string",
});
Copy
example, err := fortimanager.NewObjectFirewallProxyaddress(ctx, "objectFirewallProxyaddressResource", &fortimanager.ObjectFirewallProxyaddressArgs{
_imageBase64: pulumi.String("string"),
Adom: pulumi.String("string"),
Applications: pulumi.StringArray{
pulumi.String("string"),
},
CaseSensitivity: pulumi.String("string"),
Category: pulumi.String("string"),
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
DynamicSortSubtable: pulumi.String("string"),
Header: pulumi.String("string"),
HeaderGroups: .ObjectFirewallProxyaddressHeaderGroupTypeArray{
&.ObjectFirewallProxyaddressHeaderGroupTypeArgs{
CaseSensitivity: pulumi.String("string"),
Header: pulumi.String("string"),
HeaderName: pulumi.String("string"),
Id: pulumi.Float64(0),
},
},
HeaderName: pulumi.String("string"),
Host: pulumi.String("string"),
HostRegex: pulumi.String("string"),
Methods: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectFirewallProxyaddressId: pulumi.String("string"),
Path: pulumi.String("string"),
Query: pulumi.String("string"),
Referrer: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Taggings: .ObjectFirewallProxyaddressTaggingTypeArray{
&.ObjectFirewallProxyaddressTaggingTypeArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Type: pulumi.String("string"),
UaMaxVer: pulumi.String("string"),
UaMinVer: pulumi.String("string"),
Uas: pulumi.StringArray{
pulumi.String("string"),
},
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
Copy
var objectFirewallProxyaddressResource = new ObjectFirewallProxyaddress("objectFirewallProxyaddressResource", ObjectFirewallProxyaddressArgs.builder()
    ._imageBase64("string")
    .adom("string")
    .applications("string")
    .caseSensitivity("string")
    .category("string")
    .color(0)
    .comment("string")
    .dynamicSortSubtable("string")
    .header("string")
    .headerGroups(ObjectFirewallProxyaddressHeaderGroupArgs.builder()
        .caseSensitivity("string")
        .header("string")
        .headerName("string")
        .id(0)
        .build())
    .headerName("string")
    .host("string")
    .hostRegex("string")
    .methods("string")
    .name("string")
    .objectFirewallProxyaddressId("string")
    .path("string")
    .query("string")
    .referrer("string")
    .scopetype("string")
    .taggings(ObjectFirewallProxyaddressTaggingArgs.builder()
        .category("string")
        .name("string")
        .tags("string")
        .build())
    .type("string")
    .uaMaxVer("string")
    .uaMinVer("string")
    .uas("string")
    .uuid("string")
    .visibility("string")
    .build());
Copy
object_firewall_proxyaddress_resource = fortimanager.ObjectFirewallProxyaddress("objectFirewallProxyaddressResource",
    _image_base64="string",
    adom="string",
    applications=["string"],
    case_sensitivity="string",
    category="string",
    color=0,
    comment="string",
    dynamic_sort_subtable="string",
    header="string",
    header_groups=[{
        "case_sensitivity": "string",
        "header": "string",
        "header_name": "string",
        "id": 0,
    }],
    header_name="string",
    host="string",
    host_regex="string",
    methods=["string"],
    name="string",
    object_firewall_proxyaddress_id="string",
    path="string",
    query="string",
    referrer="string",
    scopetype="string",
    taggings=[{
        "category": "string",
        "name": "string",
        "tags": ["string"],
    }],
    type="string",
    ua_max_ver="string",
    ua_min_ver="string",
    uas=["string"],
    uuid="string",
    visibility="string")
Copy
const objectFirewallProxyaddressResource = new fortimanager.ObjectFirewallProxyaddress("objectFirewallProxyaddressResource", {
    _imageBase64: "string",
    adom: "string",
    applications: ["string"],
    caseSensitivity: "string",
    category: "string",
    color: 0,
    comment: "string",
    dynamicSortSubtable: "string",
    header: "string",
    headerGroups: [{
        caseSensitivity: "string",
        header: "string",
        headerName: "string",
        id: 0,
    }],
    headerName: "string",
    host: "string",
    hostRegex: "string",
    methods: ["string"],
    name: "string",
    objectFirewallProxyaddressId: "string",
    path: "string",
    query: "string",
    referrer: "string",
    scopetype: "string",
    taggings: [{
        category: "string",
        name: "string",
        tags: ["string"],
    }],
    type: "string",
    uaMaxVer: "string",
    uaMinVer: "string",
    uas: ["string"],
    uuid: "string",
    visibility: "string",
});
Copy
type: fortimanager:ObjectFirewallProxyaddress
properties:
    _imageBase64: string
    adom: string
    applications:
        - string
    caseSensitivity: string
    category: string
    color: 0
    comment: string
    dynamicSortSubtable: string
    header: string
    headerGroups:
        - caseSensitivity: string
          header: string
          headerName: string
          id: 0
    headerName: string
    host: string
    hostRegex: string
    methods:
        - string
    name: string
    objectFirewallProxyaddressId: string
    path: string
    query: string
    referrer: string
    scopetype: string
    taggings:
        - category: string
          name: string
          tags:
            - string
    type: string
    uaMaxVer: string
    uaMinVer: string
    uas:
        - string
    uuid: string
    visibility: string
Copy

ObjectFirewallProxyaddress 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 ObjectFirewallProxyaddress resource accepts the following input properties:

Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Applications List<string>
SaaS application.
CaseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
Category string
FortiGuard category ID.
Color double
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Optional comments.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Header string
HTTP header name as a regular expression.
HeaderGroups List<ObjectFirewallProxyaddressHeaderGroup>
Header-Group. The structure of header_group block is documented below.
HeaderName string
Name of HTTP header.
Host string
Address object for the host.
HostRegex string
Host name as a regular expression.
Methods List<string>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
Name string
Address name.
ObjectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
Path string
URL path as a regular expression.
Query string
Match the query part of the URL as a regular expression.
Referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
Taggings List<ObjectFirewallProxyaddressTagging>
Tagging. The structure of tagging block is documented below.
Type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
UaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
UaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
Uas List<string>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Applications []string
SaaS application.
CaseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
Category string
FortiGuard category ID.
Color float64
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Optional comments.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Header string
HTTP header name as a regular expression.
HeaderGroups []ObjectFirewallProxyaddressHeaderGroupTypeArgs
Header-Group. The structure of header_group block is documented below.
HeaderName string
Name of HTTP header.
Host string
Address object for the host.
HostRegex string
Host name as a regular expression.
Methods []string
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
Name string
Address name.
ObjectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
Path string
URL path as a regular expression.
Query string
Match the query part of the URL as a regular expression.
Referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
Taggings []ObjectFirewallProxyaddressTaggingTypeArgs
Tagging. The structure of tagging block is documented below.
Type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
UaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
UaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
Uas []string
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
_imageBase64 String
_Image-Base64.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications List<String>
SaaS application.
caseSensitivity String
Enable to make the pattern case sensitive. Valid values: disable, enable.
category String
FortiGuard category ID.
color Double
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Optional comments.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header String
HTTP header name as a regular expression.
headerGroups List<ObjectFirewallProxyaddressHeaderGroup>
Header-Group. The structure of header_group block is documented below.
headerName String
Name of HTTP header.
host String
Address object for the host.
hostRegex String
Host name as a regular expression.
methods List<String>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name String
Address name.
objectFirewallProxyaddressId String
an identifier for the resource with format {{name}}.
path String
URL path as a regular expression.
query String
Match the query part of the URL as a regular expression.
referrer String
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings List<ObjectFirewallProxyaddressTagging>
Tagging. The structure of tagging block is documented below.
type String
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer String
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer String
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas List<String>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility String
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications string[]
SaaS application.
caseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
category string
FortiGuard category ID.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment string
Optional comments.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header string
HTTP header name as a regular expression.
headerGroups ObjectFirewallProxyaddressHeaderGroup[]
Header-Group. The structure of header_group block is documented below.
headerName string
Name of HTTP header.
host string
Address object for the host.
hostRegex string
Host name as a regular expression.
methods string[]
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name string
Address name.
objectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
path string
URL path as a regular expression.
query string
Match the query part of the URL as a regular expression.
referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings ObjectFirewallProxyaddressTagging[]
Tagging. The structure of tagging block is documented below.
type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas string[]
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_image_base64 str
_Image-Base64.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications Sequence[str]
SaaS application.
case_sensitivity str
Enable to make the pattern case sensitive. Valid values: disable, enable.
category str
FortiGuard category ID.
color float
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment str
Optional comments.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header str
HTTP header name as a regular expression.
header_groups Sequence[ObjectFirewallProxyaddressHeaderGroupArgs]
Header-Group. The structure of header_group block is documented below.
header_name str
Name of HTTP header.
host str
Address object for the host.
host_regex str
Host name as a regular expression.
methods Sequence[str]
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name str
Address name.
object_firewall_proxyaddress_id str
an identifier for the resource with format {{name}}.
path str
URL path as a regular expression.
query str
Match the query part of the URL as a regular expression.
referrer str
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings Sequence[ObjectFirewallProxyaddressTaggingArgs]
Tagging. The structure of tagging block is documented below.
type str
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
ua_max_ver str
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
ua_min_ver str
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas Sequence[str]
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility str
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 String
_Image-Base64.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications List<String>
SaaS application.
caseSensitivity String
Enable to make the pattern case sensitive. Valid values: disable, enable.
category String
FortiGuard category ID.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Optional comments.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header String
HTTP header name as a regular expression.
headerGroups List<Property Map>
Header-Group. The structure of header_group block is documented below.
headerName String
Name of HTTP header.
host String
Address object for the host.
hostRegex String
Host name as a regular expression.
methods List<String>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name String
Address name.
objectFirewallProxyaddressId String
an identifier for the resource with format {{name}}.
path String
URL path as a regular expression.
query String
Match the query part of the URL as a regular expression.
referrer String
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
type String
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer String
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer String
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas List<String>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility String
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.

Outputs

All input properties are implicitly available as output properties. Additionally, the ObjectFirewallProxyaddress 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 ObjectFirewallProxyaddress Resource

Get an existing ObjectFirewallProxyaddress 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?: ObjectFirewallProxyaddressState, opts?: CustomResourceOptions): ObjectFirewallProxyaddress
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        _image_base64: Optional[str] = None,
        adom: Optional[str] = None,
        applications: Optional[Sequence[str]] = None,
        case_sensitivity: Optional[str] = None,
        category: Optional[str] = None,
        color: Optional[float] = None,
        comment: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        header: Optional[str] = None,
        header_groups: Optional[Sequence[ObjectFirewallProxyaddressHeaderGroupArgs]] = None,
        header_name: Optional[str] = None,
        host: Optional[str] = None,
        host_regex: Optional[str] = None,
        methods: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        object_firewall_proxyaddress_id: Optional[str] = None,
        path: Optional[str] = None,
        query: Optional[str] = None,
        referrer: Optional[str] = None,
        scopetype: Optional[str] = None,
        taggings: Optional[Sequence[ObjectFirewallProxyaddressTaggingArgs]] = None,
        type: Optional[str] = None,
        ua_max_ver: Optional[str] = None,
        ua_min_ver: Optional[str] = None,
        uas: Optional[Sequence[str]] = None,
        uuid: Optional[str] = None,
        visibility: Optional[str] = None) -> ObjectFirewallProxyaddress
func GetObjectFirewallProxyaddress(ctx *Context, name string, id IDInput, state *ObjectFirewallProxyaddressState, opts ...ResourceOption) (*ObjectFirewallProxyaddress, error)
public static ObjectFirewallProxyaddress Get(string name, Input<string> id, ObjectFirewallProxyaddressState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallProxyaddress get(String name, Output<String> id, ObjectFirewallProxyaddressState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallProxyaddress    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Applications List<string>
SaaS application.
CaseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
Category string
FortiGuard category ID.
Color double
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Optional comments.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Header string
HTTP header name as a regular expression.
HeaderGroups List<ObjectFirewallProxyaddressHeaderGroup>
Header-Group. The structure of header_group block is documented below.
HeaderName string
Name of HTTP header.
Host string
Address object for the host.
HostRegex string
Host name as a regular expression.
Methods List<string>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
Name string
Address name.
ObjectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
Path string
URL path as a regular expression.
Query string
Match the query part of the URL as a regular expression.
Referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
Taggings List<ObjectFirewallProxyaddressTagging>
Tagging. The structure of tagging block is documented below.
Type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
UaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
UaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
Uas List<string>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Applications []string
SaaS application.
CaseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
Category string
FortiGuard category ID.
Color float64
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
Comment string
Optional comments.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
Header string
HTTP header name as a regular expression.
HeaderGroups []ObjectFirewallProxyaddressHeaderGroupTypeArgs
Header-Group. The structure of header_group block is documented below.
HeaderName string
Name of HTTP header.
Host string
Address object for the host.
HostRegex string
Host name as a regular expression.
Methods []string
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
Name string
Address name.
ObjectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
Path string
URL path as a regular expression.
Query string
Match the query part of the URL as a regular expression.
Referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
Taggings []ObjectFirewallProxyaddressTaggingTypeArgs
Tagging. The structure of tagging block is documented below.
Type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
UaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
UaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
Uas []string
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
Uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
_imageBase64 String
_Image-Base64.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications List<String>
SaaS application.
caseSensitivity String
Enable to make the pattern case sensitive. Valid values: disable, enable.
category String
FortiGuard category ID.
color Double
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Optional comments.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header String
HTTP header name as a regular expression.
headerGroups List<ObjectFirewallProxyaddressHeaderGroup>
Header-Group. The structure of header_group block is documented below.
headerName String
Name of HTTP header.
host String
Address object for the host.
hostRegex String
Host name as a regular expression.
methods List<String>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name String
Address name.
objectFirewallProxyaddressId String
an identifier for the resource with format {{name}}.
path String
URL path as a regular expression.
query String
Match the query part of the URL as a regular expression.
referrer String
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings List<ObjectFirewallProxyaddressTagging>
Tagging. The structure of tagging block is documented below.
type String
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer String
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer String
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas List<String>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility String
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 string
_Image-Base64.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications string[]
SaaS application.
caseSensitivity string
Enable to make the pattern case sensitive. Valid values: disable, enable.
category string
FortiGuard category ID.
color number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment string
Optional comments.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header string
HTTP header name as a regular expression.
headerGroups ObjectFirewallProxyaddressHeaderGroup[]
Header-Group. The structure of header_group block is documented below.
headerName string
Name of HTTP header.
host string
Address object for the host.
hostRegex string
Host name as a regular expression.
methods string[]
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name string
Address name.
objectFirewallProxyaddressId string
an identifier for the resource with format {{name}}.
path string
URL path as a regular expression.
query string
Match the query part of the URL as a regular expression.
referrer string
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings ObjectFirewallProxyaddressTagging[]
Tagging. The structure of tagging block is documented below.
type string
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer string
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer string
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas string[]
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid string
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility string
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_image_base64 str
_Image-Base64.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications Sequence[str]
SaaS application.
case_sensitivity str
Enable to make the pattern case sensitive. Valid values: disable, enable.
category str
FortiGuard category ID.
color float
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment str
Optional comments.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header str
HTTP header name as a regular expression.
header_groups Sequence[ObjectFirewallProxyaddressHeaderGroupArgs]
Header-Group. The structure of header_group block is documented below.
header_name str
Name of HTTP header.
host str
Address object for the host.
host_regex str
Host name as a regular expression.
methods Sequence[str]
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name str
Address name.
object_firewall_proxyaddress_id str
an identifier for the resource with format {{name}}.
path str
URL path as a regular expression.
query str
Match the query part of the URL as a regular expression.
referrer str
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings Sequence[ObjectFirewallProxyaddressTaggingArgs]
Tagging. The structure of tagging block is documented below.
type str
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
ua_max_ver str
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
ua_min_ver str
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas Sequence[str]
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid str
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility str
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.
_imageBase64 String
_Image-Base64.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
applications List<String>
SaaS application.
caseSensitivity String
Enable to make the pattern case sensitive. Valid values: disable, enable.
category String
FortiGuard category ID.
color Number
Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets value to 1).
comment String
Optional comments.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
header String
HTTP header name as a regular expression.
headerGroups List<Property Map>
Header-Group. The structure of header_group block is documented below.
headerName String
Name of HTTP header.
host String
Address object for the host.
hostRegex String
Host name as a regular expression.
methods List<String>
HTTP request methods to be used. Valid values: delete, get, head, options, post, put, trace, connect.
name String
Address name.
objectFirewallProxyaddressId String
an identifier for the resource with format {{name}}.
path String
URL path as a regular expression.
query String
Match the query part of the URL as a regular expression.
referrer String
Enable/disable use of referrer field in the HTTP header to match the address. Valid values: disable, enable.
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.
taggings List<Property Map>
Tagging. The structure of tagging block is documented below.
type String
Proxy address type. Valid values: host-regex, url, category, method, ua, header, src-advanced, dst-advanced.
uaMaxVer String
Maximum version of the user agent specified in dotted notation. For example, use 120 with the ua field set to "chrome" to require Google Chrome's maximum version must be 120.
uaMinVer String
Minimum version of the user agent specified in dotted notation. For example, use 90.0.1 with the ua field set to "chrome" to require Google Chrome's minimum version must be 90.0.1.
uas List<String>
Names of browsers to be used as user agent. Valid values: chrome, ms, firefox, safari, other.
uuid String
Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
visibility String
Enable/disable visibility of the object in the GUI. Valid values: disable, enable.

Supporting Types

ObjectFirewallProxyaddressHeaderGroup
, ObjectFirewallProxyaddressHeaderGroupArgs

CaseSensitivity string
Case sensitivity in pattern. Valid values: disable, enable.
Header string
HTTP header regular expression.
HeaderName string
HTTP header.
Id double
ID.
CaseSensitivity string
Case sensitivity in pattern. Valid values: disable, enable.
Header string
HTTP header regular expression.
HeaderName string
HTTP header.
Id float64
ID.
caseSensitivity String
Case sensitivity in pattern. Valid values: disable, enable.
header String
HTTP header regular expression.
headerName String
HTTP header.
id Double
ID.
caseSensitivity string
Case sensitivity in pattern. Valid values: disable, enable.
header string
HTTP header regular expression.
headerName string
HTTP header.
id number
ID.
case_sensitivity str
Case sensitivity in pattern. Valid values: disable, enable.
header str
HTTP header regular expression.
header_name str
HTTP header.
id float
ID.
caseSensitivity String
Case sensitivity in pattern. Valid values: disable, enable.
header String
HTTP header regular expression.
headerName String
HTTP header.
id Number
ID.

ObjectFirewallProxyaddressTagging
, ObjectFirewallProxyaddressTaggingArgs

Category string
Tag category.
Name string
Tagging entry name.
Tags List<string>
Tags.
Category string
Tag category.
Name string
Tagging entry name.
Tags []string
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.
category string
Tag category.
name string
Tagging entry name.
tags string[]
Tags.
category str
Tag category.
name str
Tagging entry name.
tags Sequence[str]
Tags.
category String
Tag category.
name String
Tagging entry name.
tags List<String>
Tags.

Import

ObjectFirewall ProxyAddress can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallProxyaddress:ObjectFirewallProxyaddress labelname {{name}}
Copy

$ 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.