fortimanager.ObjectFirewallAddrgrp6
Explore with Pulumi AI
Configure IPv6 address groups.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dynamic_mapping
:fortimanager.ObjectFirewallAddrgrp6DynamicMapping
tagging
:fortimanager.ObjectFirewallAddrgrp6Tagging
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trnameObjectFirewallAddress6 = new fortimanager.ObjectFirewallAddress6("trnameObjectFirewallAddress6", {
color: 1,
comment: "This is a Terraform example",
country: "US",
endIp: "2001:192:168:1::10",
endMac: "00:00:00:00:00:00",
host: "::",
hostType: "any",
ip6: "::/0",
startIp: "2001:192:168:1::1",
startMac: "00:00:00:00:00:00",
type: "iprange",
});
const trnameObjectFirewallAddrgrp6 = new fortimanager.ObjectFirewallAddrgrp6("trnameObjectFirewallAddrgrp6", {
comment: "terraform-comment",
members: ["terr-firewall-address6"],
}, {
dependsOn: [trnameObjectFirewallAddress6],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_address6 = fortimanager.ObjectFirewallAddress6("trnameObjectFirewallAddress6",
color=1,
comment="This is a Terraform example",
country="US",
end_ip="2001:192:168:1::10",
end_mac="00:00:00:00:00:00",
host="::",
host_type="any",
ip6="::/0",
start_ip="2001:192:168:1::1",
start_mac="00:00:00:00:00:00",
type="iprange")
trname_object_firewall_addrgrp6 = fortimanager.ObjectFirewallAddrgrp6("trnameObjectFirewallAddrgrp6",
comment="terraform-comment",
members=["terr-firewall-address6"],
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_address6]))
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 {
trnameObjectFirewallAddress6, err := fortimanager.NewObjectFirewallAddress6(ctx, "trnameObjectFirewallAddress6", &fortimanager.ObjectFirewallAddress6Args{
Color: pulumi.Float64(1),
Comment: pulumi.String("This is a Terraform example"),
Country: pulumi.String("US"),
EndIp: pulumi.String("2001:192:168:1::10"),
EndMac: pulumi.String("00:00:00:00:00:00"),
Host: pulumi.String("::"),
HostType: pulumi.String("any"),
Ip6: pulumi.String("::/0"),
StartIp: pulumi.String("2001:192:168:1::1"),
StartMac: pulumi.String("00:00:00:00:00:00"),
Type: pulumi.String("iprange"),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallAddrgrp6(ctx, "trnameObjectFirewallAddrgrp6", &fortimanager.ObjectFirewallAddrgrp6Args{
Comment: pulumi.String("terraform-comment"),
Members: pulumi.StringArray{
pulumi.String("terr-firewall-address6"),
},
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallAddress6,
}))
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 trnameObjectFirewallAddress6 = new Fortimanager.ObjectFirewallAddress6("trnameObjectFirewallAddress6", new()
{
Color = 1,
Comment = "This is a Terraform example",
Country = "US",
EndIp = "2001:192:168:1::10",
EndMac = "00:00:00:00:00:00",
Host = "::",
HostType = "any",
Ip6 = "::/0",
StartIp = "2001:192:168:1::1",
StartMac = "00:00:00:00:00:00",
Type = "iprange",
});
var trnameObjectFirewallAddrgrp6 = new Fortimanager.ObjectFirewallAddrgrp6("trnameObjectFirewallAddrgrp6", new()
{
Comment = "terraform-comment",
Members = new[]
{
"terr-firewall-address6",
},
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallAddress6,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallAddress6;
import com.pulumi.fortimanager.ObjectFirewallAddress6Args;
import com.pulumi.fortimanager.ObjectFirewallAddrgrp6;
import com.pulumi.fortimanager.ObjectFirewallAddrgrp6Args;
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 trnameObjectFirewallAddress6 = new ObjectFirewallAddress6("trnameObjectFirewallAddress6", ObjectFirewallAddress6Args.builder()
.color(1)
.comment("This is a Terraform example")
.country("US")
.endIp("2001:192:168:1::10")
.endMac("00:00:00:00:00:00")
.host("::")
.hostType("any")
.ip6("::/0")
.startIp("2001:192:168:1::1")
.startMac("00:00:00:00:00:00")
.type("iprange")
.build());
var trnameObjectFirewallAddrgrp6 = new ObjectFirewallAddrgrp6("trnameObjectFirewallAddrgrp6", ObjectFirewallAddrgrp6Args.builder()
.comment("terraform-comment")
.members("terr-firewall-address6")
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallAddress6)
.build());
}
}
resources:
trnameObjectFirewallAddress6:
type: fortimanager:ObjectFirewallAddress6
properties:
color: 1
comment: This is a Terraform example
country: US
endIp: 2001:192:168:1::10
endMac: 00:00:00:00:00:00
host: '::'
hostType: any
ip6: ::/0
startIp: 2001:192:168:1::1
startMac: 00:00:00:00:00:00
type: iprange
trnameObjectFirewallAddrgrp6:
type: fortimanager:ObjectFirewallAddrgrp6
properties:
comment: terraform-comment
members:
- terr-firewall-address6
options:
dependsOn:
- ${trnameObjectFirewallAddress6}
Create ObjectFirewallAddrgrp6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallAddrgrp6(name: string, args?: ObjectFirewallAddrgrp6Args, opts?: CustomResourceOptions);
@overload
def ObjectFirewallAddrgrp6(resource_name: str,
args: Optional[ObjectFirewallAddrgrp6Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallAddrgrp6(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_mappings: Optional[Sequence[ObjectFirewallAddrgrp6DynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
exclude: Optional[str] = None,
exclude_members: Optional[Sequence[str]] = None,
fabric_object: Optional[str] = None,
global_object: Optional[float] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_addrgrp6_id: Optional[str] = None,
scopetype: Optional[str] = None,
taggings: Optional[Sequence[ObjectFirewallAddrgrp6TaggingArgs]] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None)
func NewObjectFirewallAddrgrp6(ctx *Context, name string, args *ObjectFirewallAddrgrp6Args, opts ...ResourceOption) (*ObjectFirewallAddrgrp6, error)
public ObjectFirewallAddrgrp6(string name, ObjectFirewallAddrgrp6Args? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallAddrgrp6(String name, ObjectFirewallAddrgrp6Args args)
public ObjectFirewallAddrgrp6(String name, ObjectFirewallAddrgrp6Args args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallAddrgrp6
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 ObjectFirewallAddrgrp6Args
- 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 ObjectFirewallAddrgrp6Args
- 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 ObjectFirewallAddrgrp6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallAddrgrp6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallAddrgrp6Args
- 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 objectFirewallAddrgrp6Resource = new Fortimanager.ObjectFirewallAddrgrp6("objectFirewallAddrgrp6Resource", new()
{
_imageBase64 = "string",
Adom = "string",
Color = 0,
Comment = "string",
DynamicMappings = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddrgrp6DynamicMappingArgs
{
_imageBase64 = "string",
_scopes = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddrgrp6DynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
Color = 0,
Comment = "string",
Exclude = "string",
ExcludeMembers = new[]
{
"string",
},
FabricObject = "string",
GlobalObject = 0,
Member = "string",
Tags = "string",
Uuid = "string",
Visibility = "string",
},
},
DynamicSortSubtable = "string",
Exclude = "string",
ExcludeMembers = new[]
{
"string",
},
FabricObject = "string",
GlobalObject = 0,
Members = new[]
{
"string",
},
Name = "string",
ObjectFirewallAddrgrp6Id = "string",
Scopetype = "string",
Taggings = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddrgrp6TaggingArgs
{
Category = "string",
Name = "string",
Tags = new[]
{
"string",
},
},
},
Uuid = "string",
Visibility = "string",
});
example, err := fortimanager.NewObjectFirewallAddrgrp6(ctx, "objectFirewallAddrgrp6Resource", &fortimanager.ObjectFirewallAddrgrp6Args{
_imageBase64: pulumi.String("string"),
Adom: pulumi.String("string"),
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
DynamicMappings: .ObjectFirewallAddrgrp6DynamicMappingTypeArray{
&.ObjectFirewallAddrgrp6DynamicMappingTypeArgs{
_imageBase64: pulumi.String("string"),
_scopes: .ObjectFirewallAddrgrp6DynamicMapping_ScopeArray{
&.ObjectFirewallAddrgrp6DynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
Exclude: pulumi.String("string"),
ExcludeMembers: pulumi.StringArray{
pulumi.String("string"),
},
FabricObject: pulumi.String("string"),
GlobalObject: pulumi.Float64(0),
Member: pulumi.String("string"),
Tags: pulumi.String("string"),
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
Exclude: pulumi.String("string"),
ExcludeMembers: pulumi.StringArray{
pulumi.String("string"),
},
FabricObject: pulumi.String("string"),
GlobalObject: pulumi.Float64(0),
Members: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectFirewallAddrgrp6Id: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Taggings: .ObjectFirewallAddrgrp6TaggingTypeArray{
&.ObjectFirewallAddrgrp6TaggingTypeArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
var objectFirewallAddrgrp6Resource = new ObjectFirewallAddrgrp6("objectFirewallAddrgrp6Resource", ObjectFirewallAddrgrp6Args.builder()
._imageBase64("string")
.adom("string")
.color(0)
.comment("string")
.dynamicMappings(ObjectFirewallAddrgrp6DynamicMappingArgs.builder()
._imageBase64("string")
._scopes(ObjectFirewallAddrgrp6DynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.color(0)
.comment("string")
.exclude("string")
.excludeMembers("string")
.fabricObject("string")
.globalObject(0)
.member("string")
.tags("string")
.uuid("string")
.visibility("string")
.build())
.dynamicSortSubtable("string")
.exclude("string")
.excludeMembers("string")
.fabricObject("string")
.globalObject(0)
.members("string")
.name("string")
.objectFirewallAddrgrp6Id("string")
.scopetype("string")
.taggings(ObjectFirewallAddrgrp6TaggingArgs.builder()
.category("string")
.name("string")
.tags("string")
.build())
.uuid("string")
.visibility("string")
.build());
object_firewall_addrgrp6_resource = fortimanager.ObjectFirewallAddrgrp6("objectFirewallAddrgrp6Resource",
_image_base64="string",
adom="string",
color=0,
comment="string",
dynamic_mappings=[{
"_image_base64": "string",
"_scopes": [{
"name": "string",
"vdom": "string",
}],
"color": 0,
"comment": "string",
"exclude": "string",
"exclude_members": ["string"],
"fabric_object": "string",
"global_object": 0,
"member": "string",
"tags": "string",
"uuid": "string",
"visibility": "string",
}],
dynamic_sort_subtable="string",
exclude="string",
exclude_members=["string"],
fabric_object="string",
global_object=0,
members=["string"],
name="string",
object_firewall_addrgrp6_id="string",
scopetype="string",
taggings=[{
"category": "string",
"name": "string",
"tags": ["string"],
}],
uuid="string",
visibility="string")
const objectFirewallAddrgrp6Resource = new fortimanager.ObjectFirewallAddrgrp6("objectFirewallAddrgrp6Resource", {
_imageBase64: "string",
adom: "string",
color: 0,
comment: "string",
dynamicMappings: [{
_imageBase64: "string",
_scopes: [{
name: "string",
vdom: "string",
}],
color: 0,
comment: "string",
exclude: "string",
excludeMembers: ["string"],
fabricObject: "string",
globalObject: 0,
member: "string",
tags: "string",
uuid: "string",
visibility: "string",
}],
dynamicSortSubtable: "string",
exclude: "string",
excludeMembers: ["string"],
fabricObject: "string",
globalObject: 0,
members: ["string"],
name: "string",
objectFirewallAddrgrp6Id: "string",
scopetype: "string",
taggings: [{
category: "string",
name: "string",
tags: ["string"],
}],
uuid: "string",
visibility: "string",
});
type: fortimanager:ObjectFirewallAddrgrp6
properties:
_imageBase64: string
adom: string
color: 0
comment: string
dynamicMappings:
- _imageBase64: string
_scopes:
- name: string
vdom: string
color: 0
comment: string
exclude: string
excludeMembers:
- string
fabricObject: string
globalObject: 0
member: string
tags: string
uuid: string
visibility: string
dynamicSortSubtable: string
exclude: string
excludeMembers:
- string
fabricObject: string
globalObject: 0
members:
- string
name: string
objectFirewallAddrgrp6Id: string
scopetype: string
taggings:
- category: string
name: string
tags:
- string
uuid: string
visibility: string
ObjectFirewallAddrgrp6 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 ObjectFirewallAddrgrp6 resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- Comment string
- Comment.
- Dynamic
Mappings List<ObjectFirewall Addrgrp6Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members List<string> - Address6 exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Members List<string>
- Address objects contained within the group.
- Name string
- IPv6 address group name.
- Object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
Firewall Addrgrp6Tagging> - Tagging. The structure of
tagging
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- Comment string
- Comment.
- Dynamic
Mappings []ObjectFirewall Addrgrp6Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members []string - Address6 exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Members []string
- Address objects contained within the group.
- Name string
- IPv6 address group name.
- Object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
Firewall Addrgrp6Tagging Type Args - Tagging. The structure of
tagging
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment String
- Comment.
- dynamic
Mappings List<ObjectFirewall Addrgrp6Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- IPv6 address group name.
- object
Firewall StringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
Firewall Addrgrp6Tagging> - Tagging. The structure of
tagging
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image stringBase64 - _Image-Base64.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment string
- Comment.
- dynamic
Mappings ObjectFirewall Addrgrp6Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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.
- exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members string[] - Address6 exclusion member.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- members string[]
- Address objects contained within the group.
- name string
- IPv6 address group name.
- object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
Firewall Addrgrp6Tagging[] - Tagging. The structure of
tagging
block is documented below. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image_ strbase64 - _Image-Base64.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment str
- Comment.
- dynamic_
mappings Sequence[ObjectFirewall Addrgrp6Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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.
- exclude str
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude_
members Sequence[str] - Address6 exclusion member.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - global_
object float - Global Object.
- members Sequence[str]
- Address objects contained within the group.
- name str
- IPv6 address group name.
- object_
firewall_ straddrgrp6_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
Firewall Addrgrp6Tagging Args] - Tagging. The structure of
tagging
block is documented below. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment String
- Comment.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- IPv6 address group name.
- object
Firewall StringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings List<Property Map>
- Tagging. The structure of
tagging
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallAddrgrp6 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 ObjectFirewallAddrgrp6 Resource
Get an existing ObjectFirewallAddrgrp6 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?: ObjectFirewallAddrgrp6State, opts?: CustomResourceOptions): ObjectFirewallAddrgrp6
@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_mappings: Optional[Sequence[ObjectFirewallAddrgrp6DynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
exclude: Optional[str] = None,
exclude_members: Optional[Sequence[str]] = None,
fabric_object: Optional[str] = None,
global_object: Optional[float] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
object_firewall_addrgrp6_id: Optional[str] = None,
scopetype: Optional[str] = None,
taggings: Optional[Sequence[ObjectFirewallAddrgrp6TaggingArgs]] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None) -> ObjectFirewallAddrgrp6
func GetObjectFirewallAddrgrp6(ctx *Context, name string, id IDInput, state *ObjectFirewallAddrgrp6State, opts ...ResourceOption) (*ObjectFirewallAddrgrp6, error)
public static ObjectFirewallAddrgrp6 Get(string name, Input<string> id, ObjectFirewallAddrgrp6State? state, CustomResourceOptions? opts = null)
public static ObjectFirewallAddrgrp6 get(String name, Output<String> id, ObjectFirewallAddrgrp6State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallAddrgrp6 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- Comment string
- Comment.
- Dynamic
Mappings List<ObjectFirewall Addrgrp6Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members List<string> - Address6 exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Members List<string>
- Address objects contained within the group.
- Name string
- IPv6 address group name.
- Object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
List<Object
Firewall Addrgrp6Tagging> - Tagging. The structure of
tagging
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- Comment string
- Comment.
- Dynamic
Mappings []ObjectFirewall Addrgrp6Dynamic Mapping Type Args - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - Dynamic
Sort stringSubtable - 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.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members []string - Address6 exclusion member.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Members []string
- Address objects contained within the group.
- Name string
- IPv6 address group name.
- Object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Taggings
[]Object
Firewall Addrgrp6Tagging Type Args - Tagging. The structure of
tagging
block is documented below. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment String
- Comment.
- dynamic
Mappings List<ObjectFirewall Addrgrp6Dynamic Mapping> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- IPv6 address group name.
- object
Firewall StringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
List<Object
Firewall Addrgrp6Tagging> - Tagging. The structure of
tagging
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image stringBase64 - _Image-Base64.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment string
- Comment.
- dynamic
Mappings ObjectFirewall Addrgrp6Dynamic Mapping[] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort stringSubtable - 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.
- exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members string[] - Address6 exclusion member.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- members string[]
- Address objects contained within the group.
- name string
- IPv6 address group name.
- object
Firewall stringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Object
Firewall Addrgrp6Tagging[] - Tagging. The structure of
tagging
block is documented below. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image_ strbase64 - _Image-Base64.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment str
- Comment.
- dynamic_
mappings Sequence[ObjectFirewall Addrgrp6Dynamic Mapping Args] - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic_
sort_ strsubtable - 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.
- exclude str
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude_
members Sequence[str] - Address6 exclusion member.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - global_
object float - Global Object.
- members Sequence[str]
- Address objects contained within the group.
- name str
- IPv6 address group name.
- object_
firewall_ straddrgrp6_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings
Sequence[Object
Firewall Addrgrp6Tagging Args] - Tagging. The structure of
tagging
block is documented below. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image StringBase64 - _Image-Base64.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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 the value to 1).
- comment String
- Comment.
- dynamic
Mappings List<Property Map> - Dynamic_Mapping. The structure of
dynamic_mapping
block is documented below. - dynamic
Sort StringSubtable - 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.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- members List<String>
- Address objects contained within the group.
- name String
- IPv6 address group name.
- object
Firewall StringAddrgrp6Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - taggings List<Property Map>
- Tagging. The structure of
tagging
block is documented below. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
Supporting Types
ObjectFirewallAddrgrp6DynamicMapping, ObjectFirewallAddrgrp6DynamicMappingArgs
- Color double
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members List<string> - Address6 exclusion member.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Global
Object double - Global-Object.
- Member string
- Address objects contained within the group.
- string
- Tags.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Addrgrp6Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Color float64
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - Exclude
Members []string - Address6 exclusion member.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Global
Object float64 - Global-Object.
- Member string
- Address objects contained within the group.
- string
- Tags.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
scopes []ObjectFirewall Addrgrp6Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Addrgrp6Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - color Double
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - global
Object Double - Global-Object.
- member String
- Address objects contained within the group.
- String
- Tags.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image stringBase64 - _Image-Base64.
- _
scopes ObjectFirewall Addrgrp6Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - color number
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- comment string
- Comment.
- exclude string
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members string[] - Address6 exclusion member.
- fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - global
Object number - Global-Object.
- member string
- Address objects contained within the group.
- string
- Tags.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image_ strbase64 - _Image-Base64.
- _
scopes Sequence[ObjectFirewall Addrgrp6Dynamic Mapping_Scope] - _Scope. The structure of
_scope
block is documented below. - color float
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- comment str
- Comment.
- exclude str
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude_
members Sequence[str] - Address6 exclusion member.
- fabric_
object str - Fabric-Object. Valid values:
disable
,enable
. - global_
object float - Global-Object.
- member str
- Address objects contained within the group.
- str
- Tags.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - color Number
- Integer value to determine the color of the icon in the GUI (1 - 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- exclude String
- Enable/disable address6 exclusion. Valid values:
disable
,enable
. - exclude
Members List<String> - Address6 exclusion member.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - global
Object Number - Global-Object.
- member String
- Address objects contained within the group.
- String
- Tags.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable address group6 visibility in the GUI. Valid values:
disable
,enable
.
ObjectFirewallAddrgrp6DynamicMapping_Scope, ObjectFirewallAddrgrp6DynamicMapping_ScopeArgs
ObjectFirewallAddrgrp6Tagging, ObjectFirewallAddrgrp6TaggingArgs
Import
ObjectFirewall Addrgrp6 can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallAddrgrp6:ObjectFirewallAddrgrp6 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.