fortimanager.ObjectFirewallAddress6
Explore with Pulumi AI
Configure IPv6 firewall addresses.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
dynamic_mapping
:fortimanager.ObjectFirewallAddress6DynamicMapping
list
:fortimanager.ObjectFirewallAddress6List
subnet_segment
:fortimanager.ObjectFirewallAddress6Subnetsegment
tagging
:fortimanager.ObjectFirewallAddress6Tagging
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallAddress6("trname", {
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",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallAddress6("trname",
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")
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.NewObjectFirewallAddress6(ctx, "trname", &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
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectFirewallAddress6("trname", 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",
});
});
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 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 ObjectFirewallAddress6("trname", 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());
}
}
resources:
trname:
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
Create ObjectFirewallAddress6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallAddress6(name: string, args?: ObjectFirewallAddress6Args, opts?: CustomResourceOptions);
@overload
def ObjectFirewallAddress6(resource_name: str,
args: Optional[ObjectFirewallAddress6Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallAddress6(resource_name: str,
opts: Optional[ResourceOptions] = None,
_image_base64: Optional[str] = None,
adom: Optional[str] = None,
cache_ttl: Optional[float] = None,
color: Optional[float] = None,
comment: Optional[str] = None,
country: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectFirewallAddress6DynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
end_ip: Optional[str] = None,
end_mac: Optional[str] = None,
epg_name: Optional[str] = None,
fabric_object: Optional[str] = None,
filter: Optional[str] = None,
fqdn: Optional[str] = None,
global_object: Optional[float] = None,
host: Optional[str] = None,
host_type: Optional[str] = None,
ip6: Optional[str] = None,
lists: Optional[Sequence[ObjectFirewallAddress6ListArgs]] = None,
macaddrs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
obj_id: Optional[str] = None,
object_firewall_address6_id: Optional[str] = None,
route_tag: Optional[float] = None,
scopetype: Optional[str] = None,
sdn: Optional[str] = None,
sdn_addr_type: Optional[str] = None,
sdn_tag: Optional[str] = None,
start_ip: Optional[str] = None,
start_mac: Optional[str] = None,
subnet_segments: Optional[Sequence[ObjectFirewallAddress6SubnetSegmentArgs]] = None,
taggings: Optional[Sequence[ObjectFirewallAddress6TaggingArgs]] = None,
template: Optional[str] = None,
tenant: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None)
func NewObjectFirewallAddress6(ctx *Context, name string, args *ObjectFirewallAddress6Args, opts ...ResourceOption) (*ObjectFirewallAddress6, error)
public ObjectFirewallAddress6(string name, ObjectFirewallAddress6Args? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallAddress6(String name, ObjectFirewallAddress6Args args)
public ObjectFirewallAddress6(String name, ObjectFirewallAddress6Args args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallAddress6
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 ObjectFirewallAddress6Args
- 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 ObjectFirewallAddress6Args
- 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 ObjectFirewallAddress6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallAddress6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallAddress6Args
- 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 objectFirewallAddress6Resource = new Fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource", new()
{
_imageBase64 = "string",
Adom = "string",
CacheTtl = 0,
Color = 0,
Comment = "string",
Country = "string",
DynamicMappings = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMappingArgs
{
_imageBase64 = "string",
_scopes = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMapping_ScopeArgs
{
Name = "string",
Vdom = "string",
},
},
CacheTtl = 0,
Color = 0,
Comment = "string",
Country = "string",
EndIp = "string",
EndMac = "string",
EpgName = "string",
FabricObject = "string",
Filter = "string",
Fqdn = "string",
GlobalObject = 0,
Host = "string",
HostType = "string",
Ip6 = "string",
Macaddrs = new[]
{
"string",
},
ObjId = "string",
RouteTag = 0,
Sdn = "string",
SdnAddrType = "string",
SdnTag = "string",
StartIp = "string",
StartMac = "string",
SubnetSegments = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs
{
Name = "string",
Type = "string",
Value = "string",
},
},
Tags = "string",
Template = "string",
Tenant = "string",
Type = "string",
Uuid = "string",
Visibility = "string",
},
},
DynamicSortSubtable = "string",
EndIp = "string",
EndMac = "string",
EpgName = "string",
FabricObject = "string",
Filter = "string",
Fqdn = "string",
GlobalObject = 0,
Host = "string",
HostType = "string",
Ip6 = "string",
Lists = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6ListArgs
{
Ip = "string",
NetId = "string",
ObjId = "string",
},
},
Macaddrs = new[]
{
"string",
},
Name = "string",
ObjId = "string",
ObjectFirewallAddress6Id = "string",
RouteTag = 0,
Scopetype = "string",
Sdn = "string",
SdnAddrType = "string",
SdnTag = "string",
StartIp = "string",
StartMac = "string",
SubnetSegments = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6SubnetSegmentArgs
{
Name = "string",
Type = "string",
Value = "string",
},
},
Taggings = new[]
{
new Fortimanager.Inputs.ObjectFirewallAddress6TaggingArgs
{
Category = "string",
Name = "string",
Tags = new[]
{
"string",
},
},
},
Template = "string",
Tenant = "string",
Type = "string",
Uuid = "string",
Visibility = "string",
});
example, err := fortimanager.NewObjectFirewallAddress6(ctx, "objectFirewallAddress6Resource", &fortimanager.ObjectFirewallAddress6Args{
_imageBase64: pulumi.String("string"),
Adom: pulumi.String("string"),
CacheTtl: pulumi.Float64(0),
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
Country: pulumi.String("string"),
DynamicMappings: .ObjectFirewallAddress6DynamicMappingTypeArray{
&.ObjectFirewallAddress6DynamicMappingTypeArgs{
_imageBase64: pulumi.String("string"),
_scopes: .ObjectFirewallAddress6DynamicMapping_ScopeArray{
&.ObjectFirewallAddress6DynamicMapping_ScopeArgs{
Name: pulumi.String("string"),
Vdom: pulumi.String("string"),
},
},
CacheTtl: pulumi.Float64(0),
Color: pulumi.Float64(0),
Comment: pulumi.String("string"),
Country: pulumi.String("string"),
EndIp: pulumi.String("string"),
EndMac: pulumi.String("string"),
EpgName: pulumi.String("string"),
FabricObject: pulumi.String("string"),
Filter: pulumi.String("string"),
Fqdn: pulumi.String("string"),
GlobalObject: pulumi.Float64(0),
Host: pulumi.String("string"),
HostType: pulumi.String("string"),
Ip6: pulumi.String("string"),
Macaddrs: pulumi.StringArray{
pulumi.String("string"),
},
ObjId: pulumi.String("string"),
RouteTag: pulumi.Float64(0),
Sdn: pulumi.String("string"),
SdnAddrType: pulumi.String("string"),
SdnTag: pulumi.String("string"),
StartIp: pulumi.String("string"),
StartMac: pulumi.String("string"),
SubnetSegments: .ObjectFirewallAddress6DynamicMappingSubnetSegmentTypeArray{
&.ObjectFirewallAddress6DynamicMappingSubnetSegmentTypeArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Tags: pulumi.String("string"),
Template: pulumi.String("string"),
Tenant: pulumi.String("string"),
Type: pulumi.String("string"),
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
},
},
DynamicSortSubtable: pulumi.String("string"),
EndIp: pulumi.String("string"),
EndMac: pulumi.String("string"),
EpgName: pulumi.String("string"),
FabricObject: pulumi.String("string"),
Filter: pulumi.String("string"),
Fqdn: pulumi.String("string"),
GlobalObject: pulumi.Float64(0),
Host: pulumi.String("string"),
HostType: pulumi.String("string"),
Ip6: pulumi.String("string"),
Lists: .ObjectFirewallAddress6ListTypeArray{
&.ObjectFirewallAddress6ListTypeArgs{
Ip: pulumi.String("string"),
NetId: pulumi.String("string"),
ObjId: pulumi.String("string"),
},
},
Macaddrs: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjId: pulumi.String("string"),
ObjectFirewallAddress6Id: pulumi.String("string"),
RouteTag: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Sdn: pulumi.String("string"),
SdnAddrType: pulumi.String("string"),
SdnTag: pulumi.String("string"),
StartIp: pulumi.String("string"),
StartMac: pulumi.String("string"),
SubnetSegments: .ObjectFirewallAddress6SubnetSegmentTypeArray{
&.ObjectFirewallAddress6SubnetSegmentTypeArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Taggings: .ObjectFirewallAddress6TaggingTypeArray{
&.ObjectFirewallAddress6TaggingTypeArgs{
Category: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Template: pulumi.String("string"),
Tenant: pulumi.String("string"),
Type: pulumi.String("string"),
Uuid: pulumi.String("string"),
Visibility: pulumi.String("string"),
})
var objectFirewallAddress6Resource = new ObjectFirewallAddress6("objectFirewallAddress6Resource", ObjectFirewallAddress6Args.builder()
._imageBase64("string")
.adom("string")
.cacheTtl(0)
.color(0)
.comment("string")
.country("string")
.dynamicMappings(ObjectFirewallAddress6DynamicMappingArgs.builder()
._imageBase64("string")
._scopes(ObjectFirewallAddress6DynamicMapping_ScopeArgs.builder()
.name("string")
.vdom("string")
.build())
.cacheTtl(0)
.color(0)
.comment("string")
.country("string")
.endIp("string")
.endMac("string")
.epgName("string")
.fabricObject("string")
.filter("string")
.fqdn("string")
.globalObject(0)
.host("string")
.hostType("string")
.ip6("string")
.macaddrs("string")
.objId("string")
.routeTag(0)
.sdn("string")
.sdnAddrType("string")
.sdnTag("string")
.startIp("string")
.startMac("string")
.subnetSegments(ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs.builder()
.name("string")
.type("string")
.value("string")
.build())
.tags("string")
.template("string")
.tenant("string")
.type("string")
.uuid("string")
.visibility("string")
.build())
.dynamicSortSubtable("string")
.endIp("string")
.endMac("string")
.epgName("string")
.fabricObject("string")
.filter("string")
.fqdn("string")
.globalObject(0)
.host("string")
.hostType("string")
.ip6("string")
.lists(ObjectFirewallAddress6ListArgs.builder()
.ip("string")
.netId("string")
.objId("string")
.build())
.macaddrs("string")
.name("string")
.objId("string")
.objectFirewallAddress6Id("string")
.routeTag(0)
.scopetype("string")
.sdn("string")
.sdnAddrType("string")
.sdnTag("string")
.startIp("string")
.startMac("string")
.subnetSegments(ObjectFirewallAddress6SubnetSegmentArgs.builder()
.name("string")
.type("string")
.value("string")
.build())
.taggings(ObjectFirewallAddress6TaggingArgs.builder()
.category("string")
.name("string")
.tags("string")
.build())
.template("string")
.tenant("string")
.type("string")
.uuid("string")
.visibility("string")
.build());
object_firewall_address6_resource = fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource",
_image_base64="string",
adom="string",
cache_ttl=0,
color=0,
comment="string",
country="string",
dynamic_mappings=[{
"_image_base64": "string",
"_scopes": [{
"name": "string",
"vdom": "string",
}],
"cache_ttl": 0,
"color": 0,
"comment": "string",
"country": "string",
"end_ip": "string",
"end_mac": "string",
"epg_name": "string",
"fabric_object": "string",
"filter": "string",
"fqdn": "string",
"global_object": 0,
"host": "string",
"host_type": "string",
"ip6": "string",
"macaddrs": ["string"],
"obj_id": "string",
"route_tag": 0,
"sdn": "string",
"sdn_addr_type": "string",
"sdn_tag": "string",
"start_ip": "string",
"start_mac": "string",
"subnet_segments": [{
"name": "string",
"type": "string",
"value": "string",
}],
"tags": "string",
"template": "string",
"tenant": "string",
"type": "string",
"uuid": "string",
"visibility": "string",
}],
dynamic_sort_subtable="string",
end_ip="string",
end_mac="string",
epg_name="string",
fabric_object="string",
filter="string",
fqdn="string",
global_object=0,
host="string",
host_type="string",
ip6="string",
lists=[{
"ip": "string",
"net_id": "string",
"obj_id": "string",
}],
macaddrs=["string"],
name="string",
obj_id="string",
object_firewall_address6_id="string",
route_tag=0,
scopetype="string",
sdn="string",
sdn_addr_type="string",
sdn_tag="string",
start_ip="string",
start_mac="string",
subnet_segments=[{
"name": "string",
"type": "string",
"value": "string",
}],
taggings=[{
"category": "string",
"name": "string",
"tags": ["string"],
}],
template="string",
tenant="string",
type="string",
uuid="string",
visibility="string")
const objectFirewallAddress6Resource = new fortimanager.ObjectFirewallAddress6("objectFirewallAddress6Resource", {
_imageBase64: "string",
adom: "string",
cacheTtl: 0,
color: 0,
comment: "string",
country: "string",
dynamicMappings: [{
_imageBase64: "string",
_scopes: [{
name: "string",
vdom: "string",
}],
cacheTtl: 0,
color: 0,
comment: "string",
country: "string",
endIp: "string",
endMac: "string",
epgName: "string",
fabricObject: "string",
filter: "string",
fqdn: "string",
globalObject: 0,
host: "string",
hostType: "string",
ip6: "string",
macaddrs: ["string"],
objId: "string",
routeTag: 0,
sdn: "string",
sdnAddrType: "string",
sdnTag: "string",
startIp: "string",
startMac: "string",
subnetSegments: [{
name: "string",
type: "string",
value: "string",
}],
tags: "string",
template: "string",
tenant: "string",
type: "string",
uuid: "string",
visibility: "string",
}],
dynamicSortSubtable: "string",
endIp: "string",
endMac: "string",
epgName: "string",
fabricObject: "string",
filter: "string",
fqdn: "string",
globalObject: 0,
host: "string",
hostType: "string",
ip6: "string",
lists: [{
ip: "string",
netId: "string",
objId: "string",
}],
macaddrs: ["string"],
name: "string",
objId: "string",
objectFirewallAddress6Id: "string",
routeTag: 0,
scopetype: "string",
sdn: "string",
sdnAddrType: "string",
sdnTag: "string",
startIp: "string",
startMac: "string",
subnetSegments: [{
name: "string",
type: "string",
value: "string",
}],
taggings: [{
category: "string",
name: "string",
tags: ["string"],
}],
template: "string",
tenant: "string",
type: "string",
uuid: "string",
visibility: "string",
});
type: fortimanager:ObjectFirewallAddress6
properties:
_imageBase64: string
adom: string
cacheTtl: 0
color: 0
comment: string
country: string
dynamicMappings:
- _imageBase64: string
_scopes:
- name: string
vdom: string
cacheTtl: 0
color: 0
comment: string
country: string
endIp: string
endMac: string
epgName: string
fabricObject: string
filter: string
fqdn: string
globalObject: 0
host: string
hostType: string
ip6: string
macaddrs:
- string
objId: string
routeTag: 0
sdn: string
sdnAddrType: string
sdnTag: string
startIp: string
startMac: string
subnetSegments:
- name: string
type: string
value: string
tags: string
template: string
tenant: string
type: string
uuid: string
visibility: string
dynamicSortSubtable: string
endIp: string
endMac: string
epgName: string
fabricObject: string
filter: string
fqdn: string
globalObject: 0
host: string
hostType: string
ip6: string
lists:
- ip: string
netId: string
objId: string
macaddrs:
- string
name: string
objId: string
objectFirewallAddress6Id: string
routeTag: 0
scopetype: string
sdn: string
sdnAddrType: string
sdnTag: string
startIp: string
startMac: string
subnetSegments:
- name: string
type: string
value: string
taggings:
- category: string
name: string
tags:
- string
template: string
tenant: string
type: string
uuid: string
visibility: string
ObjectFirewallAddress6 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 ObjectFirewallAddress6 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. - Cache
Ttl double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- IPv6 addresses associated to a specific country.
- Dynamic
Mappings List<ObjectFirewall Address6Dynamic 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.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object double - Global Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Lists
List<Object
Firewall Address6List> - List. The structure of
list
block is documented below. - Macaddrs List<string>
- Multiple MAC address ranges.
- Name string
- Address name.
- Obj
Id string - Object ID for NSX.
- Object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- Route
Tag double - route-tag address.
- 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
. - Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments List<ObjectFirewall Address6Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Taggings
List<Object
Firewall Address6Tagging> - Tagging. The structure of
tagging
block is documented below. - Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object 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. - Cache
Ttl float64 - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color float64
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- IPv6 addresses associated to a specific country.
- Dynamic
Mappings []ObjectFirewall Address6Dynamic 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.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object float64 - Global Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Lists
[]Object
Firewall Address6List Type Args - List. The structure of
list
block is documented below. - Macaddrs []string
- Multiple MAC address ranges.
- Name string
- Address name.
- Obj
Id string - Object ID for NSX.
- Object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- Route
Tag float64 - route-tag address.
- 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
. - Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments []ObjectFirewall Address6Subnet Segment Type Args - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Taggings
[]Object
Firewall Address6Tagging Type Args - Tagging. The structure of
tagging
block is documented below. - Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object 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. - cache
Ttl Double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- IPv6 addresses associated to a specific country.
- dynamic
Mappings List<ObjectFirewall Address6Dynamic 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.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Double - Global Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
List<Object
Firewall Address6List> - List. The structure of
list
block is documented below. - macaddrs List<String>
- Multiple MAC address ranges.
- name String
- Address name.
- obj
Id String - Object ID for NSX.
- object
Firewall StringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag Double - route-tag address.
- 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
. - sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<ObjectFirewall Address6Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
List<Object
Firewall Address6Tagging> - Tagging. The structure of
tagging
block is documented below. - template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object 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. - cache
Ttl number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment string
- Comment.
- country string
- IPv6 addresses associated to a specific country.
- dynamic
Mappings ObjectFirewall Address6Dynamic 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.
- end
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac string - Last MAC address in the range.
- epg
Name string - Endpoint group name.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - filter string
- Match criteria filter.
- fqdn string
- Fully qualified domain name.
- global
Object number - Global Object.
- host string
- Host Address.
- host
Type string - Host type. Valid values:
any
,specific
. - ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
Object
Firewall Address6List[] - List. The structure of
list
block is documented below. - macaddrs string[]
- Multiple MAC address ranges.
- name string
- Address name.
- obj
Id string - Object ID for NSX.
- object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag number - route-tag address.
- 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
. - sdn string
- SDN.
- sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag string - SDN Tag.
- start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac string - First MAC address in the range.
- subnet
Segments ObjectFirewall Address6Subnet Segment[] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
Object
Firewall Address6Tagging[] - Tagging. The structure of
tagging
block is documented below. - template string
- IPv6 address template.
- tenant string
- Tenant.
- type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable the visibility of the object 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. - cache_
ttl float - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color float
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment str
- Comment.
- country str
- IPv6 addresses associated to a specific country.
- dynamic_
mappings Sequence[ObjectFirewall Address6Dynamic 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.
- end_
ip str - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end_
mac str - Last MAC address in the range.
- epg_
name str - Endpoint group name.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - filter str
- Match criteria filter.
- fqdn str
- Fully qualified domain name.
- global_
object float - Global Object.
- host str
- Host Address.
- host_
type str - Host type. Valid values:
any
,specific
. - ip6 str
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
Sequence[Object
Firewall Address6List Args] - List. The structure of
list
block is documented below. - macaddrs Sequence[str]
- Multiple MAC address ranges.
- name str
- Address name.
- obj_
id str - Object ID for NSX.
- object_
firewall_ straddress6_ id - an identifier for the resource with format {{name}}.
- route_
tag float - route-tag address.
- 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
. - sdn str
- SDN.
- sdn_
addr_ strtype - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn_
tag str - SDN Tag.
- start_
ip str - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start_
mac str - First MAC address in the range.
- subnet_
segments Sequence[ObjectFirewall Address6Subnet Segment Args] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
Sequence[Object
Firewall Address6Tagging Args] - Tagging. The structure of
tagging
block is documented below. - template str
- IPv6 address template.
- tenant str
- Tenant.
- type str
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable the visibility of the object 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. - cache
Ttl Number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- IPv6 addresses associated to a specific country.
- 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.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Number - Global Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists List<Property Map>
- List. The structure of
list
block is documented below. - macaddrs List<String>
- Multiple MAC address ranges.
- name String
- Address name.
- obj
Id String - Object ID for NSX.
- object
Firewall StringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag Number - route-tag address.
- 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
. - sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<Property Map> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings List<Property Map>
- Tagging. The structure of
tagging
block is documented below. - template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallAddress6 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 ObjectFirewallAddress6 Resource
Get an existing ObjectFirewallAddress6 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?: ObjectFirewallAddress6State, opts?: CustomResourceOptions): ObjectFirewallAddress6
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
_image_base64: Optional[str] = None,
adom: Optional[str] = None,
cache_ttl: Optional[float] = None,
color: Optional[float] = None,
comment: Optional[str] = None,
country: Optional[str] = None,
dynamic_mappings: Optional[Sequence[ObjectFirewallAddress6DynamicMappingArgs]] = None,
dynamic_sort_subtable: Optional[str] = None,
end_ip: Optional[str] = None,
end_mac: Optional[str] = None,
epg_name: Optional[str] = None,
fabric_object: Optional[str] = None,
filter: Optional[str] = None,
fqdn: Optional[str] = None,
global_object: Optional[float] = None,
host: Optional[str] = None,
host_type: Optional[str] = None,
ip6: Optional[str] = None,
lists: Optional[Sequence[ObjectFirewallAddress6ListArgs]] = None,
macaddrs: Optional[Sequence[str]] = None,
name: Optional[str] = None,
obj_id: Optional[str] = None,
object_firewall_address6_id: Optional[str] = None,
route_tag: Optional[float] = None,
scopetype: Optional[str] = None,
sdn: Optional[str] = None,
sdn_addr_type: Optional[str] = None,
sdn_tag: Optional[str] = None,
start_ip: Optional[str] = None,
start_mac: Optional[str] = None,
subnet_segments: Optional[Sequence[ObjectFirewallAddress6SubnetSegmentArgs]] = None,
taggings: Optional[Sequence[ObjectFirewallAddress6TaggingArgs]] = None,
template: Optional[str] = None,
tenant: Optional[str] = None,
type: Optional[str] = None,
uuid: Optional[str] = None,
visibility: Optional[str] = None) -> ObjectFirewallAddress6
func GetObjectFirewallAddress6(ctx *Context, name string, id IDInput, state *ObjectFirewallAddress6State, opts ...ResourceOption) (*ObjectFirewallAddress6, error)
public static ObjectFirewallAddress6 Get(string name, Input<string> id, ObjectFirewallAddress6State? state, CustomResourceOptions? opts = null)
public static ObjectFirewallAddress6 get(String name, Output<String> id, ObjectFirewallAddress6State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallAddress6 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. - Cache
Ttl double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- IPv6 addresses associated to a specific country.
- Dynamic
Mappings List<ObjectFirewall Address6Dynamic 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.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object double - Global Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Lists
List<Object
Firewall Address6List> - List. The structure of
list
block is documented below. - Macaddrs List<string>
- Multiple MAC address ranges.
- Name string
- Address name.
- Obj
Id string - Object ID for NSX.
- Object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- Route
Tag double - route-tag address.
- 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
. - Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments List<ObjectFirewall Address6Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Taggings
List<Object
Firewall Address6Tagging> - Tagging. The structure of
tagging
block is documented below. - Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object 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. - Cache
Ttl float64 - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color float64
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- IPv6 addresses associated to a specific country.
- Dynamic
Mappings []ObjectFirewall Address6Dynamic 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.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object float64 - Global Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Lists
[]Object
Firewall Address6List Type Args - List. The structure of
list
block is documented below. - Macaddrs []string
- Multiple MAC address ranges.
- Name string
- Address name.
- Obj
Id string - Object ID for NSX.
- Object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- Route
Tag float64 - route-tag address.
- 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
. - Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments []ObjectFirewall Address6Subnet Segment Type Args - Subnet-Segment. The structure of
subnet_segment
block is documented below. - Taggings
[]Object
Firewall Address6Tagging Type Args - Tagging. The structure of
tagging
block is documented below. - Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object 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. - cache
Ttl Double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- IPv6 addresses associated to a specific country.
- dynamic
Mappings List<ObjectFirewall Address6Dynamic 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.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Double - Global Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
List<Object
Firewall Address6List> - List. The structure of
list
block is documented below. - macaddrs List<String>
- Multiple MAC address ranges.
- name String
- Address name.
- obj
Id String - Object ID for NSX.
- object
Firewall StringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag Double - route-tag address.
- 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
. - sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<ObjectFirewall Address6Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
List<Object
Firewall Address6Tagging> - Tagging. The structure of
tagging
block is documented below. - template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object 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. - cache
Ttl number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment string
- Comment.
- country string
- IPv6 addresses associated to a specific country.
- dynamic
Mappings ObjectFirewall Address6Dynamic 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.
- end
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac string - Last MAC address in the range.
- epg
Name string - Endpoint group name.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - filter string
- Match criteria filter.
- fqdn string
- Fully qualified domain name.
- global
Object number - Global Object.
- host string
- Host Address.
- host
Type string - Host type. Valid values:
any
,specific
. - ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
Object
Firewall Address6List[] - List. The structure of
list
block is documented below. - macaddrs string[]
- Multiple MAC address ranges.
- name string
- Address name.
- obj
Id string - Object ID for NSX.
- object
Firewall stringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag number - route-tag address.
- 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
. - sdn string
- SDN.
- sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag string - SDN Tag.
- start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac string - First MAC address in the range.
- subnet
Segments ObjectFirewall Address6Subnet Segment[] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
Object
Firewall Address6Tagging[] - Tagging. The structure of
tagging
block is documented below. - template string
- IPv6 address template.
- tenant string
- Tenant.
- type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable the visibility of the object 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. - cache_
ttl float - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color float
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment str
- Comment.
- country str
- IPv6 addresses associated to a specific country.
- dynamic_
mappings Sequence[ObjectFirewall Address6Dynamic 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.
- end_
ip str - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end_
mac str - Last MAC address in the range.
- epg_
name str - Endpoint group name.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - filter str
- Match criteria filter.
- fqdn str
- Fully qualified domain name.
- global_
object float - Global Object.
- host str
- Host Address.
- host_
type str - Host type. Valid values:
any
,specific
. - ip6 str
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists
Sequence[Object
Firewall Address6List Args] - List. The structure of
list
block is documented below. - macaddrs Sequence[str]
- Multiple MAC address ranges.
- name str
- Address name.
- obj_
id str - Object ID for NSX.
- object_
firewall_ straddress6_ id - an identifier for the resource with format {{name}}.
- route_
tag float - route-tag address.
- 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
. - sdn str
- SDN.
- sdn_
addr_ strtype - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn_
tag str - SDN Tag.
- start_
ip str - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start_
mac str - First MAC address in the range.
- subnet_
segments Sequence[ObjectFirewall Address6Subnet Segment Args] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings
Sequence[Object
Firewall Address6Tagging Args] - Tagging. The structure of
tagging
block is documented below. - template str
- IPv6 address template.
- tenant str
- Tenant.
- type str
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable the visibility of the object 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. - cache
Ttl Number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- IPv6 addresses associated to a specific country.
- 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.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Number - Global Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- lists List<Property Map>
- List. The structure of
list
block is documented below. - macaddrs List<String>
- Multiple MAC address ranges.
- name String
- Address name.
- obj
Id String - Object ID for NSX.
- object
Firewall StringAddress6Id - an identifier for the resource with format {{name}}.
- route
Tag Number - route-tag address.
- 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
. - sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<Property Map> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - taggings List<Property Map>
- Tagging. The structure of
tagging
block is documented below. - template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
Supporting Types
ObjectFirewallAddress6DynamicMapping, ObjectFirewallAddress6DynamicMappingArgs
- Cache
Ttl double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- Country.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object double - Global-Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Macaddrs List<string>
- Macaddr.
- Obj
Id string - Object ID for NSX.
- Route
Tag double - route-tag address.
- Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments List<ObjectFirewall Address6Dynamic Mapping Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - string
- Tags.
- Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Address6Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below.
- Cache
Ttl float64 - Minimal TTL of individual IPv6 addresses in FQDN cache.
- Color float64
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- Comment string
- Comment.
- Country string
- Country.
- End
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- End
Mac string - Last MAC address in the range.
- Epg
Name string - Endpoint group name.
- Fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - Filter string
- Match criteria filter.
- Fqdn string
- Fully qualified domain name.
- Global
Object float64 - Global-Object.
- Host string
- Host Address.
- Host
Type string - Host type. Valid values:
any
,specific
. - Ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- Macaddrs []string
- Macaddr.
- Obj
Id string - Object ID for NSX.
- Route
Tag float64 - route-tag address.
- Sdn string
- SDN.
- Sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - Sdn
Tag string - SDN Tag.
- Start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- Start
Mac string - First MAC address in the range.
- Subnet
Segments []ObjectFirewall Address6Dynamic Mapping Subnet Segment Type - Subnet-Segment. The structure of
subnet_segment
block is documented below. - string
- Tags.
- Template string
- IPv6 address template.
- Tenant string
- Tenant.
- Type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Visibility string
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
. - _
image stringBase64 - _Image-Base64.
- _
scopes []ObjectFirewall Address6Dynamic Mapping_Scope - _Scope. The structure of
_scope
block is documented below.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<ObjectFirewall Address6Dynamic Mapping_Scope> - _Scope. The structure of
_scope
block is documented below. - cache
Ttl Double - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Double
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- Country.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Double - Global-Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- macaddrs List<String>
- Macaddr.
- obj
Id String - Object ID for NSX.
- route
Tag Double - route-tag address.
- sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<ObjectFirewall Address6Dynamic Mapping Subnet Segment> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - String
- Tags.
- template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
- _
image stringBase64 - _Image-Base64.
- _
scopes ObjectFirewall Address6Dynamic Mapping_Scope[] - _Scope. The structure of
_scope
block is documented below. - cache
Ttl number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment string
- Comment.
- country string
- Country.
- end
Ip string - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac string - Last MAC address in the range.
- epg
Name string - Endpoint group name.
- fabric
Object string - Fabric-Object. Valid values:
disable
,enable
. - filter string
- Match criteria filter.
- fqdn string
- Fully qualified domain name.
- global
Object number - Global-Object.
- host string
- Host Address.
- host
Type string - Host type. Valid values:
any
,specific
. - ip6 string
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- macaddrs string[]
- Macaddr.
- obj
Id string - Object ID for NSX.
- route
Tag number - route-tag address.
- sdn string
- SDN.
- sdn
Addr stringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag string - SDN Tag.
- start
Ip string - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac string - First MAC address in the range.
- subnet
Segments ObjectFirewall Address6Dynamic Mapping Subnet Segment[] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - string
- Tags.
- template string
- IPv6 address template.
- tenant string
- Tenant.
- type string
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility string
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
- _
image_ strbase64 - _Image-Base64.
- _
scopes Sequence[ObjectFirewall Address6Dynamic Mapping_Scope] - _Scope. The structure of
_scope
block is documented below. - cache_
ttl float - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color float
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment str
- Comment.
- country str
- Country.
- end_
ip str - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end_
mac str - Last MAC address in the range.
- epg_
name str - Endpoint group name.
- fabric_
object str - Fabric-Object. Valid values:
disable
,enable
. - filter str
- Match criteria filter.
- fqdn str
- Fully qualified domain name.
- global_
object float - Global-Object.
- host str
- Host Address.
- host_
type str - Host type. Valid values:
any
,specific
. - ip6 str
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- macaddrs Sequence[str]
- Macaddr.
- obj_
id str - Object ID for NSX.
- route_
tag float - route-tag address.
- sdn str
- SDN.
- sdn_
addr_ strtype - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn_
tag str - SDN Tag.
- start_
ip str - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start_
mac str - First MAC address in the range.
- subnet_
segments Sequence[ObjectFirewall Address6Dynamic Mapping Subnet Segment] - Subnet-Segment. The structure of
subnet_segment
block is documented below. - str
- Tags.
- template str
- IPv6 address template.
- tenant str
- Tenant.
- type str
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility str
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
- _
image StringBase64 - _Image-Base64.
- _
scopes List<Property Map> - _Scope. The structure of
_scope
block is documented below. - cache
Ttl Number - Minimal TTL of individual IPv6 addresses in FQDN cache.
- color Number
- Integer value to determine the color of the icon in the GUI (range 1 to 32, default = 0, which sets the value to 1).
- comment String
- Comment.
- country String
- Country.
- end
Ip String - Final IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- end
Mac String - Last MAC address in the range.
- epg
Name String - Endpoint group name.
- fabric
Object String - Fabric-Object. Valid values:
disable
,enable
. - filter String
- Match criteria filter.
- fqdn String
- Fully qualified domain name.
- global
Object Number - Global-Object.
- host String
- Host Address.
- host
Type String - Host type. Valid values:
any
,specific
. - ip6 String
- IPv6 address prefix (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx/xxx).
- macaddrs List<String>
- Macaddr.
- obj
Id String - Object ID for NSX.
- route
Tag Number - route-tag address.
- sdn String
- SDN.
- sdn
Addr StringType - Type of addresses to collect. Valid values:
all
,private
,public
. - sdn
Tag String - SDN Tag.
- start
Ip String - First IP address (inclusive) in the range for the address (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
- start
Mac String - First MAC address in the range.
- subnet
Segments List<Property Map> - Subnet-Segment. The structure of
subnet_segment
block is documented below. - String
- Tags.
- template String
- IPv6 address template.
- tenant String
- Tenant.
- type String
- Type of IPv6 address object (default = ipprefix). Valid values:
ipprefix
,iprange
,nsx
,dynamic
,fqdn
,template
,mac
,geography
. - uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- visibility String
- Enable/disable the visibility of the object in the GUI. Valid values:
disable
,enable
.
ObjectFirewallAddress6DynamicMappingSubnetSegment, ObjectFirewallAddress6DynamicMappingSubnetSegmentArgs
ObjectFirewallAddress6DynamicMapping_Scope, ObjectFirewallAddress6DynamicMapping_ScopeArgs
ObjectFirewallAddress6List, ObjectFirewallAddress6ListArgs
ObjectFirewallAddress6SubnetSegment, ObjectFirewallAddress6SubnetSegmentArgs
ObjectFirewallAddress6Tagging, ObjectFirewallAddress6TaggingArgs
Import
ObjectFirewall Address6 can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallAddress6:ObjectFirewallAddress6 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.