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

fortimanager.ObjectFirewallProxyaddrgrp

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Configure web proxy address group.

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

    • tagging: fortimanager.ObjectFirewallProxyaddrgrpTagging

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trnameObjectFirewallProxyaddress = new fortimanager.ObjectFirewallProxyaddress("trnameObjectFirewallProxyaddress", {
        caseSensitivity: "disable",
        color: 1,
        comment: "This is a Terraform example",
        host: "all",
        type: "ua",
        uas: ["chrome"],
    });
    const trnameObjectFirewallProxyaddrgrp = new fortimanager.ObjectFirewallProxyaddrgrp("trnameObjectFirewallProxyaddrgrp", {
        comment: "This is a Terraform example",
        members: ["terr-firewall-proxy-address"],
        type: "dst",
    }, {
        dependsOn: [trnameObjectFirewallProxyaddress],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_firewall_proxyaddress = fortimanager.ObjectFirewallProxyaddress("trnameObjectFirewallProxyaddress",
        case_sensitivity="disable",
        color=1,
        comment="This is a Terraform example",
        host="all",
        type="ua",
        uas=["chrome"])
    trname_object_firewall_proxyaddrgrp = fortimanager.ObjectFirewallProxyaddrgrp("trnameObjectFirewallProxyaddrgrp",
        comment="This is a Terraform example",
        members=["terr-firewall-proxy-address"],
        type="dst",
        opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_proxyaddress]))
    
    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 {
    		trnameObjectFirewallProxyaddress, err := fortimanager.NewObjectFirewallProxyaddress(ctx, "trnameObjectFirewallProxyaddress", &fortimanager.ObjectFirewallProxyaddressArgs{
    			CaseSensitivity: pulumi.String("disable"),
    			Color:           pulumi.Float64(1),
    			Comment:         pulumi.String("This is a Terraform example"),
    			Host:            pulumi.String("all"),
    			Type:            pulumi.String("ua"),
    			Uas: pulumi.StringArray{
    				pulumi.String("chrome"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectFirewallProxyaddrgrp(ctx, "trnameObjectFirewallProxyaddrgrp", &fortimanager.ObjectFirewallProxyaddrgrpArgs{
    			Comment: pulumi.String("This is a Terraform example"),
    			Members: pulumi.StringArray{
    				pulumi.String("terr-firewall-proxy-address"),
    			},
    			Type: pulumi.String("dst"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectFirewallProxyaddress,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trnameObjectFirewallProxyaddress = new Fortimanager.ObjectFirewallProxyaddress("trnameObjectFirewallProxyaddress", new()
        {
            CaseSensitivity = "disable",
            Color = 1,
            Comment = "This is a Terraform example",
            Host = "all",
            Type = "ua",
            Uas = new[]
            {
                "chrome",
            },
        });
    
        var trnameObjectFirewallProxyaddrgrp = new Fortimanager.ObjectFirewallProxyaddrgrp("trnameObjectFirewallProxyaddrgrp", new()
        {
            Comment = "This is a Terraform example",
            Members = new[]
            {
                "terr-firewall-proxy-address",
            },
            Type = "dst",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectFirewallProxyaddress,
            },
        });
    
    });
    
    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 com.pulumi.fortimanager.ObjectFirewallProxyaddrgrp;
    import com.pulumi.fortimanager.ObjectFirewallProxyaddrgrpArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 trnameObjectFirewallProxyaddress = new ObjectFirewallProxyaddress("trnameObjectFirewallProxyaddress", ObjectFirewallProxyaddressArgs.builder()
                .caseSensitivity("disable")
                .color(1)
                .comment("This is a Terraform example")
                .host("all")
                .type("ua")
                .uas("chrome")
                .build());
    
            var trnameObjectFirewallProxyaddrgrp = new ObjectFirewallProxyaddrgrp("trnameObjectFirewallProxyaddrgrp", ObjectFirewallProxyaddrgrpArgs.builder()
                .comment("This is a Terraform example")
                .members("terr-firewall-proxy-address")
                .type("dst")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectFirewallProxyaddress)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectFirewallProxyaddress:
        type: fortimanager:ObjectFirewallProxyaddress
        properties:
          caseSensitivity: disable
          color: 1
          comment: This is a Terraform example
          host: all
          type: ua
          uas:
            - chrome
      trnameObjectFirewallProxyaddrgrp:
        type: fortimanager:ObjectFirewallProxyaddrgrp
        properties:
          comment: This is a Terraform example
          members:
            - terr-firewall-proxy-address
          type: dst
        options:
          dependsOn:
            - ${trnameObjectFirewallProxyaddress}
    

    Create ObjectFirewallProxyaddrgrp Resource

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

    Constructor syntax

    new ObjectFirewallProxyaddrgrp(name: string, args?: ObjectFirewallProxyaddrgrpArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectFirewallProxyaddrgrp(resource_name: str,
                                   args: Optional[ObjectFirewallProxyaddrgrpArgs] = None,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectFirewallProxyaddrgrp(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   _image_base64: Optional[str] = None,
                                   adom: Optional[str] = None,
                                   color: Optional[float] = None,
                                   comment: Optional[str] = None,
                                   dynamic_sort_subtable: Optional[str] = None,
                                   members: Optional[Sequence[str]] = None,
                                   name: Optional[str] = None,
                                   object_firewall_proxyaddrgrp_id: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   taggings: Optional[Sequence[ObjectFirewallProxyaddrgrpTaggingArgs]] = None,
                                   type: Optional[str] = None,
                                   uuid: Optional[str] = None,
                                   visibility: Optional[str] = None)
    func NewObjectFirewallProxyaddrgrp(ctx *Context, name string, args *ObjectFirewallProxyaddrgrpArgs, opts ...ResourceOption) (*ObjectFirewallProxyaddrgrp, error)
    public ObjectFirewallProxyaddrgrp(string name, ObjectFirewallProxyaddrgrpArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectFirewallProxyaddrgrp(String name, ObjectFirewallProxyaddrgrpArgs args)
    public ObjectFirewallProxyaddrgrp(String name, ObjectFirewallProxyaddrgrpArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectFirewallProxyaddrgrp
    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 ObjectFirewallProxyaddrgrpArgs
    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 ObjectFirewallProxyaddrgrpArgs
    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 ObjectFirewallProxyaddrgrpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectFirewallProxyaddrgrpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectFirewallProxyaddrgrpArgs
    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 objectFirewallProxyaddrgrpResource = new Fortimanager.ObjectFirewallProxyaddrgrp("objectFirewallProxyaddrgrpResource", new()
    {
        _imageBase64 = "string",
        Adom = "string",
        Color = 0,
        Comment = "string",
        DynamicSortSubtable = "string",
        Members = new[]
        {
            "string",
        },
        Name = "string",
        ObjectFirewallProxyaddrgrpId = "string",
        Scopetype = "string",
        Taggings = new[]
        {
            new Fortimanager.Inputs.ObjectFirewallProxyaddrgrpTaggingArgs
            {
                Category = "string",
                Name = "string",
                Tags = new[]
                {
                    "string",
                },
            },
        },
        Type = "string",
        Uuid = "string",
        Visibility = "string",
    });
    
    example, err := fortimanager.NewObjectFirewallProxyaddrgrp(ctx, "objectFirewallProxyaddrgrpResource", &fortimanager.ObjectFirewallProxyaddrgrpArgs{
    _imageBase64: pulumi.String("string"),
    Adom: pulumi.String("string"),
    Color: pulumi.Float64(0),
    Comment: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    Members: pulumi.StringArray{
    pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    ObjectFirewallProxyaddrgrpId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Taggings: .ObjectFirewallProxyaddrgrpTaggingTypeArray{
    &.ObjectFirewallProxyaddrgrpTaggingTypeArgs{
    Category: pulumi.String("string"),
    Name: pulumi.String("string"),
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Type: pulumi.String("string"),
    Uuid: pulumi.String("string"),
    Visibility: pulumi.String("string"),
    })
    
    var objectFirewallProxyaddrgrpResource = new ObjectFirewallProxyaddrgrp("objectFirewallProxyaddrgrpResource", ObjectFirewallProxyaddrgrpArgs.builder()
        ._imageBase64("string")
        .adom("string")
        .color(0)
        .comment("string")
        .dynamicSortSubtable("string")
        .members("string")
        .name("string")
        .objectFirewallProxyaddrgrpId("string")
        .scopetype("string")
        .taggings(ObjectFirewallProxyaddrgrpTaggingArgs.builder()
            .category("string")
            .name("string")
            .tags("string")
            .build())
        .type("string")
        .uuid("string")
        .visibility("string")
        .build());
    
    object_firewall_proxyaddrgrp_resource = fortimanager.ObjectFirewallProxyaddrgrp("objectFirewallProxyaddrgrpResource",
        _image_base64="string",
        adom="string",
        color=0,
        comment="string",
        dynamic_sort_subtable="string",
        members=["string"],
        name="string",
        object_firewall_proxyaddrgrp_id="string",
        scopetype="string",
        taggings=[{
            "category": "string",
            "name": "string",
            "tags": ["string"],
        }],
        type="string",
        uuid="string",
        visibility="string")
    
    const objectFirewallProxyaddrgrpResource = new fortimanager.ObjectFirewallProxyaddrgrp("objectFirewallProxyaddrgrpResource", {
        _imageBase64: "string",
        adom: "string",
        color: 0,
        comment: "string",
        dynamicSortSubtable: "string",
        members: ["string"],
        name: "string",
        objectFirewallProxyaddrgrpId: "string",
        scopetype: "string",
        taggings: [{
            category: "string",
            name: "string",
            tags: ["string"],
        }],
        type: "string",
        uuid: "string",
        visibility: "string",
    });
    
    type: fortimanager:ObjectFirewallProxyaddrgrp
    properties:
        _imageBase64: string
        adom: string
        color: 0
        comment: string
        dynamicSortSubtable: string
        members:
            - string
        name: string
        objectFirewallProxyaddrgrpId: string
        scopetype: string
        taggings:
            - category: string
              name: string
              tags:
                - string
        type: string
        uuid: string
        visibility: string
    

    ObjectFirewallProxyaddrgrp 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 ObjectFirewallProxyaddrgrp 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.
    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.
    Members List<string>
    Members of address group.
    Name string
    Address group name.
    ObjectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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<ObjectFirewallProxyaddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    Type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    Members []string
    Members of address group.
    Name string
    Address group name.
    ObjectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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 []ObjectFirewallProxyaddrgrpTaggingTypeArgs
    Tagging. The structure of tagging block is documented below.
    Type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members List<String>
    Members of address group.
    name String
    Address group name.
    objectFirewallProxyaddrgrpId String
    an identifier for the resource with format {{name}}.
    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<ObjectFirewallProxyaddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    type String
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members string[]
    Members of address group.
    name string
    Address group name.
    objectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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 ObjectFirewallProxyaddrgrpTagging[]
    Tagging. The structure of tagging block is documented below.
    type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members Sequence[str]
    Members of address group.
    name str
    Address group name.
    object_firewall_proxyaddrgrp_id str
    an identifier for the resource with format {{name}}.
    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[ObjectFirewallProxyaddrgrpTaggingArgs]
    Tagging. The structure of tagging block is documented below.
    type str
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members List<String>
    Members of address group.
    name String
    Address group name.
    objectFirewallProxyaddrgrpId String
    an identifier for the resource with format {{name}}.
    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
    Source or destination address group type. Valid values: src, dst.
    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 ObjectFirewallProxyaddrgrp 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 ObjectFirewallProxyaddrgrp Resource

    Get an existing ObjectFirewallProxyaddrgrp 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?: ObjectFirewallProxyaddrgrpState, opts?: CustomResourceOptions): ObjectFirewallProxyaddrgrp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            _image_base64: Optional[str] = None,
            adom: Optional[str] = None,
            color: Optional[float] = None,
            comment: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            members: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            object_firewall_proxyaddrgrp_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            taggings: Optional[Sequence[ObjectFirewallProxyaddrgrpTaggingArgs]] = None,
            type: Optional[str] = None,
            uuid: Optional[str] = None,
            visibility: Optional[str] = None) -> ObjectFirewallProxyaddrgrp
    func GetObjectFirewallProxyaddrgrp(ctx *Context, name string, id IDInput, state *ObjectFirewallProxyaddrgrpState, opts ...ResourceOption) (*ObjectFirewallProxyaddrgrp, error)
    public static ObjectFirewallProxyaddrgrp Get(string name, Input<string> id, ObjectFirewallProxyaddrgrpState? state, CustomResourceOptions? opts = null)
    public static ObjectFirewallProxyaddrgrp get(String name, Output<String> id, ObjectFirewallProxyaddrgrpState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectFirewallProxyaddrgrp    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    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.
    Members List<string>
    Members of address group.
    Name string
    Address group name.
    ObjectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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<ObjectFirewallProxyaddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    Type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    Members []string
    Members of address group.
    Name string
    Address group name.
    ObjectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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 []ObjectFirewallProxyaddrgrpTaggingTypeArgs
    Tagging. The structure of tagging block is documented below.
    Type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members List<String>
    Members of address group.
    name String
    Address group name.
    objectFirewallProxyaddrgrpId String
    an identifier for the resource with format {{name}}.
    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<ObjectFirewallProxyaddrgrpTagging>
    Tagging. The structure of tagging block is documented below.
    type String
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members string[]
    Members of address group.
    name string
    Address group name.
    objectFirewallProxyaddrgrpId string
    an identifier for the resource with format {{name}}.
    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 ObjectFirewallProxyaddrgrpTagging[]
    Tagging. The structure of tagging block is documented below.
    type string
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members Sequence[str]
    Members of address group.
    name str
    Address group name.
    object_firewall_proxyaddrgrp_id str
    an identifier for the resource with format {{name}}.
    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[ObjectFirewallProxyaddrgrpTaggingArgs]
    Tagging. The structure of tagging block is documented below.
    type str
    Source or destination address group type. Valid values: src, dst.
    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.
    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.
    members List<String>
    Members of address group.
    name String
    Address group name.
    objectFirewallProxyaddrgrpId String
    an identifier for the resource with format {{name}}.
    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
    Source or destination address group type. Valid values: src, dst.
    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

    ObjectFirewallProxyaddrgrpTagging, ObjectFirewallProxyaddrgrpTaggingArgs

    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 ProxyAddrgrp can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectFirewallProxyaddrgrp:ObjectFirewallProxyaddrgrp 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.13.0 published on Thursday, Mar 13, 2025 by fortinetdev