1. Packages
  2. Avi Provider
  3. API Docs
  4. Availabilityzone
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Availabilityzone

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    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:

    AvailabilityzoneId string
    AzClusters List<AvailabilityzoneAzCluster>
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    AzDatastores List<AvailabilityzoneAzDatastore>
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CloudRef 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.
    ConfigpbAttributes List<AvailabilityzoneConfigpbAttribute>
    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.
    TenantRef 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.
    AvailabilityzoneId string
    AzClusters []AvailabilityzoneAzClusterArgs
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    AzDatastores []AvailabilityzoneAzDatastoreArgs
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CloudRef 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.
    ConfigpbAttributes []AvailabilityzoneConfigpbAttributeArgs
    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.
    TenantRef 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.
    availabilityzoneId String
    azClusters List<AvailabilityzoneAzCluster>
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    azDatastores List<AvailabilityzoneAzDatastore>
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef 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.
    configpbAttributes List<AvailabilityzoneConfigpbAttribute>
    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.
    tenantRef 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.
    availabilityzoneId string
    azClusters AvailabilityzoneAzCluster[]
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    azDatastores AvailabilityzoneAzDatastore[]
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef 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.
    configpbAttributes AvailabilityzoneConfigpbAttribute[]
    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.
    tenantRef 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[AvailabilityzoneAzClusterArgs]
    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[AvailabilityzoneAzDatastoreArgs]
    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[AvailabilityzoneConfigpbAttributeArgs]
    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.
    availabilityzoneId String
    azClusters 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.
    azDatastores 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.
    cloudRef 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.
    configpbAttributes 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.
    tenantRef 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.
    The following state arguments are supported:
    AvailabilityzoneId string
    AzClusters List<AvailabilityzoneAzCluster>
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    AzDatastores List<AvailabilityzoneAzDatastore>
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CloudRef 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.
    ConfigpbAttributes List<AvailabilityzoneConfigpbAttribute>
    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.
    TenantRef 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.
    AvailabilityzoneId string
    AzClusters []AvailabilityzoneAzClusterArgs
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    AzDatastores []AvailabilityzoneAzDatastoreArgs
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CloudRef 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.
    ConfigpbAttributes []AvailabilityzoneConfigpbAttributeArgs
    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.
    TenantRef 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.
    availabilityzoneId String
    azClusters List<AvailabilityzoneAzCluster>
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    azDatastores List<AvailabilityzoneAzDatastore>
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef 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.
    configpbAttributes List<AvailabilityzoneConfigpbAttribute>
    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.
    tenantRef 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.
    availabilityzoneId string
    azClusters AvailabilityzoneAzCluster[]
    Group of clusters belongs to the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    azDatastores AvailabilityzoneAzDatastore[]
    Datastores associated with the az. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef 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.
    configpbAttributes AvailabilityzoneConfigpbAttribute[]
    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.
    tenantRef 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[AvailabilityzoneAzClusterArgs]
    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[AvailabilityzoneAzDatastoreArgs]
    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[AvailabilityzoneConfigpbAttributeArgs]
    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.
    availabilityzoneId String
    azClusters 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.
    azDatastores 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.
    cloudRef 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.
    configpbAttributes 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.
    tenantRef 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

    ClusterIds List<string>
    VcenterRef string
    ClusterIds []string
    VcenterRef string
    clusterIds List<String>
    vcenterRef String
    clusterIds string[]
    vcenterRef string
    cluster_ids Sequence[str]
    vcenter_ref str
    clusterIds List<String>
    vcenterRef String

    AvailabilityzoneAzDatastore, AvailabilityzoneAzDatastoreArgs

    DsIds List<string>
    Include string
    DsIds []string
    Include string
    dsIds List<String>
    include String
    dsIds string[]
    include string
    ds_ids Sequence[str]
    include str
    dsIds List<String>
    include String

    AvailabilityzoneConfigpbAttribute, AvailabilityzoneConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware