avi.Availabilityzone
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Availabilityzone” sidebar_current: “docs-avi-resource-availabilityzone” description: |- Creates and manages Avi AvailabilityZone.
avi.Availabilityzone
The AvailabilityZone resource allows the creation and management of Avi AvailabilityZone
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Availabilityzone("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Availabilityzone("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewAvailabilityzone(ctx, "foo", &avi.AvailabilityzoneArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Availabilityzone("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Availabilityzone;
import com.pulumi.avi.AvailabilityzoneArgs;
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 foo = new Availabilityzone("foo", AvailabilityzoneArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Availabilityzone
properties:
tenantRef: /api/tenant/?name=admin
Create Availabilityzone Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Availabilityzone(name: string, args?: AvailabilityzoneArgs, opts?: CustomResourceOptions);
@overload
def Availabilityzone(resource_name: str,
args: Optional[AvailabilityzoneArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Availabilityzone(resource_name: str,
opts: Optional[ResourceOptions] = None,
availabilityzone_id: Optional[str] = None,
az_clusters: Optional[Sequence[AvailabilityzoneAzClusterArgs]] = None,
az_datastores: Optional[Sequence[AvailabilityzoneAzDatastoreArgs]] = None,
cloud_ref: Optional[str] = None,
configpb_attributes: Optional[Sequence[AvailabilityzoneConfigpbAttributeArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewAvailabilityzone(ctx *Context, name string, args *AvailabilityzoneArgs, opts ...ResourceOption) (*Availabilityzone, error)
public Availabilityzone(string name, AvailabilityzoneArgs? args = null, CustomResourceOptions? opts = null)
public Availabilityzone(String name, AvailabilityzoneArgs args)
public Availabilityzone(String name, AvailabilityzoneArgs args, CustomResourceOptions options)
type: avi:Availabilityzone
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 AvailabilityzoneArgs
- 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 AvailabilityzoneArgs
- 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 AvailabilityzoneArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AvailabilityzoneArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AvailabilityzoneArgs
- 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 availabilityzoneResource = new Avi.Availabilityzone("availabilityzoneResource", new()
{
AvailabilityzoneId = "string",
AzClusters = new[]
{
new Avi.Inputs.AvailabilityzoneAzClusterArgs
{
ClusterIds = new[]
{
"string",
},
VcenterRef = "string",
},
},
AzDatastores = new[]
{
new Avi.Inputs.AvailabilityzoneAzDatastoreArgs
{
DsIds = new[]
{
"string",
},
Include = "string",
},
},
CloudRef = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AvailabilityzoneConfigpbAttributeArgs
{
Version = "string",
},
},
Name = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewAvailabilityzone(ctx, "availabilityzoneResource", &avi.AvailabilityzoneArgs{
AvailabilityzoneId: pulumi.String("string"),
AzClusters: avi.AvailabilityzoneAzClusterArray{
&avi.AvailabilityzoneAzClusterArgs{
ClusterIds: pulumi.StringArray{
pulumi.String("string"),
},
VcenterRef: pulumi.String("string"),
},
},
AzDatastores: avi.AvailabilityzoneAzDatastoreArray{
&avi.AvailabilityzoneAzDatastoreArgs{
DsIds: pulumi.StringArray{
pulumi.String("string"),
},
Include: pulumi.String("string"),
},
},
CloudRef: pulumi.String("string"),
ConfigpbAttributes: avi.AvailabilityzoneConfigpbAttributeArray{
&avi.AvailabilityzoneConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var availabilityzoneResource = new Availabilityzone("availabilityzoneResource", AvailabilityzoneArgs.builder()
.availabilityzoneId("string")
.azClusters(AvailabilityzoneAzClusterArgs.builder()
.clusterIds("string")
.vcenterRef("string")
.build())
.azDatastores(AvailabilityzoneAzDatastoreArgs.builder()
.dsIds("string")
.include("string")
.build())
.cloudRef("string")
.configpbAttributes(AvailabilityzoneConfigpbAttributeArgs.builder()
.version("string")
.build())
.name("string")
.tenantRef("string")
.uuid("string")
.build());
availabilityzone_resource = avi.Availabilityzone("availabilityzoneResource",
availabilityzone_id="string",
az_clusters=[{
"cluster_ids": ["string"],
"vcenter_ref": "string",
}],
az_datastores=[{
"ds_ids": ["string"],
"include": "string",
}],
cloud_ref="string",
configpb_attributes=[{
"version": "string",
}],
name="string",
tenant_ref="string",
uuid="string")
const availabilityzoneResource = new avi.Availabilityzone("availabilityzoneResource", {
availabilityzoneId: "string",
azClusters: [{
clusterIds: ["string"],
vcenterRef: "string",
}],
azDatastores: [{
dsIds: ["string"],
include: "string",
}],
cloudRef: "string",
configpbAttributes: [{
version: "string",
}],
name: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Availabilityzone
properties:
availabilityzoneId: string
azClusters:
- clusterIds:
- string
vcenterRef: string
azDatastores:
- dsIds:
- string
include: string
cloudRef: string
configpbAttributes:
- version: string
name: string
tenantRef: string
uuid: string
Availabilityzone 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 Availabilityzone resource accepts the following input properties:
- Availabilityzone
Id string - Az
Clusters List<AvailabilityzoneAz Cluster> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Az
Datastores List<AvailabilityzoneAz Datastore> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<AvailabilityzoneConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Availabilityzone
Id string - Az
Clusters []AvailabilityzoneAz Cluster Args - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Az
Datastores []AvailabilityzoneAz Datastore Args - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []AvailabilityzoneConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id String - az
Clusters List<AvailabilityzoneAz Cluster> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores List<AvailabilityzoneAz Datastore> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref String - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<AvailabilityzoneConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id string - az
Clusters AvailabilityzoneAz Cluster[] - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores AvailabilityzoneAz Datastore[] - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes AvailabilityzoneConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone_
id str - az_
clusters Sequence[AvailabilityzoneAz Cluster Args] - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az_
datastores Sequence[AvailabilityzoneAz Datastore Args] - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud_
ref str - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[AvailabilityzoneConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id String - az
Clusters List<Property Map> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores List<Property Map> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref String - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Availabilityzone resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Availabilityzone Resource
Get an existing Availabilityzone 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?: AvailabilityzoneState, opts?: CustomResourceOptions): Availabilityzone
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availabilityzone_id: Optional[str] = None,
az_clusters: Optional[Sequence[AvailabilityzoneAzClusterArgs]] = None,
az_datastores: Optional[Sequence[AvailabilityzoneAzDatastoreArgs]] = None,
cloud_ref: Optional[str] = None,
configpb_attributes: Optional[Sequence[AvailabilityzoneConfigpbAttributeArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Availabilityzone
func GetAvailabilityzone(ctx *Context, name string, id IDInput, state *AvailabilityzoneState, opts ...ResourceOption) (*Availabilityzone, error)
public static Availabilityzone Get(string name, Input<string> id, AvailabilityzoneState? state, CustomResourceOptions? opts = null)
public static Availabilityzone get(String name, Output<String> id, AvailabilityzoneState state, CustomResourceOptions options)
resources: _: type: avi:Availabilityzone 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.
- Availabilityzone
Id string - Az
Clusters List<AvailabilityzoneAz Cluster> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Az
Datastores List<AvailabilityzoneAz Datastore> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<AvailabilityzoneConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Availabilityzone
Id string - Az
Clusters []AvailabilityzoneAz Cluster Args - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Az
Datastores []AvailabilityzoneAz Datastore Args - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []AvailabilityzoneConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id String - az
Clusters List<AvailabilityzoneAz Cluster> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores List<AvailabilityzoneAz Datastore> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref String - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<AvailabilityzoneConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id string - az
Clusters AvailabilityzoneAz Cluster[] - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores AvailabilityzoneAz Datastore[] - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref string - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes AvailabilityzoneConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone_
id str - az_
clusters Sequence[AvailabilityzoneAz Cluster Args] - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az_
datastores Sequence[AvailabilityzoneAz Datastore Args] - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud_
ref str - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[AvailabilityzoneConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- availabilityzone
Id String - az
Clusters List<Property Map> - Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- az
Datastores List<Property Map> - Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- cloud
Ref String - Availability zone belongs to cloud. It is a reference to an object of type cloud. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Availabilty zone where vcenter list belongs to. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - Availabilityzone belongs to tenant. It is a reference to an object of type tenant. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Availability zone config uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
AvailabilityzoneAzCluster, AvailabilityzoneAzClusterArgs
- Cluster
Ids List<string> - Vcenter
Ref string
- Cluster
Ids []string - Vcenter
Ref string
- cluster
Ids List<String> - vcenter
Ref String
- cluster
Ids string[] - vcenter
Ref string
- cluster_
ids Sequence[str] - vcenter_
ref str
- cluster
Ids List<String> - vcenter
Ref String
AvailabilityzoneAzDatastore, AvailabilityzoneAzDatastoreArgs
AvailabilityzoneConfigpbAttribute, AvailabilityzoneConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.