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

fortimanager.ObjectVpnmgrNodeProtectedSubnet

Explore with Pulumi AI

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

    ObjectVpnmgr NodeProtectedSubnet

    This resource is a sub resource for variable protected_subnet of resource fortimanager.ObjectVpnmgrNode. 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 trnameObjectVpnmgrNode = new fortimanager.ObjectVpnmgrNode("trnameObjectVpnmgrNode", {fosid: 3});
    const trnameObjectVpnmgrNodeProtectedSubnet = new fortimanager.ObjectVpnmgrNodeProtectedSubnet("trnameObjectVpnmgrNodeProtectedSubnet", {
        node: trnameObjectVpnmgrNode.fosid,
        seq: 1,
    }, {
        dependsOn: [trnameObjectVpnmgrNode],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_vpnmgr_node = fortimanager.ObjectVpnmgrNode("trnameObjectVpnmgrNode", fosid=3)
    trname_object_vpnmgr_node_protected_subnet = fortimanager.ObjectVpnmgrNodeProtectedSubnet("trnameObjectVpnmgrNodeProtectedSubnet",
        node=trname_object_vpnmgr_node.fosid,
        seq=1,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_vpnmgr_node]))
    
    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 {
    		trnameObjectVpnmgrNode, err := fortimanager.NewObjectVpnmgrNode(ctx, "trnameObjectVpnmgrNode", &fortimanager.ObjectVpnmgrNodeArgs{
    			Fosid: pulumi.Float64(3),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectVpnmgrNodeProtectedSubnet(ctx, "trnameObjectVpnmgrNodeProtectedSubnet", &fortimanager.ObjectVpnmgrNodeProtectedSubnetArgs{
    			Node: trnameObjectVpnmgrNode.Fosid,
    			Seq:  pulumi.Float64(1),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectVpnmgrNode,
    		}))
    		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 trnameObjectVpnmgrNode = new Fortimanager.ObjectVpnmgrNode("trnameObjectVpnmgrNode", new()
        {
            Fosid = 3,
        });
    
        var trnameObjectVpnmgrNodeProtectedSubnet = new Fortimanager.ObjectVpnmgrNodeProtectedSubnet("trnameObjectVpnmgrNodeProtectedSubnet", new()
        {
            Node = trnameObjectVpnmgrNode.Fosid,
            Seq = 1,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectVpnmgrNode,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVpnmgrNode;
    import com.pulumi.fortimanager.ObjectVpnmgrNodeArgs;
    import com.pulumi.fortimanager.ObjectVpnmgrNodeProtectedSubnet;
    import com.pulumi.fortimanager.ObjectVpnmgrNodeProtectedSubnetArgs;
    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 trnameObjectVpnmgrNode = new ObjectVpnmgrNode("trnameObjectVpnmgrNode", ObjectVpnmgrNodeArgs.builder()
                .fosid(3)
                .build());
    
            var trnameObjectVpnmgrNodeProtectedSubnet = new ObjectVpnmgrNodeProtectedSubnet("trnameObjectVpnmgrNodeProtectedSubnet", ObjectVpnmgrNodeProtectedSubnetArgs.builder()
                .node(trnameObjectVpnmgrNode.fosid())
                .seq(1)
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectVpnmgrNode)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectVpnmgrNodeProtectedSubnet:
        type: fortimanager:ObjectVpnmgrNodeProtectedSubnet
        properties:
          node: ${trnameObjectVpnmgrNode.fosid}
          seq: 1
        options:
          dependsOn:
            - ${trnameObjectVpnmgrNode}
      trnameObjectVpnmgrNode:
        type: fortimanager:ObjectVpnmgrNode
        properties:
          fosid: 3
    

    Create ObjectVpnmgrNodeProtectedSubnet Resource

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

    Constructor syntax

    new ObjectVpnmgrNodeProtectedSubnet(name: string, args: ObjectVpnmgrNodeProtectedSubnetArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnmgrNodeProtectedSubnet(resource_name: str,
                                        args: ObjectVpnmgrNodeProtectedSubnetInitArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnmgrNodeProtectedSubnet(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        node: Optional[str] = None,
                                        addr: Optional[str] = None,
                                        adom: Optional[str] = None,
                                        object_vpnmgr_node_protected_subnet_id: Optional[str] = None,
                                        scopetype: Optional[str] = None,
                                        seq: Optional[float] = None)
    func NewObjectVpnmgrNodeProtectedSubnet(ctx *Context, name string, args ObjectVpnmgrNodeProtectedSubnetArgs, opts ...ResourceOption) (*ObjectVpnmgrNodeProtectedSubnet, error)
    public ObjectVpnmgrNodeProtectedSubnet(string name, ObjectVpnmgrNodeProtectedSubnetArgs args, CustomResourceOptions? opts = null)
    public ObjectVpnmgrNodeProtectedSubnet(String name, ObjectVpnmgrNodeProtectedSubnetArgs args)
    public ObjectVpnmgrNodeProtectedSubnet(String name, ObjectVpnmgrNodeProtectedSubnetArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnmgrNodeProtectedSubnet
    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 ObjectVpnmgrNodeProtectedSubnetArgs
    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 ObjectVpnmgrNodeProtectedSubnetInitArgs
    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 ObjectVpnmgrNodeProtectedSubnetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnmgrNodeProtectedSubnetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnmgrNodeProtectedSubnetArgs
    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 objectVpnmgrNodeProtectedSubnetResource = new Fortimanager.ObjectVpnmgrNodeProtectedSubnet("objectVpnmgrNodeProtectedSubnetResource", new()
    {
        Node = "string",
        Addr = "string",
        Adom = "string",
        ObjectVpnmgrNodeProtectedSubnetId = "string",
        Scopetype = "string",
        Seq = 0,
    });
    
    example, err := fortimanager.NewObjectVpnmgrNodeProtectedSubnet(ctx, "objectVpnmgrNodeProtectedSubnetResource", &fortimanager.ObjectVpnmgrNodeProtectedSubnetArgs{
    Node: pulumi.String("string"),
    Addr: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ObjectVpnmgrNodeProtectedSubnetId: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Seq: pulumi.Float64(0),
    })
    
    var objectVpnmgrNodeProtectedSubnetResource = new ObjectVpnmgrNodeProtectedSubnet("objectVpnmgrNodeProtectedSubnetResource", ObjectVpnmgrNodeProtectedSubnetArgs.builder()
        .node("string")
        .addr("string")
        .adom("string")
        .objectVpnmgrNodeProtectedSubnetId("string")
        .scopetype("string")
        .seq(0)
        .build());
    
    object_vpnmgr_node_protected_subnet_resource = fortimanager.ObjectVpnmgrNodeProtectedSubnet("objectVpnmgrNodeProtectedSubnetResource",
        node="string",
        addr="string",
        adom="string",
        object_vpnmgr_node_protected_subnet_id="string",
        scopetype="string",
        seq=0)
    
    const objectVpnmgrNodeProtectedSubnetResource = new fortimanager.ObjectVpnmgrNodeProtectedSubnet("objectVpnmgrNodeProtectedSubnetResource", {
        node: "string",
        addr: "string",
        adom: "string",
        objectVpnmgrNodeProtectedSubnetId: "string",
        scopetype: "string",
        seq: 0,
    });
    
    type: fortimanager:ObjectVpnmgrNodeProtectedSubnet
    properties:
        addr: string
        adom: string
        node: string
        objectVpnmgrNodeProtectedSubnetId: string
        scopetype: string
        seq: 0
    

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

    Node string
    Node.
    Addr string
    Addr.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ObjectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    Seq double
    Seq.
    Node string
    Node.
    Addr string
    Addr.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    ObjectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    Seq float64
    Seq.
    node String
    Node.
    addr String
    Addr.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectVpnmgrNodeProtectedSubnetId String
    an identifier for the resource with format {{seq}}.
    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.
    seq Double
    Seq.
    node string
    Node.
    addr string
    Addr.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    seq number
    Seq.
    node str
    Node.
    addr str
    Addr.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    object_vpnmgr_node_protected_subnet_id str
    an identifier for the resource with format {{seq}}.
    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.
    seq float
    Seq.
    node String
    Node.
    addr String
    Addr.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    objectVpnmgrNodeProtectedSubnetId String
    an identifier for the resource with format {{seq}}.
    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.
    seq Number
    Seq.

    Outputs

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

    Get an existing ObjectVpnmgrNodeProtectedSubnet 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?: ObjectVpnmgrNodeProtectedSubnetState, opts?: CustomResourceOptions): ObjectVpnmgrNodeProtectedSubnet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            addr: Optional[str] = None,
            adom: Optional[str] = None,
            node: Optional[str] = None,
            object_vpnmgr_node_protected_subnet_id: Optional[str] = None,
            scopetype: Optional[str] = None,
            seq: Optional[float] = None) -> ObjectVpnmgrNodeProtectedSubnet
    func GetObjectVpnmgrNodeProtectedSubnet(ctx *Context, name string, id IDInput, state *ObjectVpnmgrNodeProtectedSubnetState, opts ...ResourceOption) (*ObjectVpnmgrNodeProtectedSubnet, error)
    public static ObjectVpnmgrNodeProtectedSubnet Get(string name, Input<string> id, ObjectVpnmgrNodeProtectedSubnetState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnmgrNodeProtectedSubnet get(String name, Output<String> id, ObjectVpnmgrNodeProtectedSubnetState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnmgrNodeProtectedSubnet    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:
    Addr string
    Addr.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Node string
    Node.
    ObjectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    Seq double
    Seq.
    Addr string
    Addr.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Node string
    Node.
    ObjectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    Seq float64
    Seq.
    addr String
    Addr.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    node String
    Node.
    objectVpnmgrNodeProtectedSubnetId String
    an identifier for the resource with format {{seq}}.
    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.
    seq Double
    Seq.
    addr string
    Addr.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    node string
    Node.
    objectVpnmgrNodeProtectedSubnetId string
    an identifier for the resource with format {{seq}}.
    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.
    seq number
    Seq.
    addr str
    Addr.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    node str
    Node.
    object_vpnmgr_node_protected_subnet_id str
    an identifier for the resource with format {{seq}}.
    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.
    seq float
    Seq.
    addr String
    Addr.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    node String
    Node.
    objectVpnmgrNodeProtectedSubnetId String
    an identifier for the resource with format {{seq}}.
    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.
    seq Number
    Seq.

    Import

    ObjectVpnmgr NodeProtectedSubnet can be imported using any of these accepted formats:

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnmgrNodeProtectedSubnet:ObjectVpnmgrNodeProtectedSubnet labelname {{seq}}
    

    $ 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