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:
- Project
Id string - The id of the project this resource belongs to.
- Constraints
List<Network
Constraint> - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- Custom
Properties Dictionary<string, string> - Additional properties that may be used to extend the base resource.
- Deployment
Id 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.
- Network
Id string - 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.
- List<Network
Tag> - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
Network
Timeouts
- Project
Id string - The id of the project this resource belongs to.
- Constraints
[]Network
Constraint Args - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- Custom
Properties map[string]string - Additional properties that may be used to extend the base resource.
- Deployment
Id 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.
- Network
Id string - 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.
- []Network
Tag Args - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
Network
Timeouts Args
- project
Id String - The id of the project this resource belongs to.
- constraints
List<Network
Constraint> - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- custom
Properties Map<String,String> - Additional properties that may be used to extend the base resource.
- deployment
Id 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.
- network
Id String - outbound
Access 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<Network
Tag> - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts
- project
Id string - The id of the project this resource belongs to.
- constraints
Network
Constraint[] - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- custom
Properties {[key: string]: string} - Additional properties that may be used to extend the base resource.
- deployment
Id 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.
- network
Id string - outbound
Access 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.
- Network
Tag[] - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts
- project_
id str - The id of the project this resource belongs to.
- constraints
Sequence[Network
Constraint 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[Network
Tag Args] - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts Args
- project
Id 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.
- custom
Properties Map<String> - Additional properties that may be used to extend the base resource.
- deployment
Id 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.
- network
Id String - outbound
Access 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.
- External
Id string - External entity Id on the provider side.
- External
Zone stringId - The external zoneId of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Network
Link> - HATEOAS of the entity
- Organization
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Self
Link string - Self link of this request.
- Updated
At string
- Cidr string
- IPv4 address range of the network in CIDR format.
- External
Id string - External entity Id on the provider side.
- External
Zone stringId - The external zoneId of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Network
Link - HATEOAS of the entity
- Organization
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Self
Link string - Self link of this request.
- Updated
At string
- cidr String
- IPv4 address range of the network in CIDR format.
- external
Id String - External entity Id on the provider side.
- external
Zone StringId - The external zoneId of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Network
Link> - HATEOAS of the entity
- organization
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- self
Link String - Self link of this request.
- updated
At String
- cidr string
- IPv4 address range of the network in CIDR format.
- external
Id string - External entity Id on the provider side.
- external
Zone stringId - The external zoneId of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Network
Link[] - HATEOAS of the entity
- organization
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- self
Link string - Self link of this request.
- updated
At 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[Network
Link] - 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.
- external
Id String - External entity Id on the provider side.
- external
Zone 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
- organization
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- self
Link String - Self link of this request.
- updated
At 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
- 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<Network
Constraint> - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- Custom
Properties Dictionary<string, string> - Additional properties that may be used to extend the base resource.
- Deployment
Id string - Deployment id that is associated with this resource.
- Description string
- A human-friendly description.
- External
Id string - External entity Id on the provider side.
- External
Zone stringId - The external zoneId of the resource.
- Links
List<Network
Link> - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Network
Id string - Organization
Id string - 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 string
- Email of the user that owns the entity.
- Project
Id string - The id of the project this resource belongs to.
- Self
Link string - Self link of this request.
- List<Network
Tag> - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
Network
Timeouts - Updated
At string
- Cidr string
- IPv4 address range of the network in CIDR format.
- Constraints
[]Network
Constraint Args - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- Custom
Properties map[string]string - Additional properties that may be used to extend the base resource.
- Deployment
Id string - Deployment id that is associated with this resource.
- Description string
- A human-friendly description.
- External
Id string - External entity Id on the provider side.
- External
Zone stringId - The external zoneId of the resource.
- Links
[]Network
Link Args - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Network
Id string - Organization
Id string - 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 string
- Email of the user that owns the entity.
- Project
Id string - The id of the project this resource belongs to.
- Self
Link string - Self link of this request.
- []Network
Tag Args - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- Timeouts
Network
Timeouts Args - Updated
At string
- cidr String
- IPv4 address range of the network in CIDR format.
- constraints
List<Network
Constraint> - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- custom
Properties Map<String,String> - Additional properties that may be used to extend the base resource.
- deployment
Id String - Deployment id that is associated with this resource.
- description String
- A human-friendly description.
- external
Id String - External entity Id on the provider side.
- external
Zone StringId - The external zoneId of the resource.
- links
List<Network
Link> - HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- network
Id String - organization
Id String - The id of the organization this entity belongs to.
- outbound
Access 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.
- project
Id String - The id of the project this resource belongs to.
- self
Link String - Self link of this request.
- List<Network
Tag> - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts - updated
At String
- cidr string
- IPv4 address range of the network in CIDR format.
- constraints
Network
Constraint[] - List of storage, network and extensibility constraints to be applied when provisioning through this project.
- custom
Properties {[key: string]: string} - Additional properties that may be used to extend the base resource.
- deployment
Id string - Deployment id that is associated with this resource.
- description string
- A human-friendly description.
- external
Id string - External entity Id on the provider side.
- external
Zone stringId - The external zoneId of the resource.
- links
Network
Link[] - HATEOAS of the entity
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- network
Id string - organization
Id string - The id of the organization this entity belongs to.
- outbound
Access 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.
- project
Id string - The id of the project this resource belongs to.
- self
Link string - Self link of this request.
- Network
Tag[] - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts - updated
At string
- cidr str
- IPv4 address range of the network in CIDR format.
- constraints
Sequence[Network
Constraint 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[Network
Link 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[Network
Tag Args] - A set of tag keys and optional values that were set on this resource.
example:
[ { "key" : "ownedBy", "value": "Rainpole" } ]
- timeouts
Network
Timeouts 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.
- custom
Properties Map<String> - Additional properties that may be used to extend the base resource.
- deployment
Id String - Deployment id that is associated with this resource.
- description String
- A human-friendly description.
- external
Id String - External entity Id on the provider side.
- external
Zone 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.
- network
Id String - organization
Id String - The id of the organization this entity belongs to.
- outbound
Access 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.
- project
Id String - The id of the project this resource belongs to.
- self
Link 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
- updated
At 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
vra
Terraform Provider.