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

fortimanager.ObjectSystemGeoipoverrideIp6range

Explore with Pulumi AI

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

    Table of IPv6 ranges assigned to country.

    This resource is a sub resource for variable ip6_range of resource fortimanager.ObjectSystemGeoipoverride. Conflict and overwrite may occur if use both of them.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname2 = new fortimanager.ObjectSystemGeoipoverride("trname2", {});
    const trname = new fortimanager.ObjectSystemGeoipoverrideIp6range("trname", {
        geoipOverride: trname2.name,
        endIp: "2001:db8:85a3::8a2e:470:7334",
        fosid: 2,
        startIp: "2001:db8:85a3::8a2e:370:7334",
    }, {
        dependsOn: [trname2],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname2 = fortimanager.ObjectSystemGeoipoverride("trname2")
    trname = fortimanager.ObjectSystemGeoipoverrideIp6range("trname",
        geoip_override=trname2.name,
        end_ip="2001:db8:85a3::8a2e:470:7334",
        fosid=2,
        start_ip="2001:db8:85a3::8a2e:370:7334",
        opts = pulumi.ResourceOptions(depends_on=[trname2]))
    
    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 {
    		trname2, err := fortimanager.NewObjectSystemGeoipoverride(ctx, "trname2", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectSystemGeoipoverrideIp6range(ctx, "trname", &fortimanager.ObjectSystemGeoipoverrideIp6rangeArgs{
    			GeoipOverride: trname2.Name,
    			EndIp:         pulumi.String("2001:db8:85a3::8a2e:470:7334"),
    			Fosid:         pulumi.Float64(2),
    			StartIp:       pulumi.String("2001:db8:85a3::8a2e:370:7334"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trname2,
    		}))
    		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 trname2 = new Fortimanager.ObjectSystemGeoipoverride("trname2");
    
        var trname = new Fortimanager.ObjectSystemGeoipoverrideIp6range("trname", new()
        {
            GeoipOverride = trname2.Name,
            EndIp = "2001:db8:85a3::8a2e:470:7334",
            Fosid = 2,
            StartIp = "2001:db8:85a3::8a2e:370:7334",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trname2,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectSystemGeoipoverride;
    import com.pulumi.fortimanager.ObjectSystemGeoipoverrideIp6range;
    import com.pulumi.fortimanager.ObjectSystemGeoipoverrideIp6rangeArgs;
    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 trname2 = new ObjectSystemGeoipoverride("trname2");
    
            var trname = new ObjectSystemGeoipoverrideIp6range("trname", ObjectSystemGeoipoverrideIp6rangeArgs.builder()
                .geoipOverride(trname2.name())
                .endIp("2001:db8:85a3::8a2e:470:7334")
                .fosid(2)
                .startIp("2001:db8:85a3::8a2e:370:7334")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trname2)
                    .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectSystemGeoipoverrideIp6range
        properties:
          geoipOverride: ${trname2.name}
          endIp: 2001:db8:85a3::8a2e:470:7334
          fosid: 2
          startIp: 2001:db8:85a3::8a2e:370:7334
        options:
          dependsOn:
            - ${trname2}
      trname2:
        type: fortimanager:ObjectSystemGeoipoverride
    

    Create ObjectSystemGeoipoverrideIp6range Resource

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

    Constructor syntax

    new ObjectSystemGeoipoverrideIp6range(name: string, args: ObjectSystemGeoipoverrideIp6rangeArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectSystemGeoipoverrideIp6range(resource_name: str,
                                          args: ObjectSystemGeoipoverrideIp6rangeArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectSystemGeoipoverrideIp6range(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          geoip_override: Optional[str] = None,
                                          adom: Optional[str] = None,
                                          end_ip: Optional[str] = None,
                                          fosid: Optional[float] = None,
                                          object_system_geoipoverride_ip6range_id: Optional[str] = None,
                                          scopetype: Optional[str] = None,
                                          start_ip: Optional[str] = None)
    func NewObjectSystemGeoipoverrideIp6range(ctx *Context, name string, args ObjectSystemGeoipoverrideIp6rangeArgs, opts ...ResourceOption) (*ObjectSystemGeoipoverrideIp6range, error)
    public ObjectSystemGeoipoverrideIp6range(string name, ObjectSystemGeoipoverrideIp6rangeArgs args, CustomResourceOptions? opts = null)
    public ObjectSystemGeoipoverrideIp6range(String name, ObjectSystemGeoipoverrideIp6rangeArgs args)
    public ObjectSystemGeoipoverrideIp6range(String name, ObjectSystemGeoipoverrideIp6rangeArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectSystemGeoipoverrideIp6range
    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 ObjectSystemGeoipoverrideIp6rangeArgs
    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 ObjectSystemGeoipoverrideIp6rangeArgs
    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 ObjectSystemGeoipoverrideIp6rangeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectSystemGeoipoverrideIp6rangeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectSystemGeoipoverrideIp6rangeArgs
    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 objectSystemGeoipoverrideIp6rangeResource = new Fortimanager.ObjectSystemGeoipoverrideIp6range("objectSystemGeoipoverrideIp6rangeResource", new()
    {
        GeoipOverride = "string",
        Adom = "string",
        EndIp = "string",
        Fosid = 0,
        ObjectSystemGeoipoverrideIp6rangeId = "string",
        Scopetype = "string",
        StartIp = "string",
    });
    
    example, err := fortimanager.NewObjectSystemGeoipoverrideIp6range(ctx, "objectSystemGeoipoverrideIp6rangeResource", &fortimanager.ObjectSystemGeoipoverrideIp6rangeArgs{
    GeoipOverride: pulumi.String("string"),
    Adom: pulumi.String("string"),
    EndIp: pulumi.String("string"),
    Fosid: pulumi.Float64(0),
    ObjectSystemGeoipoverrideIp6rangeId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    StartIp: pulumi.String("string"),
    })
    
    var objectSystemGeoipoverrideIp6rangeResource = new ObjectSystemGeoipoverrideIp6range("objectSystemGeoipoverrideIp6rangeResource", ObjectSystemGeoipoverrideIp6rangeArgs.builder()
        .geoipOverride("string")
        .adom("string")
        .endIp("string")
        .fosid(0)
        .objectSystemGeoipoverrideIp6rangeId("string")
        .scopetype("string")
        .startIp("string")
        .build());
    
    object_system_geoipoverride_ip6range_resource = fortimanager.ObjectSystemGeoipoverrideIp6range("objectSystemGeoipoverrideIp6rangeResource",
        geoip_override="string",
        adom="string",
        end_ip="string",
        fosid=0,
        object_system_geoipoverride_ip6range_id="string",
        scopetype="string",
        start_ip="string")
    
    const objectSystemGeoipoverrideIp6rangeResource = new fortimanager.ObjectSystemGeoipoverrideIp6range("objectSystemGeoipoverrideIp6rangeResource", {
        geoipOverride: "string",
        adom: "string",
        endIp: "string",
        fosid: 0,
        objectSystemGeoipoverrideIp6rangeId: "string",
        scopetype: "string",
        startIp: "string",
    });
    
    type: fortimanager:ObjectSystemGeoipoverrideIp6range
    properties:
        adom: string
        endIp: string
        fosid: 0
        geoipOverride: string
        objectSystemGeoipoverrideIp6rangeId: string
        scopetype: string
        startIp: string
    

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

    GeoipOverride string
    Geoip Override.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    Fosid double
    ID of individual entry in the IPv6 range table.
    ObjectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    GeoipOverride string
    Geoip Override.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    Fosid float64
    ID of individual entry in the IPv6 range table.
    ObjectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    geoipOverride String
    Geoip Override.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid Double
    ID of individual entry in the IPv6 range table.
    objectSystemGeoipoverrideIp6rangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    geoipOverride string
    Geoip Override.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid number
    ID of individual entry in the IPv6 range table.
    objectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    geoip_override str
    Geoip Override.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    end_ip str
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid float
    ID of individual entry in the IPv6 range table.
    object_system_geoipoverride_ip6range_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    start_ip str
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    geoipOverride String
    Geoip Override.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid Number
    ID of individual entry in the IPv6 range table.
    objectSystemGeoipoverrideIp6rangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).

    Outputs

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

    Get an existing ObjectSystemGeoipoverrideIp6range 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?: ObjectSystemGeoipoverrideIp6rangeState, opts?: CustomResourceOptions): ObjectSystemGeoipoverrideIp6range
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            end_ip: Optional[str] = None,
            fosid: Optional[float] = None,
            geoip_override: Optional[str] = None,
            object_system_geoipoverride_ip6range_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            start_ip: Optional[str] = None) -> ObjectSystemGeoipoverrideIp6range
    func GetObjectSystemGeoipoverrideIp6range(ctx *Context, name string, id IDInput, state *ObjectSystemGeoipoverrideIp6rangeState, opts ...ResourceOption) (*ObjectSystemGeoipoverrideIp6range, error)
    public static ObjectSystemGeoipoverrideIp6range Get(string name, Input<string> id, ObjectSystemGeoipoverrideIp6rangeState? state, CustomResourceOptions? opts = null)
    public static ObjectSystemGeoipoverrideIp6range get(String name, Output<String> id, ObjectSystemGeoipoverrideIp6rangeState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectSystemGeoipoverrideIp6range    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    Fosid double
    ID of individual entry in the IPv6 range table.
    GeoipOverride string
    Geoip Override.
    ObjectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    EndIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    Fosid float64
    ID of individual entry in the IPv6 range table.
    GeoipOverride string
    Geoip Override.
    ObjectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    StartIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid Double
    ID of individual entry in the IPv6 range table.
    geoipOverride String
    Geoip Override.
    objectSystemGeoipoverrideIp6rangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp string
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid number
    ID of individual entry in the IPv6 range table.
    geoipOverride string
    Geoip Override.
    objectSystemGeoipoverrideIp6rangeId string
    an identifier for the resource with format {{fosid}}.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp string
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    end_ip str
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid float
    ID of individual entry in the IPv6 range table.
    geoip_override str
    Geoip Override.
    object_system_geoipoverride_ip6range_id str
    an identifier for the resource with format {{fosid}}.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    start_ip str
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    endIp String
    Ending IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).
    fosid Number
    ID of individual entry in the IPv6 range table.
    geoipOverride String
    Geoip Override.
    objectSystemGeoipoverrideIp6rangeId String
    an identifier for the resource with format {{fosid}}.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    startIp String
    Starting IP address, inclusive, of the address range (format: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx).

    Import

    ObjectSystem GeoipOverrideIp6Range can be imported using any of these accepted formats:

    Set import_options = [“geoip_override=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectSystemGeoipoverrideIp6range:ObjectSystemGeoipoverrideIp6range labelname {{fosid}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

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

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

    Package Details

    Repository
    fortimanager fortinetdev/terraform-provider-fortimanager
    License
    Notes
    This Pulumi package is based on the fortimanager Terraform Provider.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev