1. Packages
  2. Vra Provider
  3. API Docs
  4. Network
vra 0.12.0 published on Monday, Apr 14, 2025 by vmware

vra.Network

Explore with Pulumi AI

Example Usage

S

This is an example of how to create a network resource.

import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";

const myNetwork = new vra.Network("myNetwork", {
    constraints: [{
        expression: "pci",
        mandatory: true,
    }],
    outboundAccess: false,
    tags: [{
        key: "foo",
        value: "bar",
    }],
});
Copy
import pulumi
import pulumi_vra as vra

my_network = vra.Network("myNetwork",
    constraints=[{
        "expression": "pci",
        "mandatory": True,
    }],
    outbound_access=False,
    tags=[{
        "key": "foo",
        "value": "bar",
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := vra.NewNetwork(ctx, "myNetwork", &vra.NetworkArgs{
			Constraints: vra.NetworkConstraintArray{
				&vra.NetworkConstraintArgs{
					Expression: pulumi.String("pci"),
					Mandatory:  pulumi.Bool(true),
				},
			},
			OutboundAccess: pulumi.Bool(false),
			Tags: vra.NetworkTagArray{
				&vra.NetworkTagArgs{
					Key:   pulumi.String("foo"),
					Value: pulumi.String("bar"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;

return await Deployment.RunAsync(() => 
{
    var myNetwork = new Vra.Network("myNetwork", new()
    {
        Constraints = new[]
        {
            new Vra.Inputs.NetworkConstraintArgs
            {
                Expression = "pci",
                Mandatory = true,
            },
        },
        OutboundAccess = false,
        Tags = new[]
        {
            new Vra.Inputs.NetworkTagArgs
            {
                Key = "foo",
                Value = "bar",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.Network;
import com.pulumi.vra.NetworkArgs;
import com.pulumi.vra.inputs.NetworkConstraintArgs;
import com.pulumi.vra.inputs.NetworkTagArgs;
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 myNetwork = new Network("myNetwork", NetworkArgs.builder()
            .constraints(NetworkConstraintArgs.builder()
                .expression("pci")
                .mandatory(true)
                .build())
            .outboundAccess(false)
            .tags(NetworkTagArgs.builder()
                .key("foo")
                .value("bar")
                .build())
            .build());

    }
}
Copy
resources:
  myNetwork:
    type: vra:Network
    properties:
      constraints:
        - expression: pci
          mandatory: true
      outboundAccess: false
      tags:
        - key: foo
          value: bar
Copy

A network resource supports the following resource:

Create Network Resource

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

Constructor syntax

new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);
@overload
def Network(resource_name: str,
            args: NetworkArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Network(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            project_id: Optional[str] = None,
            constraints: Optional[Sequence[NetworkConstraintArgs]] = None,
            custom_properties: Optional[Mapping[str, str]] = None,
            deployment_id: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            network_id: Optional[str] = None,
            outbound_access: Optional[bool] = None,
            tags: Optional[Sequence[NetworkTagArgs]] = None,
            timeouts: Optional[NetworkTimeoutsArgs] = None)
func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)
public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: vra:Network
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkArgs
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 networkResource = new Vra.Network("networkResource", new()
{
    ProjectId = "string",
    Constraints = new[]
    {
        new Vra.Inputs.NetworkConstraintArgs
        {
            Expression = "string",
            Mandatory = false,
        },
    },
    CustomProperties = 
    {
        { "string", "string" },
    },
    DeploymentId = "string",
    Description = "string",
    Name = "string",
    NetworkId = "string",
    OutboundAccess = false,
    Tags = new[]
    {
        new Vra.Inputs.NetworkTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
    Timeouts = new Vra.Inputs.NetworkTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Update = "string",
    },
});
Copy
example, err := vra.NewNetwork(ctx, "networkResource", &vra.NetworkArgs{
	ProjectId: pulumi.String("string"),
	Constraints: vra.NetworkConstraintArray{
		&vra.NetworkConstraintArgs{
			Expression: pulumi.String("string"),
			Mandatory:  pulumi.Bool(false),
		},
	},
	CustomProperties: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DeploymentId:   pulumi.String("string"),
	Description:    pulumi.String("string"),
	Name:           pulumi.String("string"),
	NetworkId:      pulumi.String("string"),
	OutboundAccess: pulumi.Bool(false),
	Tags: vra.NetworkTagArray{
		&vra.NetworkTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
	Timeouts: &vra.NetworkTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
		Update: pulumi.String("string"),
	},
})
Copy
var networkResource = new Network("networkResource", NetworkArgs.builder()
    .projectId("string")
    .constraints(NetworkConstraintArgs.builder()
        .expression("string")
        .mandatory(false)
        .build())
    .customProperties(Map.of("string", "string"))
    .deploymentId("string")
    .description("string")
    .name("string")
    .networkId("string")
    .outboundAccess(false)
    .tags(NetworkTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .timeouts(NetworkTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .update("string")
        .build())
    .build());
Copy
network_resource = vra.Network("networkResource",
    project_id="string",
    constraints=[{
        "expression": "string",
        "mandatory": False,
    }],
    custom_properties={
        "string": "string",
    },
    deployment_id="string",
    description="string",
    name="string",
    network_id="string",
    outbound_access=False,
    tags=[{
        "key": "string",
        "value": "string",
    }],
    timeouts={
        "create": "string",
        "delete": "string",
        "update": "string",
    })
Copy
const networkResource = new vra.Network("networkResource", {
    projectId: "string",
    constraints: [{
        expression: "string",
        mandatory: false,
    }],
    customProperties: {
        string: "string",
    },
    deploymentId: "string",
    description: "string",
    name: "string",
    networkId: "string",
    outboundAccess: false,
    tags: [{
        key: "string",
        value: "string",
    }],
    timeouts: {
        create: "string",
        "delete": "string",
        update: "string",
    },
});
Copy
type: vra:Network
properties:
    constraints:
        - expression: string
          mandatory: false
    customProperties:
        string: string
    deploymentId: string
    description: string
    name: string
    networkId: string
    outboundAccess: false
    projectId: string
    tags:
        - key: string
          value: string
    timeouts:
        create: string
        delete: string
        update: string
Copy

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

ProjectId This property is required. string
The id of the project this resource belongs to.
Constraints List<NetworkConstraint>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
CustomProperties Dictionary<string, string>
Additional properties that may be used to extend the base resource.
DeploymentId string
Deployment id that is associated with this resource.
Description string
A human-friendly description.
Name string
A human-friendly name used as an identifier in APIs that support this option.
NetworkId string
OutboundAccess bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
Tags List<NetworkTag>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
Timeouts NetworkTimeouts
ProjectId This property is required. string
The id of the project this resource belongs to.
Constraints []NetworkConstraintArgs
List of storage, network and extensibility constraints to be applied when provisioning through this project.
CustomProperties map[string]string
Additional properties that may be used to extend the base resource.
DeploymentId string
Deployment id that is associated with this resource.
Description string
A human-friendly description.
Name string
A human-friendly name used as an identifier in APIs that support this option.
NetworkId string
OutboundAccess bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
Tags []NetworkTagArgs
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
Timeouts NetworkTimeoutsArgs
projectId This property is required. String
The id of the project this resource belongs to.
constraints List<NetworkConstraint>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties Map<String,String>
Additional properties that may be used to extend the base resource.
deploymentId String
Deployment id that is associated with this resource.
description String
A human-friendly description.
name String
A human-friendly name used as an identifier in APIs that support this option.
networkId String
outboundAccess Boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
tags List<NetworkTag>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeouts
projectId This property is required. string
The id of the project this resource belongs to.
constraints NetworkConstraint[]
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties {[key: string]: string}
Additional properties that may be used to extend the base resource.
deploymentId string
Deployment id that is associated with this resource.
description string
A human-friendly description.
name string
A human-friendly name used as an identifier in APIs that support this option.
networkId string
outboundAccess boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
tags NetworkTag[]
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeouts
project_id This property is required. str
The id of the project this resource belongs to.
constraints Sequence[NetworkConstraintArgs]
List of storage, network and extensibility constraints to be applied when provisioning through this project.
custom_properties Mapping[str, str]
Additional properties that may be used to extend the base resource.
deployment_id str
Deployment id that is associated with this resource.
description str
A human-friendly description.
name str
A human-friendly name used as an identifier in APIs that support this option.
network_id str
outbound_access bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
tags Sequence[NetworkTagArgs]
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeoutsArgs
projectId This property is required. String
The id of the project this resource belongs to.
constraints List<Property Map>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties Map<String>
Additional properties that may be used to extend the base resource.
deploymentId String
Deployment id that is associated with this resource.
description String
A human-friendly description.
name String
A human-friendly name used as an identifier in APIs that support this option.
networkId String
outboundAccess Boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
tags List<Property Map>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts Property Map

Outputs

All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:

Cidr string
IPv4 address range of the network in CIDR format.
ExternalId string
External entity Id on the provider side.
ExternalZoneId string
The external zoneId of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Links List<NetworkLink>
HATEOAS of the entity
OrganizationId string
The id of the organization this entity belongs to.
Owner string
Email of the user that owns the entity.
SelfLink string
Self link of this request.
UpdatedAt string
Cidr string
IPv4 address range of the network in CIDR format.
ExternalId string
External entity Id on the provider side.
ExternalZoneId string
The external zoneId of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Links []NetworkLink
HATEOAS of the entity
OrganizationId string
The id of the organization this entity belongs to.
Owner string
Email of the user that owns the entity.
SelfLink string
Self link of this request.
UpdatedAt string
cidr String
IPv4 address range of the network in CIDR format.
externalId String
External entity Id on the provider side.
externalZoneId String
The external zoneId of the resource.
id String
The provider-assigned unique ID for this managed resource.
links List<NetworkLink>
HATEOAS of the entity
organizationId String
The id of the organization this entity belongs to.
owner String
Email of the user that owns the entity.
selfLink String
Self link of this request.
updatedAt String
cidr string
IPv4 address range of the network in CIDR format.
externalId string
External entity Id on the provider side.
externalZoneId string
The external zoneId of the resource.
id string
The provider-assigned unique ID for this managed resource.
links NetworkLink[]
HATEOAS of the entity
organizationId string
The id of the organization this entity belongs to.
owner string
Email of the user that owns the entity.
selfLink string
Self link of this request.
updatedAt string
cidr str
IPv4 address range of the network in CIDR format.
external_id str
External entity Id on the provider side.
external_zone_id str
The external zoneId of the resource.
id str
The provider-assigned unique ID for this managed resource.
links Sequence[NetworkLink]
HATEOAS of the entity
organization_id str
The id of the organization this entity belongs to.
owner str
Email of the user that owns the entity.
self_link str
Self link of this request.
updated_at str
cidr String
IPv4 address range of the network in CIDR format.
externalId String
External entity Id on the provider side.
externalZoneId String
The external zoneId of the resource.
id String
The provider-assigned unique ID for this managed resource.
links List<Property Map>
HATEOAS of the entity
organizationId String
The id of the organization this entity belongs to.
owner String
Email of the user that owns the entity.
selfLink String
Self link of this request.
updatedAt String

Look up Existing Network Resource

Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        cidr: Optional[str] = None,
        constraints: Optional[Sequence[NetworkConstraintArgs]] = None,
        custom_properties: Optional[Mapping[str, str]] = None,
        deployment_id: Optional[str] = None,
        description: Optional[str] = None,
        external_id: Optional[str] = None,
        external_zone_id: Optional[str] = None,
        links: Optional[Sequence[NetworkLinkArgs]] = None,
        name: Optional[str] = None,
        network_id: Optional[str] = None,
        organization_id: Optional[str] = None,
        outbound_access: Optional[bool] = None,
        owner: Optional[str] = None,
        project_id: Optional[str] = None,
        self_link: Optional[str] = None,
        tags: Optional[Sequence[NetworkTagArgs]] = None,
        timeouts: Optional[NetworkTimeoutsArgs] = None,
        updated_at: Optional[str] = None) -> Network
func GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)
public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)
public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)
resources:  _:    type: vra:Network    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Cidr string
IPv4 address range of the network in CIDR format.
Constraints List<NetworkConstraint>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
CustomProperties Dictionary<string, string>
Additional properties that may be used to extend the base resource.
DeploymentId string
Deployment id that is associated with this resource.
Description string
A human-friendly description.
ExternalId string
External entity Id on the provider side.
ExternalZoneId string
The external zoneId of the resource.
Links List<NetworkLink>
HATEOAS of the entity
Name string
A human-friendly name used as an identifier in APIs that support this option.
NetworkId string
OrganizationId string
The id of the organization this entity belongs to.
OutboundAccess bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
Owner string
Email of the user that owns the entity.
ProjectId string
The id of the project this resource belongs to.
SelfLink string
Self link of this request.
Tags List<NetworkTag>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
Timeouts NetworkTimeouts
UpdatedAt string
Cidr string
IPv4 address range of the network in CIDR format.
Constraints []NetworkConstraintArgs
List of storage, network and extensibility constraints to be applied when provisioning through this project.
CustomProperties map[string]string
Additional properties that may be used to extend the base resource.
DeploymentId string
Deployment id that is associated with this resource.
Description string
A human-friendly description.
ExternalId string
External entity Id on the provider side.
ExternalZoneId string
The external zoneId of the resource.
Links []NetworkLinkArgs
HATEOAS of the entity
Name string
A human-friendly name used as an identifier in APIs that support this option.
NetworkId string
OrganizationId string
The id of the organization this entity belongs to.
OutboundAccess bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
Owner string
Email of the user that owns the entity.
ProjectId string
The id of the project this resource belongs to.
SelfLink string
Self link of this request.
Tags []NetworkTagArgs
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
Timeouts NetworkTimeoutsArgs
UpdatedAt string
cidr String
IPv4 address range of the network in CIDR format.
constraints List<NetworkConstraint>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties Map<String,String>
Additional properties that may be used to extend the base resource.
deploymentId String
Deployment id that is associated with this resource.
description String
A human-friendly description.
externalId String
External entity Id on the provider side.
externalZoneId String
The external zoneId of the resource.
links List<NetworkLink>
HATEOAS of the entity
name String
A human-friendly name used as an identifier in APIs that support this option.
networkId String
organizationId String
The id of the organization this entity belongs to.
outboundAccess Boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
owner String
Email of the user that owns the entity.
projectId String
The id of the project this resource belongs to.
selfLink String
Self link of this request.
tags List<NetworkTag>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeouts
updatedAt String
cidr string
IPv4 address range of the network in CIDR format.
constraints NetworkConstraint[]
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties {[key: string]: string}
Additional properties that may be used to extend the base resource.
deploymentId string
Deployment id that is associated with this resource.
description string
A human-friendly description.
externalId string
External entity Id on the provider side.
externalZoneId string
The external zoneId of the resource.
links NetworkLink[]
HATEOAS of the entity
name string
A human-friendly name used as an identifier in APIs that support this option.
networkId string
organizationId string
The id of the organization this entity belongs to.
outboundAccess boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
owner string
Email of the user that owns the entity.
projectId string
The id of the project this resource belongs to.
selfLink string
Self link of this request.
tags NetworkTag[]
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeouts
updatedAt string
cidr str
IPv4 address range of the network in CIDR format.
constraints Sequence[NetworkConstraintArgs]
List of storage, network and extensibility constraints to be applied when provisioning through this project.
custom_properties Mapping[str, str]
Additional properties that may be used to extend the base resource.
deployment_id str
Deployment id that is associated with this resource.
description str
A human-friendly description.
external_id str
External entity Id on the provider side.
external_zone_id str
The external zoneId of the resource.
links Sequence[NetworkLinkArgs]
HATEOAS of the entity
name str
A human-friendly name used as an identifier in APIs that support this option.
network_id str
organization_id str
The id of the organization this entity belongs to.
outbound_access bool
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
owner str
Email of the user that owns the entity.
project_id str
The id of the project this resource belongs to.
self_link str
Self link of this request.
tags Sequence[NetworkTagArgs]
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts NetworkTimeoutsArgs
updated_at str
cidr String
IPv4 address range of the network in CIDR format.
constraints List<Property Map>
List of storage, network and extensibility constraints to be applied when provisioning through this project.
customProperties Map<String>
Additional properties that may be used to extend the base resource.
deploymentId String
Deployment id that is associated with this resource.
description String
A human-friendly description.
externalId String
External entity Id on the provider side.
externalZoneId String
The external zoneId of the resource.
links List<Property Map>
HATEOAS of the entity
name String
A human-friendly name used as an identifier in APIs that support this option.
networkId String
organizationId String
The id of the organization this entity belongs to.
outboundAccess Boolean
Flag to indicate if the network needs to have outbound access or not. Default is true. This field will be ignored if there is proper input for networkType customProperty.
owner String
Email of the user that owns the entity.
projectId String
The id of the project this resource belongs to.
selfLink String
Self link of this request.
tags List<Property Map>
A set of tag keys and optional values that were set on this resource. example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
timeouts Property Map
updatedAt String

Supporting Types

NetworkConstraint
, NetworkConstraintArgs

Expression This property is required. string
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
Mandatory This property is required. bool
Indicates whether this constraint should be strictly enforced or not.
Expression This property is required. string
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
Mandatory This property is required. bool
Indicates whether this constraint should be strictly enforced or not.
expression This property is required. String
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
mandatory This property is required. Boolean
Indicates whether this constraint should be strictly enforced or not.
expression This property is required. string
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
mandatory This property is required. boolean
Indicates whether this constraint should be strictly enforced or not.
expression This property is required. str
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
mandatory This property is required. bool
Indicates whether this constraint should be strictly enforced or not.
expression This property is required. String
An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
mandatory This property is required. Boolean
Indicates whether this constraint should be strictly enforced or not.
Href This property is required. string
Hrefs This property is required. List<string>
Rel This property is required. string
Href This property is required. string
Hrefs This property is required. []string
Rel This property is required. string
href This property is required. String
hrefs This property is required. List<String>
rel This property is required. String
href This property is required. string
hrefs This property is required. string[]
rel This property is required. string
href This property is required. str
hrefs This property is required. Sequence[str]
rel This property is required. str
href This property is required. String
hrefs This property is required. List<String>
rel This property is required. String

NetworkTag
, NetworkTagArgs

Key This property is required. string
Value This property is required. string
Key This property is required. string
Value This property is required. string
key This property is required. String
value This property is required. String
key This property is required. string
value This property is required. string
key This property is required. str
value This property is required. str
key This property is required. String
value This property is required. String

NetworkTimeouts
, NetworkTimeoutsArgs

Create string
Delete string
Update string
Create string
Delete string
Update string
create String
delete String
update String
create string
delete string
update string
create str
delete str
update str
create String
delete String
update String

Package Details

Repository
vra vmware/terraform-provider-vra
License
Notes
This Pulumi package is based on the vra Terraform Provider.