published on Friday, Mar 20, 2026 by Pulumi
published on Friday, Mar 20, 2026 by Pulumi
Representation of a Garnet cache cluster.
Uses Azure REST API version 2025-11-01-preview.
Example Usage
CosmosDBGarnetClusterCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var garnetCluster = new AzureNative.CosmosDB.GarnetCluster("garnetCluster", new()
{
ClusterName = "garnet-prod",
Location = "West US",
Properties = new AzureNative.CosmosDB.Inputs.GarnetClusterResourcePropertiesArgs
{
NodeCount = 4,
NodeSku = "Standard_DS13_v2",
ReplicationFactor = 2,
SubnetId = "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
ResourceGroupName = "garnet-prod-rg",
Tags = null,
});
});
package main
import (
cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cosmosdb.NewGarnetCluster(ctx, "garnetCluster", &cosmosdb.GarnetClusterArgs{
ClusterName: pulumi.String("garnet-prod"),
Location: pulumi.String("West US"),
Properties: &cosmosdb.GarnetClusterResourcePropertiesArgs{
NodeCount: pulumi.Int(4),
NodeSku: pulumi.String("Standard_DS13_v2"),
ReplicationFactor: pulumi.Int(2),
SubnetId: pulumi.String("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management"),
},
ResourceGroupName: pulumi.String("garnet-prod-rg"),
Tags: pulumi.StringMap{},
})
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.cosmosdb.GarnetCluster;
import com.pulumi.azurenative.cosmosdb.GarnetClusterArgs;
import com.pulumi.azurenative.cosmosdb.inputs.GarnetClusterResourcePropertiesArgs;
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 garnetCluster = new GarnetCluster("garnetCluster", GarnetClusterArgs.builder()
.clusterName("garnet-prod")
.location("West US")
.properties(GarnetClusterResourcePropertiesArgs.builder()
.nodeCount(4)
.nodeSku("Standard_DS13_v2")
.replicationFactor(2)
.subnetId("/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management")
.build())
.resourceGroupName("garnet-prod-rg")
.tags(Map.ofEntries(
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const garnetCluster = new azure_native.cosmosdb.GarnetCluster("garnetCluster", {
clusterName: "garnet-prod",
location: "West US",
properties: {
nodeCount: 4,
nodeSku: "Standard_DS13_v2",
replicationFactor: 2,
subnetId: "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
resourceGroupName: "garnet-prod-rg",
tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
garnet_cluster = azure_native.cosmosdb.GarnetCluster("garnetCluster",
cluster_name="garnet-prod",
location="West US",
properties={
"node_count": 4,
"node_sku": "Standard_DS13_v2",
"replication_factor": 2,
"subnet_id": "/subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management",
},
resource_group_name="garnet-prod-rg",
tags={})
resources:
garnetCluster:
type: azure-native:cosmosdb:GarnetCluster
properties:
clusterName: garnet-prod
location: West US
properties:
nodeCount: 4
nodeSku: Standard_DS13_v2
replicationFactor: 2
subnetId: /subscriptions/536e130b-d7d6-4ac7-98a5-de20d69588d2/resourceGroups/customer-vnet-rg/providers/Microsoft.Network/virtualNetworks/customer-vnet/subnets/management
resourceGroupName: garnet-prod-rg
tags: {}
Create GarnetCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GarnetCluster(name: string, args: GarnetClusterArgs, opts?: CustomResourceOptions);@overload
def GarnetCluster(resource_name: str,
args: GarnetClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GarnetCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cluster_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[GarnetClusterResourcePropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewGarnetCluster(ctx *Context, name string, args GarnetClusterArgs, opts ...ResourceOption) (*GarnetCluster, error)public GarnetCluster(string name, GarnetClusterArgs args, CustomResourceOptions? opts = null)
public GarnetCluster(String name, GarnetClusterArgs args)
public GarnetCluster(String name, GarnetClusterArgs args, CustomResourceOptions options)
type: azure-native:cosmosdb:GarnetCluster
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 GarnetClusterArgs
- 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 GarnetClusterArgs
- 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 GarnetClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GarnetClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GarnetClusterArgs
- 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 garnetClusterResource = new AzureNative.CosmosDB.GarnetCluster("garnetClusterResource", new()
{
ResourceGroupName = "string",
ClusterName = "string",
Location = "string",
Properties = new AzureNative.CosmosDB.Inputs.GarnetClusterResourcePropertiesArgs
{
AllocationState = "string",
AvailabilityZone = false,
ClusterType = "string",
Extensions = new[]
{
"string",
},
NodeCount = 0,
NodeSku = "string",
ReplicationFactor = 0,
SubnetId = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := cosmosdb.NewGarnetCluster(ctx, "garnetClusterResource", &cosmosdb.GarnetClusterArgs{
ResourceGroupName: pulumi.String("string"),
ClusterName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &cosmosdb.GarnetClusterResourcePropertiesArgs{
AllocationState: pulumi.String("string"),
AvailabilityZone: pulumi.Bool(false),
ClusterType: pulumi.String("string"),
Extensions: pulumi.StringArray{
pulumi.String("string"),
},
NodeCount: pulumi.Int(0),
NodeSku: pulumi.String("string"),
ReplicationFactor: pulumi.Int(0),
SubnetId: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var garnetClusterResource = new GarnetCluster("garnetClusterResource", GarnetClusterArgs.builder()
.resourceGroupName("string")
.clusterName("string")
.location("string")
.properties(GarnetClusterResourcePropertiesArgs.builder()
.allocationState("string")
.availabilityZone(false)
.clusterType("string")
.extensions("string")
.nodeCount(0)
.nodeSku("string")
.replicationFactor(0)
.subnetId("string")
.build())
.tags(Map.of("string", "string"))
.build());
garnet_cluster_resource = azure_native.cosmosdb.GarnetCluster("garnetClusterResource",
resource_group_name="string",
cluster_name="string",
location="string",
properties={
"allocation_state": "string",
"availability_zone": False,
"cluster_type": "string",
"extensions": ["string"],
"node_count": 0,
"node_sku": "string",
"replication_factor": 0,
"subnet_id": "string",
},
tags={
"string": "string",
})
const garnetClusterResource = new azure_native.cosmosdb.GarnetCluster("garnetClusterResource", {
resourceGroupName: "string",
clusterName: "string",
location: "string",
properties: {
allocationState: "string",
availabilityZone: false,
clusterType: "string",
extensions: ["string"],
nodeCount: 0,
nodeSku: "string",
replicationFactor: 0,
subnetId: "string",
},
tags: {
string: "string",
},
});
type: azure-native:cosmosdb:GarnetCluster
properties:
clusterName: string
location: string
properties:
allocationState: string
availabilityZone: false
clusterType: string
extensions:
- string
nodeCount: 0
nodeSku: string
replicationFactor: 0
subnetId: string
resourceGroupName: string
tags:
string: string
GarnetCluster 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 GarnetCluster resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Garnet cache cluster name.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Cosmos DB. Inputs. Garnet Cluster Resource Properties - Properties of a Garnet cache cluster.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Name string - Garnet cache cluster name.
- Location string
- The geo-location where the resource lives
- Properties
Garnet
Cluster Resource Properties Args - Properties of a Garnet cache cluster.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name String - Garnet cache cluster name.
- location String
- The geo-location where the resource lives
- properties
Garnet
Cluster Resource Properties - Properties of a Garnet cache cluster.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cluster
Name string - Garnet cache cluster name.
- location string
- The geo-location where the resource lives
- properties
Garnet
Cluster Resource Properties - Properties of a Garnet cache cluster.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cluster_
name str - Garnet cache cluster name.
- location str
- The geo-location where the resource lives
- properties
Garnet
Cluster Resource Properties Args - Properties of a Garnet cache cluster.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Name String - Garnet cache cluster name.
- location String
- The geo-location where the resource lives
- properties Property Map
- Properties of a Garnet cache cluster.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the GarnetCluster resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Cosmos DB. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AllocationState, AllocationStateArgs
- Active
Active- Deallocated
Deallocated
- Allocation
State Active Active- Allocation
State Deallocated Deallocated
- Active
Active- Deallocated
Deallocated
- Active
Active- Deallocated
Deallocated
- ACTIVE
Active- DEALLOCATED
Deallocated
- "Active"
Active- "Deallocated"
Deallocated
ClusterType, ClusterTypeArgs
- Production
Production- Non
Production NonProduction
- Cluster
Type Production Production- Cluster
Type Non Production NonProduction
- Production
Production- Non
Production NonProduction
- Production
Production- Non
Production NonProduction
- PRODUCTION
Production- NON_PRODUCTION
NonProduction
- "Production"
Production- "Non
Production" NonProduction
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Cosmos DB. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Cosmos DB. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
GarnetClusterResourceProperties, GarnetClusterResourcePropertiesArgs
Properties of a Garnet cache cluster.- Allocation
State string | Pulumi.Azure Native. Cosmos DB. Allocation State - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string | Pulumi.Azure Native. Cosmos DB. Cluster Type - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions List<string>
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- Allocation
State string | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions []string
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation
State String | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Integer - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- replication
Factor Integer - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation
State string | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type string | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions string[]
- Extensions to be added or updated on cluster.
- node
Count number - Number of nodes
- node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- replication
Factor number - Number of copies of data maintained by the cluster
- subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation_
state str | AllocationState - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability_
zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster_
type str | ClusterType - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions Sequence[str]
- Extensions to be added or updated on cluster.
- node_
count int - Number of nodes
- node_
sku str - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- replication_
factor int - Number of copies of data maintained by the cluster
- subnet_
id str - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- allocation
State String | "Active" | "Deallocated" - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String | "Production" | "NonProduction" - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Number - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- replication
Factor Number - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
GarnetClusterResourceResponseEndPoints, GarnetClusterResourceResponseEndPointsArgs
- ip_
address str - Ipv4 address of the endpoint
- port int
- Port number
GarnetClusterResourceResponseProperties, GarnetClusterResourceResponsePropertiesArgs
Properties of a Garnet cache cluster.- End
Points List<Pulumi.Azure Native. Cosmos DB. Inputs. Garnet Cluster Resource Response End Points> - endpoints for clients to connect to the cluster.
- Provisioning
State string - The status of the resource at the time the operation was called.
- Allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions List<string>
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Provision
Error Pulumi.Azure Native. Cosmos DB. Inputs. Error Detail Response - Error related to resource provisioning.
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- End
Points []GarnetCluster Resource Response End Points - endpoints for clients to connect to the cluster.
- Provisioning
State string - The status of the resource at the time the operation was called.
- Allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- Availability
Zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- Cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- Extensions []string
- Extensions to be added or updated on cluster.
- Node
Count int - Number of nodes
- Node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- Provision
Error ErrorDetail Response - Error related to resource provisioning.
- Replication
Factor int - Number of copies of data maintained by the cluster
- Subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points List<GarnetCluster Resource Response End Points> - endpoints for clients to connect to the cluster.
- provisioning
State String - The status of the resource at the time the operation was called.
- allocation
State String - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Integer - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error ErrorDetail Response - Error related to resource provisioning.
- replication
Factor Integer - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points GarnetCluster Resource Response End Points[] - endpoints for clients to connect to the cluster.
- provisioning
State string - The status of the resource at the time the operation was called.
- allocation
State string - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type string - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions string[]
- Extensions to be added or updated on cluster.
- node
Count number - Number of nodes
- node
Sku string - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error ErrorDetail Response - Error related to resource provisioning.
- replication
Factor number - Number of copies of data maintained by the cluster
- subnet
Id string - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end_
points Sequence[GarnetCluster Resource Response End Points] - endpoints for clients to connect to the cluster.
- provisioning_
state str - The status of the resource at the time the operation was called.
- allocation_
state str - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability_
zone bool - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster_
type str - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions Sequence[str]
- Extensions to be added or updated on cluster.
- node_
count int - Number of nodes
- node_
sku str - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision_
error ErrorDetail Response - Error related to resource provisioning.
- replication_
factor int - Number of copies of data maintained by the cluster
- subnet_
id str - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
- end
Points List<Property Map> - endpoints for clients to connect to the cluster.
- provisioning
State String - The status of the resource at the time the operation was called.
- allocation
State String - Allocation state of the cluster and data center resources. Active implies the virtual machines of the cluster are allocated, deallocated implies virtual machines and resources are deallocated.
- availability
Zone Boolean - If the data center has Availability Zone support, apply it to the Virtual Machine ScaleSet that host the garnet cluster virtual machines.
- cluster
Type String - Type of the cluster. If set to Production, some operations might not be permitted on cluster.
- extensions List<String>
- Extensions to be added or updated on cluster.
- node
Count Number - Number of nodes
- node
Sku String - Virtual Machine SKU used for clusters. Default value is Standard_DS14_v2
- provision
Error Property Map - Error related to resource provisioning.
- replication
Factor Number - Number of copies of data maintained by the cluster
- subnet
Id String - Resource id of a subnet that this cluster's management service should have its network interface attached to. The subnet must be routable to all subnets that will be delegated to data centers. The resource id must be of the form '/subscriptions//resourceGroups//providers/Microsoft.Network/virtualNetworks//subnets/'
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cosmosdb:GarnetCluster garnet-prod /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/garnetClusters/{clusterName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Friday, Mar 20, 2026 by Pulumi
