vra.FabricNetworkVsphere
Explore with Pulumi AI
Updates a VMware vRealize Automation fabric_network_vsphere resource.
Example Usage
S
You cannot create a vSphere fabric network resource, however you can import using the command specified in the import section below. Once a resource is imported, you can update it as shown below:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const simple = new vra.FabricNetworkVsphere("simple", {
cidr: _var.cidr,
defaultGateway: _var.gateway,
domain: _var.domain,
tags: [{
key: "foo",
value: "bar",
}],
});
import pulumi
import pulumi_vra as vra
simple = vra.FabricNetworkVsphere("simple",
cidr=var["cidr"],
default_gateway=var["gateway"],
domain=var["domain"],
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.NewFabricNetworkVsphere(ctx, "simple", &vra.FabricNetworkVsphereArgs{
Cidr: pulumi.Any(_var.Cidr),
DefaultGateway: pulumi.Any(_var.Gateway),
Domain: pulumi.Any(_var.Domain),
Tags: vra.FabricNetworkVsphereTagArray{
&vra.FabricNetworkVsphereTagArgs{
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 simple = new Vra.FabricNetworkVsphere("simple", new()
{
Cidr = @var.Cidr,
DefaultGateway = @var.Gateway,
Domain = @var.Domain,
Tags = new[]
{
new Vra.Inputs.FabricNetworkVsphereTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.FabricNetworkVsphere;
import com.pulumi.vra.FabricNetworkVsphereArgs;
import com.pulumi.vra.inputs.FabricNetworkVsphereTagArgs;
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 simple = new FabricNetworkVsphere("simple", FabricNetworkVsphereArgs.builder()
.cidr(var_.cidr())
.defaultGateway(var_.gateway())
.domain(var_.domain())
.tags(FabricNetworkVsphereTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
simple:
type: vra:FabricNetworkVsphere
properties:
cidr: ${var.cidr}
defaultGateway: ${var.gateway}
domain: ${var.domain}
tags:
- key: foo
value: bar
Create FabricNetworkVsphere Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FabricNetworkVsphere(name: string, args?: FabricNetworkVsphereArgs, opts?: CustomResourceOptions);
@overload
def FabricNetworkVsphere(resource_name: str,
args: Optional[FabricNetworkVsphereArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def FabricNetworkVsphere(resource_name: str,
opts: Optional[ResourceOptions] = None,
cidr: Optional[str] = None,
default_gateway: Optional[str] = None,
default_ipv6_gateway: Optional[str] = None,
dns_search_domains: Optional[Sequence[str]] = None,
dns_server_addresses: Optional[Sequence[str]] = None,
domain: Optional[str] = None,
fabric_network_vsphere_id: Optional[str] = None,
ipv6_cidr: Optional[str] = None,
is_default: Optional[bool] = None,
is_public: Optional[bool] = None,
tags: Optional[Sequence[FabricNetworkVsphereTagArgs]] = None)
func NewFabricNetworkVsphere(ctx *Context, name string, args *FabricNetworkVsphereArgs, opts ...ResourceOption) (*FabricNetworkVsphere, error)
public FabricNetworkVsphere(string name, FabricNetworkVsphereArgs? args = null, CustomResourceOptions? opts = null)
public FabricNetworkVsphere(String name, FabricNetworkVsphereArgs args)
public FabricNetworkVsphere(String name, FabricNetworkVsphereArgs args, CustomResourceOptions options)
type: vra:FabricNetworkVsphere
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 FabricNetworkVsphereArgs
- 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 FabricNetworkVsphereArgs
- 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 FabricNetworkVsphereArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FabricNetworkVsphereArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FabricNetworkVsphereArgs
- 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 fabricNetworkVsphereResource = new Vra.FabricNetworkVsphere("fabricNetworkVsphereResource", new()
{
Cidr = "string",
DefaultGateway = "string",
DefaultIpv6Gateway = "string",
DnsSearchDomains = new[]
{
"string",
},
DnsServerAddresses = new[]
{
"string",
},
Domain = "string",
FabricNetworkVsphereId = "string",
Ipv6Cidr = "string",
IsDefault = false,
IsPublic = false,
Tags = new[]
{
new Vra.Inputs.FabricNetworkVsphereTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vra.NewFabricNetworkVsphere(ctx, "fabricNetworkVsphereResource", &vra.FabricNetworkVsphereArgs{
Cidr: pulumi.String("string"),
DefaultGateway: pulumi.String("string"),
DefaultIpv6Gateway: pulumi.String("string"),
DnsSearchDomains: pulumi.StringArray{
pulumi.String("string"),
},
DnsServerAddresses: pulumi.StringArray{
pulumi.String("string"),
},
Domain: pulumi.String("string"),
FabricNetworkVsphereId: pulumi.String("string"),
Ipv6Cidr: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
IsPublic: pulumi.Bool(false),
Tags: vra.FabricNetworkVsphereTagArray{
&vra.FabricNetworkVsphereTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var fabricNetworkVsphereResource = new FabricNetworkVsphere("fabricNetworkVsphereResource", FabricNetworkVsphereArgs.builder()
.cidr("string")
.defaultGateway("string")
.defaultIpv6Gateway("string")
.dnsSearchDomains("string")
.dnsServerAddresses("string")
.domain("string")
.fabricNetworkVsphereId("string")
.ipv6Cidr("string")
.isDefault(false)
.isPublic(false)
.tags(FabricNetworkVsphereTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
fabric_network_vsphere_resource = vra.FabricNetworkVsphere("fabricNetworkVsphereResource",
cidr="string",
default_gateway="string",
default_ipv6_gateway="string",
dns_search_domains=["string"],
dns_server_addresses=["string"],
domain="string",
fabric_network_vsphere_id="string",
ipv6_cidr="string",
is_default=False,
is_public=False,
tags=[{
"key": "string",
"value": "string",
}])
const fabricNetworkVsphereResource = new vra.FabricNetworkVsphere("fabricNetworkVsphereResource", {
cidr: "string",
defaultGateway: "string",
defaultIpv6Gateway: "string",
dnsSearchDomains: ["string"],
dnsServerAddresses: ["string"],
domain: "string",
fabricNetworkVsphereId: "string",
ipv6Cidr: "string",
isDefault: false,
isPublic: false,
tags: [{
key: "string",
value: "string",
}],
});
type: vra:FabricNetworkVsphere
properties:
cidr: string
defaultGateway: string
defaultIpv6Gateway: string
dnsSearchDomains:
- string
dnsServerAddresses:
- string
domain: string
fabricNetworkVsphereId: string
ipv6Cidr: string
isDefault: false
isPublic: false
tags:
- key: string
value: string
FabricNetworkVsphere 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 FabricNetworkVsphere resource accepts the following input properties:
- Cidr string
- Network CIDR to be used.
- Default
Gateway string - IPv4 default gateway to be used.
- Default
Ipv6Gateway string - IPv6 default gateway to be used.
- Dns
Search List<string>Domains - List of dns search domains for the vSphere network.
- Dns
Server List<string>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- Domain string
- Domain for the vSphere network.
- Fabric
Network stringVsphere Id - ID of the vRA fabric network.
- Ipv6Cidr string
- Network IPv6 CIDR to be used.
- Is
Default bool - Indicates whether this is the default subnet for the zone.
- Is
Public bool - Indicates whether the sub-network supports public IP assignment.
- List<Fabric
Network Vsphere Tag> - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Cidr string
- Network CIDR to be used.
- Default
Gateway string - IPv4 default gateway to be used.
- Default
Ipv6Gateway string - IPv6 default gateway to be used.
- Dns
Search []stringDomains - List of dns search domains for the vSphere network.
- Dns
Server []stringAddresses - A human-friendly name used as an identifier in APIs that support this option.
- Domain string
- Domain for the vSphere network.
- Fabric
Network stringVsphere Id - ID of the vRA fabric network.
- Ipv6Cidr string
- Network IPv6 CIDR to be used.
- Is
Default bool - Indicates whether this is the default subnet for the zone.
- Is
Public bool - Indicates whether the sub-network supports public IP assignment.
- []Fabric
Network Vsphere Tag Args - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- cidr String
- Network CIDR to be used.
- default
Gateway String - IPv4 default gateway to be used.
- default
Ipv6Gateway String - IPv6 default gateway to be used.
- dns
Search List<String>Domains - List of dns search domains for the vSphere network.
- dns
Server List<String>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain String
- Domain for the vSphere network.
- fabric
Network StringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr String
- Network IPv6 CIDR to be used.
- is
Default Boolean - Indicates whether this is the default subnet for the zone.
- is
Public Boolean - Indicates whether the sub-network supports public IP assignment.
- List<Fabric
Network Vsphere Tag> - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- cidr string
- Network CIDR to be used.
- default
Gateway string - IPv4 default gateway to be used.
- default
Ipv6Gateway string - IPv6 default gateway to be used.
- dns
Search string[]Domains - List of dns search domains for the vSphere network.
- dns
Server string[]Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain string
- Domain for the vSphere network.
- fabric
Network stringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr string
- Network IPv6 CIDR to be used.
- is
Default boolean - Indicates whether this is the default subnet for the zone.
- is
Public boolean - Indicates whether the sub-network supports public IP assignment.
- Fabric
Network Vsphere Tag[] - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- cidr str
- Network CIDR to be used.
- default_
gateway str - IPv4 default gateway to be used.
- default_
ipv6_ strgateway - IPv6 default gateway to be used.
- dns_
search_ Sequence[str]domains - List of dns search domains for the vSphere network.
- dns_
server_ Sequence[str]addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain str
- Domain for the vSphere network.
- fabric_
network_ strvsphere_ id - ID of the vRA fabric network.
- ipv6_
cidr str - Network IPv6 CIDR to be used.
- is_
default bool - Indicates whether this is the default subnet for the zone.
- is_
public bool - Indicates whether the sub-network supports public IP assignment.
- Sequence[Fabric
Network Vsphere Tag Args] - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- cidr String
- Network CIDR to be used.
- default
Gateway String - IPv4 default gateway to be used.
- default
Ipv6Gateway String - IPv6 default gateway to be used.
- dns
Search List<String>Domains - List of dns search domains for the vSphere network.
- dns
Server List<String>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain String
- Domain for the vSphere network.
- fabric
Network StringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr String
- Network IPv6 CIDR to be used.
- is
Default Boolean - Indicates whether this is the default subnet for the zone.
- is
Public Boolean - Indicates whether the sub-network supports public IP assignment.
- List<Property Map>
- Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
Outputs
All input properties are implicitly available as output properties. Additionally, the FabricNetworkVsphere resource produces the following output properties:
- Cloud
Account List<string>Ids - Set of ids of the cloud accounts this entity belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Custom
Properties Dictionary<string, string> - External
Id string - External entity Id on the provider side.
- External
Region stringId - The id of the region for which this network is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Fabric
Network Vsphere Link> - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - Organization
Id string - ID of organization that entity belongs to.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Cloud
Account []stringIds - Set of ids of the cloud accounts this entity belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Custom
Properties map[string]string - External
Id string - External entity Id on the provider side.
- External
Region stringId - The id of the region for which this network is defined.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Fabric
Network Vsphere Link - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - Organization
Id string - ID of organization that entity belongs to.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account List<String>Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties Map<String,String> - external
Id String - External entity Id on the provider side.
- external
Region StringId - The id of the region for which this network is defined.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Fabric
Network Vsphere Link> - HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id String - organization
Id String - ID of organization that entity belongs to.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account string[]Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties {[key: string]: string} - external
Id string - External entity Id on the provider side.
- external
Region stringId - The id of the region for which this network is defined.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Fabric
Network Vsphere Link[] - HATEOAS of the entity
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id string - organization
Id string - ID of organization that entity belongs to.
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud_
account_ Sequence[str]ids - Set of ids of the cloud accounts this entity belongs to.
- created_
at str - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom_
properties Mapping[str, str] - external_
id str - External entity Id on the provider side.
- external_
region_ strid - The id of the region for which this network is defined.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Fabric
Network Vsphere Link] - HATEOAS of the entity
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- org_
id str - organization_
id str - ID of organization that entity belongs to.
- updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cloud
Account List<String>Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties Map<String> - external
Id String - External entity Id on the provider side.
- external
Region StringId - The id of the region for which this network is defined.
- id String
- The provider-assigned unique ID for this managed 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.
- org
Id String - organization
Id String - ID of organization that entity belongs to.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Look up Existing FabricNetworkVsphere Resource
Get an existing FabricNetworkVsphere 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?: FabricNetworkVsphereState, opts?: CustomResourceOptions): FabricNetworkVsphere
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cidr: Optional[str] = None,
cloud_account_ids: Optional[Sequence[str]] = None,
created_at: Optional[str] = None,
custom_properties: Optional[Mapping[str, str]] = None,
default_gateway: Optional[str] = None,
default_ipv6_gateway: Optional[str] = None,
dns_search_domains: Optional[Sequence[str]] = None,
dns_server_addresses: Optional[Sequence[str]] = None,
domain: Optional[str] = None,
external_id: Optional[str] = None,
external_region_id: Optional[str] = None,
fabric_network_vsphere_id: Optional[str] = None,
ipv6_cidr: Optional[str] = None,
is_default: Optional[bool] = None,
is_public: Optional[bool] = None,
links: Optional[Sequence[FabricNetworkVsphereLinkArgs]] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
organization_id: Optional[str] = None,
tags: Optional[Sequence[FabricNetworkVsphereTagArgs]] = None,
updated_at: Optional[str] = None) -> FabricNetworkVsphere
func GetFabricNetworkVsphere(ctx *Context, name string, id IDInput, state *FabricNetworkVsphereState, opts ...ResourceOption) (*FabricNetworkVsphere, error)
public static FabricNetworkVsphere Get(string name, Input<string> id, FabricNetworkVsphereState? state, CustomResourceOptions? opts = null)
public static FabricNetworkVsphere get(String name, Output<String> id, FabricNetworkVsphereState state, CustomResourceOptions options)
resources: _: type: vra:FabricNetworkVsphere 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
- Network CIDR to be used.
- Cloud
Account List<string>Ids - Set of ids of the cloud accounts this entity belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Custom
Properties Dictionary<string, string> - Default
Gateway string - IPv4 default gateway to be used.
- Default
Ipv6Gateway string - IPv6 default gateway to be used.
- Dns
Search List<string>Domains - List of dns search domains for the vSphere network.
- Dns
Server List<string>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- Domain string
- Domain for the vSphere network.
- External
Id string - External entity Id on the provider side.
- External
Region stringId - The id of the region for which this network is defined.
- Fabric
Network stringVsphere Id - ID of the vRA fabric network.
- Ipv6Cidr string
- Network IPv6 CIDR to be used.
- Is
Default bool - Indicates whether this is the default subnet for the zone.
- Is
Public bool - Indicates whether the sub-network supports public IP assignment.
- Links
List<Fabric
Network Vsphere Link> - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - Organization
Id string - ID of organization that entity belongs to.
- List<Fabric
Network Vsphere Tag> - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Cidr string
- Network CIDR to be used.
- Cloud
Account []stringIds - Set of ids of the cloud accounts this entity belongs to.
- Created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- Custom
Properties map[string]string - Default
Gateway string - IPv4 default gateway to be used.
- Default
Ipv6Gateway string - IPv6 default gateway to be used.
- Dns
Search []stringDomains - List of dns search domains for the vSphere network.
- Dns
Server []stringAddresses - A human-friendly name used as an identifier in APIs that support this option.
- Domain string
- Domain for the vSphere network.
- External
Id string - External entity Id on the provider side.
- External
Region stringId - The id of the region for which this network is defined.
- Fabric
Network stringVsphere Id - ID of the vRA fabric network.
- Ipv6Cidr string
- Network IPv6 CIDR to be used.
- Is
Default bool - Indicates whether this is the default subnet for the zone.
- Is
Public bool - Indicates whether the sub-network supports public IP assignment.
- Links
[]Fabric
Network Vsphere Link Args - HATEOAS of the entity
- Name string
- A human-friendly name used as an identifier in APIs that support this option.
- Org
Id string - Organization
Id string - ID of organization that entity belongs to.
- []Fabric
Network Vsphere Tag Args - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cidr String
- Network CIDR to be used.
- cloud
Account List<String>Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties Map<String,String> - default
Gateway String - IPv4 default gateway to be used.
- default
Ipv6Gateway String - IPv6 default gateway to be used.
- dns
Search List<String>Domains - List of dns search domains for the vSphere network.
- dns
Server List<String>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain String
- Domain for the vSphere network.
- external
Id String - External entity Id on the provider side.
- external
Region StringId - The id of the region for which this network is defined.
- fabric
Network StringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr String
- Network IPv6 CIDR to be used.
- is
Default Boolean - Indicates whether this is the default subnet for the zone.
- is
Public Boolean - Indicates whether the sub-network supports public IP assignment.
- links
List<Fabric
Network Vsphere Link> - HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id String - organization
Id String - ID of organization that entity belongs to.
- List<Fabric
Network Vsphere Tag> - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cidr string
- Network CIDR to be used.
- cloud
Account string[]Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At string - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties {[key: string]: string} - default
Gateway string - IPv4 default gateway to be used.
- default
Ipv6Gateway string - IPv6 default gateway to be used.
- dns
Search string[]Domains - List of dns search domains for the vSphere network.
- dns
Server string[]Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain string
- Domain for the vSphere network.
- external
Id string - External entity Id on the provider side.
- external
Region stringId - The id of the region for which this network is defined.
- fabric
Network stringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr string
- Network IPv6 CIDR to be used.
- is
Default boolean - Indicates whether this is the default subnet for the zone.
- is
Public boolean - Indicates whether the sub-network supports public IP assignment.
- links
Fabric
Network Vsphere Link[] - HATEOAS of the entity
- name string
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id string - organization
Id string - ID of organization that entity belongs to.
- Fabric
Network Vsphere Tag[] - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cidr str
- Network CIDR to be used.
- cloud_
account_ Sequence[str]ids - Set of ids of the cloud accounts this entity belongs to.
- created_
at str - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom_
properties Mapping[str, str] - default_
gateway str - IPv4 default gateway to be used.
- default_
ipv6_ strgateway - IPv6 default gateway to be used.
- dns_
search_ Sequence[str]domains - List of dns search domains for the vSphere network.
- dns_
server_ Sequence[str]addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain str
- Domain for the vSphere network.
- external_
id str - External entity Id on the provider side.
- external_
region_ strid - The id of the region for which this network is defined.
- fabric_
network_ strvsphere_ id - ID of the vRA fabric network.
- ipv6_
cidr str - Network IPv6 CIDR to be used.
- is_
default bool - Indicates whether this is the default subnet for the zone.
- is_
public bool - Indicates whether the sub-network supports public IP assignment.
- links
Sequence[Fabric
Network Vsphere Link Args] - HATEOAS of the entity
- name str
- A human-friendly name used as an identifier in APIs that support this option.
- org_
id str - organization_
id str - ID of organization that entity belongs to.
- Sequence[Fabric
Network Vsphere Tag Args] - Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- cidr String
- Network CIDR to be used.
- cloud
Account List<String>Ids - Set of ids of the cloud accounts this entity belongs to.
- created
At String - Date when the entity was created. The date is in ISO 6801 and UTC.
- custom
Properties Map<String> - default
Gateway String - IPv4 default gateway to be used.
- default
Ipv6Gateway String - IPv6 default gateway to be used.
- dns
Search List<String>Domains - List of dns search domains for the vSphere network.
- dns
Server List<String>Addresses - A human-friendly name used as an identifier in APIs that support this option.
- domain String
- Domain for the vSphere network.
- external
Id String - External entity Id on the provider side.
- external
Region StringId - The id of the region for which this network is defined.
- fabric
Network StringVsphere Id - ID of the vRA fabric network.
- ipv6Cidr String
- Network IPv6 CIDR to be used.
- is
Default Boolean - Indicates whether this is the default subnet for the zone.
- is
Public Boolean - Indicates whether the sub-network supports public IP assignment.
- links List<Property Map>
- HATEOAS of the entity
- name String
- A human-friendly name used as an identifier in APIs that support this option.
- org
Id String - organization
Id String - ID of organization that entity belongs to.
- List<Property Map>
- Set of tag keys and values to apply to the resource.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Supporting Types
FabricNetworkVsphereLink, FabricNetworkVsphereLinkArgs
FabricNetworkVsphereTag, FabricNetworkVsphereTagArgs
Import
To import the vSphere fabric network resource, use the ID as in the following example:
$ pulumi import vra:index/fabricNetworkVsphere:FabricNetworkVsphere new_fabric_network_vsphere 05956583-6488-4e7d-84c9-92a7b7219a15`
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.