azure-native.avs.PrivateCloud

Explore with Pulumi AI

A private cloud resource API Version: 2020-03-20.

Example Usage

PrivateClouds_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var privateCloud = new AzureNative.AVS.PrivateCloud("privateCloud", new()
    {
        Location = "eastus2",
        ManagementCluster = new AzureNative.AVS.Inputs.ManagementClusterArgs
        {
            ClusterSize = 4,
        },
        NetworkBlock = "192.168.48.0/22",
        PrivateCloudName = "cloud1",
        ResourceGroupName = "group1",
        Sku = new AzureNative.AVS.Inputs.SkuArgs
        {
            Name = "AV36",
        },
        Tags = null,
    });

});
package main

import (
	avs "github.com/pulumi/pulumi-azure-native-sdk/avs"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := avs.NewPrivateCloud(ctx, "privateCloud", &avs.PrivateCloudArgs{
			Location: pulumi.String("eastus2"),
			ManagementCluster: &avs.ManagementClusterArgs{
				ClusterSize: pulumi.Int(4),
			},
			NetworkBlock:      pulumi.String("192.168.48.0/22"),
			PrivateCloudName:  pulumi.String("cloud1"),
			ResourceGroupName: pulumi.String("group1"),
			Sku: &avs.SkuArgs{
				Name: pulumi.String("AV36"),
			},
			Tags: nil,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.avs.PrivateCloud;
import com.pulumi.azurenative.avs.PrivateCloudArgs;
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 privateCloud = new PrivateCloud("privateCloud", PrivateCloudArgs.builder()        
            .location("eastus2")
            .managementCluster(Map.of("clusterSize", 4))
            .networkBlock("192.168.48.0/22")
            .privateCloudName("cloud1")
            .resourceGroupName("group1")
            .sku(Map.of("name", "AV36"))
            .tags()
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

private_cloud = azure_native.avs.PrivateCloud("privateCloud",
    location="eastus2",
    management_cluster=azure_native.avs.ManagementClusterArgs(
        cluster_size=4,
    ),
    network_block="192.168.48.0/22",
    private_cloud_name="cloud1",
    resource_group_name="group1",
    sku=azure_native.avs.SkuArgs(
        name="AV36",
    ),
    tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const privateCloud = new azure_native.avs.PrivateCloud("privateCloud", {
    location: "eastus2",
    managementCluster: {
        clusterSize: 4,
    },
    networkBlock: "192.168.48.0/22",
    privateCloudName: "cloud1",
    resourceGroupName: "group1",
    sku: {
        name: "AV36",
    },
    tags: {},
});
resources:
  privateCloud:
    type: azure-native:avs:PrivateCloud
    properties:
      location: eastus2
      managementCluster:
        clusterSize: 4
      networkBlock: 192.168.48.0/22
      privateCloudName: cloud1
      resourceGroupName: group1
      sku:
        name: AV36
      tags: {}

Create PrivateCloud Resource

new PrivateCloud(name: string, args: PrivateCloudArgs, opts?: CustomResourceOptions);
@overload
def PrivateCloud(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 identity_sources: Optional[Sequence[IdentitySourceArgs]] = None,
                 internet: Optional[Union[str, InternetEnum]] = None,
                 location: Optional[str] = None,
                 management_cluster: Optional[ManagementClusterArgs] = None,
                 network_block: Optional[str] = None,
                 nsxt_password: Optional[str] = None,
                 private_cloud_name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 sku: Optional[SkuArgs] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 vcenter_password: Optional[str] = None)
@overload
def PrivateCloud(resource_name: str,
                 args: PrivateCloudArgs,
                 opts: Optional[ResourceOptions] = None)
func NewPrivateCloud(ctx *Context, name string, args PrivateCloudArgs, opts ...ResourceOption) (*PrivateCloud, error)
public PrivateCloud(string name, PrivateCloudArgs args, CustomResourceOptions? opts = null)
public PrivateCloud(String name, PrivateCloudArgs args)
public PrivateCloud(String name, PrivateCloudArgs args, CustomResourceOptions options)
type: azure-native:avs:PrivateCloud
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args PrivateCloudArgs
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 PrivateCloudArgs
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 PrivateCloudArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args PrivateCloudArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args PrivateCloudArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

PrivateCloud Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The PrivateCloud resource accepts the following input properties:

ManagementCluster Pulumi.AzureNative.AVS.Inputs.ManagementClusterArgs

The default cluster used for management

NetworkBlock string

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

ResourceGroupName string

The name of the resource group. The name is case insensitive.

Sku Pulumi.AzureNative.AVS.Inputs.SkuArgs

The private cloud SKU

IdentitySources List<Pulumi.AzureNative.AVS.Inputs.IdentitySourceArgs>

vCenter Single Sign On Identity Sources

Internet string | Pulumi.AzureNative.AVS.InternetEnum

Connectivity to internet is enabled or disabled

Location string

Resource location

NsxtPassword string

Optionally, set the NSX-T Manager password when the private cloud is created

PrivateCloudName string

Name of the private cloud

Tags Dictionary<string, string>

Resource tags

VcenterPassword string

Optionally, set the vCenter admin password when the private cloud is created

ManagementCluster ManagementClusterArgs

The default cluster used for management

NetworkBlock string

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

ResourceGroupName string

The name of the resource group. The name is case insensitive.

Sku SkuArgs

The private cloud SKU

IdentitySources []IdentitySourceArgs

vCenter Single Sign On Identity Sources

Internet string | InternetEnum

Connectivity to internet is enabled or disabled

Location string

Resource location

NsxtPassword string

Optionally, set the NSX-T Manager password when the private cloud is created

PrivateCloudName string

Name of the private cloud

Tags map[string]string

Resource tags

VcenterPassword string

Optionally, set the vCenter admin password when the private cloud is created

managementCluster ManagementClusterArgs

The default cluster used for management

networkBlock String

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

resourceGroupName String

The name of the resource group. The name is case insensitive.

sku SkuArgs

The private cloud SKU

identitySources List<IdentitySourceArgs>

vCenter Single Sign On Identity Sources

internet String | InternetEnum

Connectivity to internet is enabled or disabled

location String

Resource location

nsxtPassword String

Optionally, set the NSX-T Manager password when the private cloud is created

privateCloudName String

Name of the private cloud

tags Map<String,String>

Resource tags

vcenterPassword String

Optionally, set the vCenter admin password when the private cloud is created

managementCluster ManagementClusterArgs

The default cluster used for management

networkBlock string

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

resourceGroupName string

The name of the resource group. The name is case insensitive.

sku SkuArgs

The private cloud SKU

identitySources IdentitySourceArgs[]

vCenter Single Sign On Identity Sources

internet string | InternetEnum

Connectivity to internet is enabled or disabled

location string

Resource location

nsxtPassword string

Optionally, set the NSX-T Manager password when the private cloud is created

privateCloudName string

Name of the private cloud

tags {[key: string]: string}

Resource tags

vcenterPassword string

Optionally, set the vCenter admin password when the private cloud is created

management_cluster ManagementClusterArgs

The default cluster used for management

network_block str

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

resource_group_name str

The name of the resource group. The name is case insensitive.

sku SkuArgs

The private cloud SKU

identity_sources Sequence[IdentitySourceArgs]

vCenter Single Sign On Identity Sources

internet str | InternetEnum

Connectivity to internet is enabled or disabled

location str

Resource location

nsxt_password str

Optionally, set the NSX-T Manager password when the private cloud is created

private_cloud_name str

Name of the private cloud

tags Mapping[str, str]

Resource tags

vcenter_password str

Optionally, set the vCenter admin password when the private cloud is created

managementCluster Property Map

The default cluster used for management

networkBlock String

The block of addresses should be unique across VNet in your subscription as well as on-premise. Make sure the CIDR format is conformed to (A.B.C.D/X) where A,B,C,D are between 0 and 255, and X is between 0 and 22

resourceGroupName String

The name of the resource group. The name is case insensitive.

sku Property Map

The private cloud SKU

identitySources List<Property Map>

vCenter Single Sign On Identity Sources

internet String | "Enabled" | "Disabled"

Connectivity to internet is enabled or disabled

location String

Resource location

nsxtPassword String

Optionally, set the NSX-T Manager password when the private cloud is created

privateCloudName String

Name of the private cloud

tags Map<String>

Resource tags

vcenterPassword String

Optionally, set the vCenter admin password when the private cloud is created

Outputs

All input properties are implicitly available as output properties. Additionally, the PrivateCloud resource produces the following output properties:

Endpoints Pulumi.AzureNative.AVS.Outputs.EndpointsResponse

The endpoints

Id string

The provider-assigned unique ID for this managed resource.

ManagementNetwork string

Network used to access vCenter Server and NSX-T Manager

Name string

Resource name.

NsxtCertificateThumbprint string

Thumbprint of the NSX-T Manager SSL certificate

ProvisioningNetwork string

Used for virtual machine cold migration, cloning, and snapshot migration

ProvisioningState string

The provisioning state

Type string

Resource type.

VcenterCertificateThumbprint string

Thumbprint of the vCenter Server SSL certificate

VmotionNetwork string

Used for live migration of virtual machines

Circuit Pulumi.AzureNative.AVS.Outputs.CircuitResponse

An ExpressRoute Circuit

Endpoints EndpointsResponse

The endpoints

Id string

The provider-assigned unique ID for this managed resource.

ManagementNetwork string

Network used to access vCenter Server and NSX-T Manager

Name string

Resource name.

NsxtCertificateThumbprint string

Thumbprint of the NSX-T Manager SSL certificate

ProvisioningNetwork string

Used for virtual machine cold migration, cloning, and snapshot migration

ProvisioningState string

The provisioning state

Type string

Resource type.

VcenterCertificateThumbprint string

Thumbprint of the vCenter Server SSL certificate

VmotionNetwork string

Used for live migration of virtual machines

Circuit CircuitResponse

An ExpressRoute Circuit

endpoints EndpointsResponse

The endpoints

id String

The provider-assigned unique ID for this managed resource.

managementNetwork String

Network used to access vCenter Server and NSX-T Manager

name String

Resource name.

nsxtCertificateThumbprint String

Thumbprint of the NSX-T Manager SSL certificate

provisioningNetwork String

Used for virtual machine cold migration, cloning, and snapshot migration

provisioningState String

The provisioning state

type String

Resource type.

vcenterCertificateThumbprint String

Thumbprint of the vCenter Server SSL certificate

vmotionNetwork String

Used for live migration of virtual machines

circuit CircuitResponse

An ExpressRoute Circuit

endpoints EndpointsResponse

The endpoints

id string

The provider-assigned unique ID for this managed resource.

managementNetwork string

Network used to access vCenter Server and NSX-T Manager

name string

Resource name.

nsxtCertificateThumbprint string

Thumbprint of the NSX-T Manager SSL certificate

provisioningNetwork string

Used for virtual machine cold migration, cloning, and snapshot migration

provisioningState string

The provisioning state

type string

Resource type.

vcenterCertificateThumbprint string

Thumbprint of the vCenter Server SSL certificate

vmotionNetwork string

Used for live migration of virtual machines

circuit CircuitResponse

An ExpressRoute Circuit

endpoints EndpointsResponse

The endpoints

id str

The provider-assigned unique ID for this managed resource.

management_network str

Network used to access vCenter Server and NSX-T Manager

name str

Resource name.

nsxt_certificate_thumbprint str

Thumbprint of the NSX-T Manager SSL certificate

provisioning_network str

Used for virtual machine cold migration, cloning, and snapshot migration

provisioning_state str

The provisioning state

type str

Resource type.

vcenter_certificate_thumbprint str

Thumbprint of the vCenter Server SSL certificate

vmotion_network str

Used for live migration of virtual machines

circuit CircuitResponse

An ExpressRoute Circuit

endpoints Property Map

The endpoints

id String

The provider-assigned unique ID for this managed resource.

managementNetwork String

Network used to access vCenter Server and NSX-T Manager

name String

Resource name.

nsxtCertificateThumbprint String

Thumbprint of the NSX-T Manager SSL certificate

provisioningNetwork String

Used for virtual machine cold migration, cloning, and snapshot migration

provisioningState String

The provisioning state

type String

Resource type.

vcenterCertificateThumbprint String

Thumbprint of the vCenter Server SSL certificate

vmotionNetwork String

Used for live migration of virtual machines

circuit Property Map

An ExpressRoute Circuit

Supporting Types

CircuitResponse

ExpressRouteID string

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

ExpressRoutePrivatePeeringID string

ExpressRoute Circuit private peering identifier

PrimarySubnet string

CIDR of primary subnet

SecondarySubnet string

CIDR of secondary subnet

ExpressRouteID string

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

ExpressRoutePrivatePeeringID string

ExpressRoute Circuit private peering identifier

PrimarySubnet string

CIDR of primary subnet

SecondarySubnet string

CIDR of secondary subnet

expressRouteID String

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

expressRoutePrivatePeeringID String

ExpressRoute Circuit private peering identifier

primarySubnet String

CIDR of primary subnet

secondarySubnet String

CIDR of secondary subnet

expressRouteID string

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

expressRoutePrivatePeeringID string

ExpressRoute Circuit private peering identifier

primarySubnet string

CIDR of primary subnet

secondarySubnet string

CIDR of secondary subnet

express_route_id str

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

express_route_private_peering_id str

ExpressRoute Circuit private peering identifier

primary_subnet str

CIDR of primary subnet

secondary_subnet str

CIDR of secondary subnet

expressRouteID String

Identifier of the ExpressRoute Circuit (Microsoft Colo only)

expressRoutePrivatePeeringID String

ExpressRoute Circuit private peering identifier

primarySubnet String

CIDR of primary subnet

secondarySubnet String

CIDR of secondary subnet

EndpointsResponse

HcxCloudManager string

Endpoint for the HCX Cloud Manager

NsxtManager string

Endpoint for the NSX-T Data Center manager

Vcsa string

Endpoint for Virtual Center Server Appliance

HcxCloudManager string

Endpoint for the HCX Cloud Manager

NsxtManager string

Endpoint for the NSX-T Data Center manager

Vcsa string

Endpoint for Virtual Center Server Appliance

hcxCloudManager String

Endpoint for the HCX Cloud Manager

nsxtManager String

Endpoint for the NSX-T Data Center manager

vcsa String

Endpoint for Virtual Center Server Appliance

hcxCloudManager string

Endpoint for the HCX Cloud Manager

nsxtManager string

Endpoint for the NSX-T Data Center manager

vcsa string

Endpoint for Virtual Center Server Appliance

hcx_cloud_manager str

Endpoint for the HCX Cloud Manager

nsxt_manager str

Endpoint for the NSX-T Data Center manager

vcsa str

Endpoint for Virtual Center Server Appliance

hcxCloudManager String

Endpoint for the HCX Cloud Manager

nsxtManager String

Endpoint for the NSX-T Data Center manager

vcsa String

Endpoint for Virtual Center Server Appliance

IdentitySource

Alias string

The domain's NetBIOS name

BaseGroupDN string

The base distinguished name for groups

BaseUserDN string

The base distinguished name for users

Domain string

The domain's dns name

Name string

The name of the identity source

Password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

PrimaryServer string

Primary server URL

SecondaryServer string

Secondary server URL

Ssl string | Pulumi.AzureNative.AVS.SslEnum

Protect LDAP communication using SSL certificate (LDAPS)

Username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

Alias string

The domain's NetBIOS name

BaseGroupDN string

The base distinguished name for groups

BaseUserDN string

The base distinguished name for users

Domain string

The domain's dns name

Name string

The name of the identity source

Password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

PrimaryServer string

Primary server URL

SecondaryServer string

Secondary server URL

Ssl string | SslEnum

Protect LDAP communication using SSL certificate (LDAPS)

Username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias String

The domain's NetBIOS name

baseGroupDN String

The base distinguished name for groups

baseUserDN String

The base distinguished name for users

domain String

The domain's dns name

name String

The name of the identity source

password String

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer String

Primary server URL

secondaryServer String

Secondary server URL

ssl String | SslEnum

Protect LDAP communication using SSL certificate (LDAPS)

username String

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias string

The domain's NetBIOS name

baseGroupDN string

The base distinguished name for groups

baseUserDN string

The base distinguished name for users

domain string

The domain's dns name

name string

The name of the identity source

password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer string

Primary server URL

secondaryServer string

Secondary server URL

ssl string | SslEnum

Protect LDAP communication using SSL certificate (LDAPS)

username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias str

The domain's NetBIOS name

base_group_dn str

The base distinguished name for groups

base_user_dn str

The base distinguished name for users

domain str

The domain's dns name

name str

The name of the identity source

password str

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primary_server str

Primary server URL

secondary_server str

Secondary server URL

ssl str | SslEnum

Protect LDAP communication using SSL certificate (LDAPS)

username str

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias String

The domain's NetBIOS name

baseGroupDN String

The base distinguished name for groups

baseUserDN String

The base distinguished name for users

domain String

The domain's dns name

name String

The name of the identity source

password String

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer String

Primary server URL

secondaryServer String

Secondary server URL

ssl String | "Enabled" | "Disabled"

Protect LDAP communication using SSL certificate (LDAPS)

username String

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

IdentitySourceResponse

Alias string

The domain's NetBIOS name

BaseGroupDN string

The base distinguished name for groups

BaseUserDN string

The base distinguished name for users

Domain string

The domain's dns name

Name string

The name of the identity source

Password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

PrimaryServer string

Primary server URL

SecondaryServer string

Secondary server URL

Ssl string

Protect LDAP communication using SSL certificate (LDAPS)

Username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

Alias string

The domain's NetBIOS name

BaseGroupDN string

The base distinguished name for groups

BaseUserDN string

The base distinguished name for users

Domain string

The domain's dns name

Name string

The name of the identity source

Password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

PrimaryServer string

Primary server URL

SecondaryServer string

Secondary server URL

Ssl string

Protect LDAP communication using SSL certificate (LDAPS)

Username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias String

The domain's NetBIOS name

baseGroupDN String

The base distinguished name for groups

baseUserDN String

The base distinguished name for users

domain String

The domain's dns name

name String

The name of the identity source

password String

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer String

Primary server URL

secondaryServer String

Secondary server URL

ssl String

Protect LDAP communication using SSL certificate (LDAPS)

username String

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias string

The domain's NetBIOS name

baseGroupDN string

The base distinguished name for groups

baseUserDN string

The base distinguished name for users

domain string

The domain's dns name

name string

The name of the identity source

password string

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer string

Primary server URL

secondaryServer string

Secondary server URL

ssl string

Protect LDAP communication using SSL certificate (LDAPS)

username string

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias str

The domain's NetBIOS name

base_group_dn str

The base distinguished name for groups

base_user_dn str

The base distinguished name for users

domain str

The domain's dns name

name str

The name of the identity source

password str

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primary_server str

Primary server URL

secondary_server str

Secondary server URL

ssl str

Protect LDAP communication using SSL certificate (LDAPS)

username str

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

alias String

The domain's NetBIOS name

baseGroupDN String

The base distinguished name for groups

baseUserDN String

The base distinguished name for users

domain String

The domain's dns name

name String

The name of the identity source

password String

The password of the Active Directory user with a minimum of read-only access to Base DN for users and groups.

primaryServer String

Primary server URL

secondaryServer String

Secondary server URL

ssl String

Protect LDAP communication using SSL certificate (LDAPS)

username String

The ID of an Active Directory user with a minimum of read-only access to Base DN for users and group

InternetEnum

Enabled
Enabled
Disabled
Disabled
InternetEnumEnabled
Enabled
InternetEnumDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

ManagementCluster

ClusterSize int

The cluster size

ClusterSize int

The cluster size

clusterSize Integer

The cluster size

clusterSize number

The cluster size

cluster_size int

The cluster size

clusterSize Number

The cluster size

ManagementClusterResponse

ClusterId int

The identity

ClusterSize int

The cluster size

Hosts List<string>

The hosts

ProvisioningState string

The state of the cluster provisioning

ClusterId int

The identity

ClusterSize int

The cluster size

Hosts []string

The hosts

ProvisioningState string

The state of the cluster provisioning

clusterId Integer

The identity

clusterSize Integer

The cluster size

hosts List<String>

The hosts

provisioningState String

The state of the cluster provisioning

clusterId number

The identity

clusterSize number

The cluster size

hosts string[]

The hosts

provisioningState string

The state of the cluster provisioning

cluster_id int

The identity

cluster_size int

The cluster size

hosts Sequence[str]

The hosts

provisioning_state str

The state of the cluster provisioning

clusterId Number

The identity

clusterSize Number

The cluster size

hosts List<String>

The hosts

provisioningState String

The state of the cluster provisioning

Sku

Name string

The name of the SKU.

Name string

The name of the SKU.

name String

The name of the SKU.

name string

The name of the SKU.

name str

The name of the SKU.

name String

The name of the SKU.

SkuResponse

Name string

The name of the SKU.

Name string

The name of the SKU.

name String

The name of the SKU.

name string

The name of the SKU.

name str

The name of the SKU.

name String

The name of the SKU.

SslEnum

Enabled
Enabled
Disabled
Disabled
SslEnumEnabled
Enabled
SslEnumDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:avs:PrivateCloud cloud1 /subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0