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",
    }],
});
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",
    }])
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
	})
}
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",
            },
        },
    });
});
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());
    }
}
resources:
  myNetwork:
    type: vra:Network
    properties:
      constraints:
        - expression: pci
          mandatory: true
      outboundAccess: false
      tags:
        - key: foo
          value: bar
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 string
- The unique name of the resource.
- args NetworkArgs
- 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 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 string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
    },
});
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"),
	},
})
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());
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",
    })
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",
    },
});
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
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 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.
- 
List<NetworkTag> 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
NetworkTimeouts 
- ProjectId string
- The id of the project this resource belongs to.
- Constraints
[]NetworkConstraint Args 
- 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.
- 
[]NetworkTag Args 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
NetworkTimeouts Args 
- projectId 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.
- 
List<NetworkTag> 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
NetworkTimeouts 
- projectId 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.
- 
NetworkTag[] 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
NetworkTimeouts 
- project_id str
- The id of the project this resource belongs to.
- constraints
Sequence[NetworkConstraint Args] 
- 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.
- 
Sequence[NetworkTag Args] 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
NetworkTimeouts Args 
- projectId 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.
- 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.
- ExternalZone stringId 
- 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.
- ExternalZone stringId 
- 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.
- externalZone StringId 
- 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.
- externalZone stringId 
- 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_ strid 
- 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.
- externalZone StringId 
- 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) -> Networkfunc 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
- 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.
- 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.
- ExternalZone stringId 
- 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.
- 
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 Args 
- 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.
- ExternalZone stringId 
- The external zoneId of the resource.
- Links
[]NetworkLink Args 
- 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.
- 
[]NetworkTag Args 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
NetworkTimeouts Args 
- 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.
- externalZone StringId 
- 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.
- 
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.
- externalZone stringId 
- 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.
- 
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[NetworkConstraint Args] 
- 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_ strid 
- The external zoneId of the resource.
- links
Sequence[NetworkLink Args] 
- 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.
- 
Sequence[NetworkTag Args] 
- A set of tag keys and optional values that were set on this resource.
example: [ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
NetworkTimeouts Args 
- 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.
- externalZone StringId 
- 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.
- 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 string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- Mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- Expression string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- Mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- expression String
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory Boolean
- Indicates whether this constraint should be strictly enforced or not.
- expression string
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory boolean
- Indicates whether this constraint should be strictly enforced or not.
- expression str
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory bool
- Indicates whether this constraint should be strictly enforced or not.
- expression String
- An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags.
- mandatory Boolean
- Indicates whether this constraint should be strictly enforced or not.
NetworkLink, NetworkLinkArgs    
NetworkTag, NetworkTagArgs    
NetworkTimeouts, NetworkTimeoutsArgs    
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the vraTerraform Provider.