fortimanager.ObjectVpnmgrNodeSummaryAddr
Explore with Pulumi AI
ObjectVpnmgr NodeSummaryAddr
This resource is a sub resource for variable
summary_addr
of resourcefortimanager.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: 5});
const trnameObjectVpnmgrNodeSummaryAddr = new fortimanager.ObjectVpnmgrNodeSummaryAddr("trnameObjectVpnmgrNodeSummaryAddr", {
node: trnameObjectVpnmgrNode.fosid,
priority: 2,
seq: 1,
}, {
dependsOn: [trnameObjectVpnmgrNode],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_vpnmgr_node = fortimanager.ObjectVpnmgrNode("trnameObjectVpnmgrNode", fosid=5)
trname_object_vpnmgr_node_summary_addr = fortimanager.ObjectVpnmgrNodeSummaryAddr("trnameObjectVpnmgrNodeSummaryAddr",
node=trname_object_vpnmgr_node.fosid,
priority=2,
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(5),
})
if err != nil {
return err
}
_, err = fortimanager.NewObjectVpnmgrNodeSummaryAddr(ctx, "trnameObjectVpnmgrNodeSummaryAddr", &fortimanager.ObjectVpnmgrNodeSummaryAddrArgs{
Node: trnameObjectVpnmgrNode.Fosid,
Priority: pulumi.Float64(2),
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 = 5,
});
var trnameObjectVpnmgrNodeSummaryAddr = new Fortimanager.ObjectVpnmgrNodeSummaryAddr("trnameObjectVpnmgrNodeSummaryAddr", new()
{
Node = trnameObjectVpnmgrNode.Fosid,
Priority = 2,
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.ObjectVpnmgrNodeSummaryAddr;
import com.pulumi.fortimanager.ObjectVpnmgrNodeSummaryAddrArgs;
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(5)
.build());
var trnameObjectVpnmgrNodeSummaryAddr = new ObjectVpnmgrNodeSummaryAddr("trnameObjectVpnmgrNodeSummaryAddr", ObjectVpnmgrNodeSummaryAddrArgs.builder()
.node(trnameObjectVpnmgrNode.fosid())
.priority(2)
.seq(1)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectVpnmgrNode)
.build());
}
}
resources:
trnameObjectVpnmgrNodeSummaryAddr:
type: fortimanager:ObjectVpnmgrNodeSummaryAddr
properties:
node: ${trnameObjectVpnmgrNode.fosid}
priority: 2
seq: 1
options:
dependsOn:
- ${trnameObjectVpnmgrNode}
trnameObjectVpnmgrNode:
type: fortimanager:ObjectVpnmgrNode
properties:
fosid: 5
Create ObjectVpnmgrNodeSummaryAddr Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectVpnmgrNodeSummaryAddr(name: string, args: ObjectVpnmgrNodeSummaryAddrArgs, opts?: CustomResourceOptions);
@overload
def ObjectVpnmgrNodeSummaryAddr(resource_name: str,
args: ObjectVpnmgrNodeSummaryAddrInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectVpnmgrNodeSummaryAddr(resource_name: str,
opts: Optional[ResourceOptions] = None,
node: Optional[str] = None,
addr: Optional[str] = None,
adom: Optional[str] = None,
object_vpnmgr_node_summary_addr_id: Optional[str] = None,
priority: Optional[float] = None,
scopetype: Optional[str] = None,
seq: Optional[float] = None)
func NewObjectVpnmgrNodeSummaryAddr(ctx *Context, name string, args ObjectVpnmgrNodeSummaryAddrArgs, opts ...ResourceOption) (*ObjectVpnmgrNodeSummaryAddr, error)
public ObjectVpnmgrNodeSummaryAddr(string name, ObjectVpnmgrNodeSummaryAddrArgs args, CustomResourceOptions? opts = null)
public ObjectVpnmgrNodeSummaryAddr(String name, ObjectVpnmgrNodeSummaryAddrArgs args)
public ObjectVpnmgrNodeSummaryAddr(String name, ObjectVpnmgrNodeSummaryAddrArgs args, CustomResourceOptions options)
type: fortimanager:ObjectVpnmgrNodeSummaryAddr
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 ObjectVpnmgrNodeSummaryAddrArgs
- 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 ObjectVpnmgrNodeSummaryAddrInitArgs
- 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 ObjectVpnmgrNodeSummaryAddrArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectVpnmgrNodeSummaryAddrArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectVpnmgrNodeSummaryAddrArgs
- 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 objectVpnmgrNodeSummaryAddrResource = new Fortimanager.ObjectVpnmgrNodeSummaryAddr("objectVpnmgrNodeSummaryAddrResource", new()
{
Node = "string",
Addr = "string",
Adom = "string",
ObjectVpnmgrNodeSummaryAddrId = "string",
Priority = 0,
Scopetype = "string",
Seq = 0,
});
example, err := fortimanager.NewObjectVpnmgrNodeSummaryAddr(ctx, "objectVpnmgrNodeSummaryAddrResource", &fortimanager.ObjectVpnmgrNodeSummaryAddrArgs{
Node: pulumi.String("string"),
Addr: pulumi.String("string"),
Adom: pulumi.String("string"),
ObjectVpnmgrNodeSummaryAddrId: pulumi.String("string"),
Priority: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Seq: pulumi.Float64(0),
})
var objectVpnmgrNodeSummaryAddrResource = new ObjectVpnmgrNodeSummaryAddr("objectVpnmgrNodeSummaryAddrResource", ObjectVpnmgrNodeSummaryAddrArgs.builder()
.node("string")
.addr("string")
.adom("string")
.objectVpnmgrNodeSummaryAddrId("string")
.priority(0)
.scopetype("string")
.seq(0)
.build());
object_vpnmgr_node_summary_addr_resource = fortimanager.ObjectVpnmgrNodeSummaryAddr("objectVpnmgrNodeSummaryAddrResource",
node="string",
addr="string",
adom="string",
object_vpnmgr_node_summary_addr_id="string",
priority=0,
scopetype="string",
seq=0)
const objectVpnmgrNodeSummaryAddrResource = new fortimanager.ObjectVpnmgrNodeSummaryAddr("objectVpnmgrNodeSummaryAddrResource", {
node: "string",
addr: "string",
adom: "string",
objectVpnmgrNodeSummaryAddrId: "string",
priority: 0,
scopetype: "string",
seq: 0,
});
type: fortimanager:ObjectVpnmgrNodeSummaryAddr
properties:
addr: string
adom: string
node: string
objectVpnmgrNodeSummaryAddrId: string
priority: 0
scopetype: string
seq: 0
ObjectVpnmgrNodeSummaryAddr 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 ObjectVpnmgrNodeSummaryAddr resource accepts the following input properties:
- Node string
- Node.
- Addr string
- Addr.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- Priority double
- Priority.
- 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
. - Seq double
- Seq.
- Node string
- Node.
- Addr string
- Addr.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- Priority float64
- Priority.
- 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
. - Seq float64
- Seq.
- node String
- Node.
- addr String
- Addr.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Vpnmgr StringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority Double
- Priority.
- 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
. - seq Double
- Seq.
- node string
- Node.
- addr string
- Addr.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority number
- Priority.
- 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
. - seq number
- Seq.
- node str
- Node.
- addr str
- Addr.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object_
vpnmgr_ strnode_ summary_ addr_ id - an identifier for the resource with format {{seq}}.
- priority float
- Priority.
- 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
. - seq float
- Seq.
- node String
- Node.
- addr String
- Addr.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - object
Vpnmgr StringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority Number
- Priority.
- 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
. - seq Number
- Seq.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectVpnmgrNodeSummaryAddr 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 ObjectVpnmgrNodeSummaryAddr Resource
Get an existing ObjectVpnmgrNodeSummaryAddr 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?: ObjectVpnmgrNodeSummaryAddrState, opts?: CustomResourceOptions): ObjectVpnmgrNodeSummaryAddr
@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_summary_addr_id: Optional[str] = None,
priority: Optional[float] = None,
scopetype: Optional[str] = None,
seq: Optional[float] = None) -> ObjectVpnmgrNodeSummaryAddr
func GetObjectVpnmgrNodeSummaryAddr(ctx *Context, name string, id IDInput, state *ObjectVpnmgrNodeSummaryAddrState, opts ...ResourceOption) (*ObjectVpnmgrNodeSummaryAddr, error)
public static ObjectVpnmgrNodeSummaryAddr Get(string name, Input<string> id, ObjectVpnmgrNodeSummaryAddrState? state, CustomResourceOptions? opts = null)
public static ObjectVpnmgrNodeSummaryAddr get(String name, Output<String> id, ObjectVpnmgrNodeSummaryAddrState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectVpnmgrNodeSummaryAddr 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.
- Addr string
- Addr.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Node string
- Node.
- Object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- Priority double
- Priority.
- 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
. - Seq double
- Seq.
- Addr string
- Addr.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Node string
- Node.
- Object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- Priority float64
- Priority.
- 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
. - Seq float64
- Seq.
- addr String
- Addr.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - node String
- Node.
- object
Vpnmgr StringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority Double
- Priority.
- 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
. - seq Double
- Seq.
- addr string
- Addr.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - node string
- Node.
- object
Vpnmgr stringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority number
- Priority.
- 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
. - seq number
- Seq.
- addr str
- Addr.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - node str
- Node.
- object_
vpnmgr_ strnode_ summary_ addr_ id - an identifier for the resource with format {{seq}}.
- priority float
- Priority.
- 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
. - seq float
- Seq.
- addr String
- Addr.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - node String
- Node.
- object
Vpnmgr StringNode Summary Addr Id - an identifier for the resource with format {{seq}}.
- priority Number
- Priority.
- 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
. - seq Number
- Seq.
Import
ObjectVpnmgr NodeSummaryAddr 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/objectVpnmgrNodeSummaryAddr:ObjectVpnmgrNodeSummaryAddr 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.