azure-native.elasticsan.ElasticSan
Explore with Pulumi AI
Response for ElasticSan request.
Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2021-11-20-preview.
Other available API versions: 2021-11-20-preview, 2022-12-01-preview, 2023-01-01, 2024-06-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native elasticsan [ApiVersion]
. See the version guide for details.
Example Usage
ElasticSans_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var elasticSan = new AzureNative.ElasticSan.ElasticSan("elasticSan", new()
{
AvailabilityZones = new[]
{
"1",
},
BaseSizeTiB = 5,
ElasticSanName = "elasticsanname",
ExtendedCapacitySizeTiB = 25,
Location = "France Central",
PublicNetworkAccess = AzureNative.ElasticSan.PublicNetworkAccess.Enabled,
ResourceGroupName = "resourcegroupname",
Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
{
Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
Tier = AzureNative.ElasticSan.SkuTier.Premium,
},
Tags =
{
{ "key9316", "ihndtieqibtob" },
},
});
});
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticsan.NewElasticSan(ctx, "elasticSan", &elasticsan.ElasticSanArgs{
AvailabilityZones: pulumi.StringArray{
pulumi.String("1"),
},
BaseSizeTiB: pulumi.Float64(5),
ElasticSanName: pulumi.String("elasticsanname"),
ExtendedCapacitySizeTiB: pulumi.Float64(25),
Location: pulumi.String("France Central"),
PublicNetworkAccess: pulumi.String(elasticsan.PublicNetworkAccessEnabled),
ResourceGroupName: pulumi.String("resourcegroupname"),
Sku: &elasticsan.SkuArgs{
Name: pulumi.String(elasticsan.SkuName_Premium_LRS),
Tier: pulumi.String(elasticsan.SkuTierPremium),
},
Tags: pulumi.StringMap{
"key9316": pulumi.String("ihndtieqibtob"),
},
})
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.elasticsan.ElasticSan;
import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
.availabilityZones("1")
.baseSizeTiB(5.0)
.elasticSanName("elasticsanname")
.extendedCapacitySizeTiB(25.0)
.location("France Central")
.publicNetworkAccess("Enabled")
.resourceGroupName("resourcegroupname")
.sku(SkuArgs.builder()
.name("Premium_LRS")
.tier("Premium")
.build())
.tags(Map.of("key9316", "ihndtieqibtob"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
availabilityZones: ["1"],
baseSizeTiB: 5,
elasticSanName: "elasticsanname",
extendedCapacitySizeTiB: 25,
location: "France Central",
publicNetworkAccess: azure_native.elasticsan.PublicNetworkAccess.Enabled,
resourceGroupName: "resourcegroupname",
sku: {
name: azure_native.elasticsan.SkuName.Premium_LRS,
tier: azure_native.elasticsan.SkuTier.Premium,
},
tags: {
key9316: "ihndtieqibtob",
},
});
import pulumi
import pulumi_azure_native as azure_native
elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
availability_zones=["1"],
base_size_ti_b=5,
elastic_san_name="elasticsanname",
extended_capacity_size_ti_b=25,
location="France Central",
public_network_access=azure_native.elasticsan.PublicNetworkAccess.ENABLED,
resource_group_name="resourcegroupname",
sku={
"name": azure_native.elasticsan.SkuName.PREMIUM_LRS,
"tier": azure_native.elasticsan.SkuTier.PREMIUM,
},
tags={
"key9316": "ihndtieqibtob",
})
resources:
elasticSan:
type: azure-native:elasticsan:ElasticSan
properties:
availabilityZones:
- '1'
baseSizeTiB: 5
elasticSanName: elasticsanname
extendedCapacitySizeTiB: 25
location: France Central
publicNetworkAccess: Enabled
resourceGroupName: resourcegroupname
sku:
name: Premium_LRS
tier: Premium
tags:
key9316: ihndtieqibtob
ElasticSans_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var elasticSan = new AzureNative.ElasticSan.ElasticSan("elasticSan", new()
{
BaseSizeTiB = 15,
ElasticSanName = "elasticsanname",
ExtendedCapacitySizeTiB = 27,
Location = "France Central",
ResourceGroupName = "resourcegroupname",
Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
{
Name = AzureNative.ElasticSan.SkuName.Premium_LRS,
},
});
});
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticsan.NewElasticSan(ctx, "elasticSan", &elasticsan.ElasticSanArgs{
BaseSizeTiB: pulumi.Float64(15),
ElasticSanName: pulumi.String("elasticsanname"),
ExtendedCapacitySizeTiB: pulumi.Float64(27),
Location: pulumi.String("France Central"),
ResourceGroupName: pulumi.String("resourcegroupname"),
Sku: &elasticsan.SkuArgs{
Name: pulumi.String(elasticsan.SkuName_Premium_LRS),
},
})
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.elasticsan.ElasticSan;
import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
.baseSizeTiB(15.0)
.elasticSanName("elasticsanname")
.extendedCapacitySizeTiB(27.0)
.location("France Central")
.resourceGroupName("resourcegroupname")
.sku(SkuArgs.builder()
.name("Premium_LRS")
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const elasticSan = new azure_native.elasticsan.ElasticSan("elasticSan", {
baseSizeTiB: 15,
elasticSanName: "elasticsanname",
extendedCapacitySizeTiB: 27,
location: "France Central",
resourceGroupName: "resourcegroupname",
sku: {
name: azure_native.elasticsan.SkuName.Premium_LRS,
},
});
import pulumi
import pulumi_azure_native as azure_native
elastic_san = azure_native.elasticsan.ElasticSan("elasticSan",
base_size_ti_b=15,
elastic_san_name="elasticsanname",
extended_capacity_size_ti_b=27,
location="France Central",
resource_group_name="resourcegroupname",
sku={
"name": azure_native.elasticsan.SkuName.PREMIUM_LRS,
})
resources:
elasticSan:
type: azure-native:elasticsan:ElasticSan
properties:
baseSizeTiB: 15
elasticSanName: elasticsanname
extendedCapacitySizeTiB: 27
location: France Central
resourceGroupName: resourcegroupname
sku:
name: Premium_LRS
Create ElasticSan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ElasticSan(name: string, args: ElasticSanArgs, opts?: CustomResourceOptions);
@overload
def ElasticSan(resource_name: str,
args: ElasticSanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ElasticSan(resource_name: str,
opts: Optional[ResourceOptions] = None,
base_size_ti_b: Optional[float] = None,
extended_capacity_size_ti_b: Optional[float] = None,
resource_group_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
availability_zones: Optional[Sequence[str]] = None,
elastic_san_name: Optional[str] = None,
location: Optional[str] = None,
public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewElasticSan(ctx *Context, name string, args ElasticSanArgs, opts ...ResourceOption) (*ElasticSan, error)
public ElasticSan(string name, ElasticSanArgs args, CustomResourceOptions? opts = null)
public ElasticSan(String name, ElasticSanArgs args)
public ElasticSan(String name, ElasticSanArgs args, CustomResourceOptions options)
type: azure-native:elasticsan:ElasticSan
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 ElasticSanArgs
- 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 ElasticSanArgs
- 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 ElasticSanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ElasticSanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ElasticSanArgs
- 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 elasticSanResource = new AzureNative.ElasticSan.ElasticSan("elasticSanResource", new()
{
BaseSizeTiB = 0,
ExtendedCapacitySizeTiB = 0,
ResourceGroupName = "string",
Sku = new AzureNative.ElasticSan.Inputs.SkuArgs
{
Name = "string",
Tier = "string",
},
AvailabilityZones = new[]
{
"string",
},
ElasticSanName = "string",
Location = "string",
PublicNetworkAccess = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := elasticsan.NewElasticSan(ctx, "elasticSanResource", &elasticsan.ElasticSanArgs{
BaseSizeTiB: pulumi.Float64(0),
ExtendedCapacitySizeTiB: pulumi.Float64(0),
ResourceGroupName: pulumi.String("string"),
Sku: &elasticsan.SkuArgs{
Name: pulumi.String("string"),
Tier: pulumi.String("string"),
},
AvailabilityZones: pulumi.StringArray{
pulumi.String("string"),
},
ElasticSanName: pulumi.String("string"),
Location: pulumi.String("string"),
PublicNetworkAccess: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var elasticSanResource = new ElasticSan("elasticSanResource", ElasticSanArgs.builder()
.baseSizeTiB(0.0)
.extendedCapacitySizeTiB(0.0)
.resourceGroupName("string")
.sku(SkuArgs.builder()
.name("string")
.tier("string")
.build())
.availabilityZones("string")
.elasticSanName("string")
.location("string")
.publicNetworkAccess("string")
.tags(Map.of("string", "string"))
.build());
elastic_san_resource = azure_native.elasticsan.ElasticSan("elasticSanResource",
base_size_ti_b=0,
extended_capacity_size_ti_b=0,
resource_group_name="string",
sku={
"name": "string",
"tier": "string",
},
availability_zones=["string"],
elastic_san_name="string",
location="string",
public_network_access="string",
tags={
"string": "string",
})
const elasticSanResource = new azure_native.elasticsan.ElasticSan("elasticSanResource", {
baseSizeTiB: 0,
extendedCapacitySizeTiB: 0,
resourceGroupName: "string",
sku: {
name: "string",
tier: "string",
},
availabilityZones: ["string"],
elasticSanName: "string",
location: "string",
publicNetworkAccess: "string",
tags: {
string: "string",
},
});
type: azure-native:elasticsan:ElasticSan
properties:
availabilityZones:
- string
baseSizeTiB: 0
elasticSanName: string
extendedCapacitySizeTiB: 0
location: string
publicNetworkAccess: string
resourceGroupName: string
sku:
name: string
tier: string
tags:
string: string
ElasticSan 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 ElasticSan resource accepts the following input properties:
- Base
Size doubleTi B - Base size of the Elastic San appliance in TiB.
- Extended
Capacity doubleSize Ti B - Extended size of the Elastic San appliance in TiB.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Elastic San. Inputs. Sku - resource sku
- Availability
Zones List<string> - Logical zone for Elastic San resource; example: ["1"].
- Elastic
San stringName - The name of the ElasticSan.
- Location string
- The geo-location where the resource lives
- Public
Network string | Pulumi.Access Azure Native. Elastic San. Public Network Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- Dictionary<string, string>
- Resource tags.
- Base
Size float64Ti B - Base size of the Elastic San appliance in TiB.
- Extended
Capacity float64Size Ti B - Extended size of the Elastic San appliance in TiB.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Sku
Sku
Args - resource sku
- Availability
Zones []string - Logical zone for Elastic San resource; example: ["1"].
- Elastic
San stringName - The name of the ElasticSan.
- Location string
- The geo-location where the resource lives
- Public
Network string | PublicAccess Network Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- map[string]string
- Resource tags.
- base
Size DoubleTi B - Base size of the Elastic San appliance in TiB.
- extended
Capacity DoubleSize Ti B - Extended size of the Elastic San appliance in TiB.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Sku
- resource sku
- availability
Zones List<String> - Logical zone for Elastic San resource; example: ["1"].
- elastic
San StringName - The name of the ElasticSan.
- location String
- The geo-location where the resource lives
- public
Network String | PublicAccess Network Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- Map<String,String>
- Resource tags.
- base
Size numberTi B - Base size of the Elastic San appliance in TiB.
- extended
Capacity numberSize Ti B - Extended size of the Elastic San appliance in TiB.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- sku Sku
- resource sku
- availability
Zones string[] - Logical zone for Elastic San resource; example: ["1"].
- elastic
San stringName - The name of the ElasticSan.
- location string
- The geo-location where the resource lives
- public
Network string | PublicAccess Network Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- {[key: string]: string}
- Resource tags.
- base_
size_ floatti_ b - Base size of the Elastic San appliance in TiB.
- extended_
capacity_ floatsize_ ti_ b - Extended size of the Elastic San appliance in TiB.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- sku
Sku
Args - resource sku
- availability_
zones Sequence[str] - Logical zone for Elastic San resource; example: ["1"].
- elastic_
san_ strname - The name of the ElasticSan.
- location str
- The geo-location where the resource lives
- public_
network_ str | Publicaccess Network Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- Mapping[str, str]
- Resource tags.
- base
Size NumberTi B - Base size of the Elastic San appliance in TiB.
- extended
Capacity NumberSize Ti B - Extended size of the Elastic San appliance in TiB.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- sku Property Map
- resource sku
- availability
Zones List<String> - Logical zone for Elastic San resource; example: ["1"].
- elastic
San StringName - The name of the ElasticSan.
- location String
- The geo-location where the resource lives
- public
Network String | "Enabled" | "Disabled"Access - Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ElasticSan 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
- Private
Endpoint List<Pulumi.Connections Azure Native. Elastic San. Outputs. Private Endpoint Connection Response> - The list of Private Endpoint Connections.
- Provisioning
State string - State of the operation on the resource.
- System
Data Pulumi.Azure Native. Elastic San. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Iops double - Total Provisioned IOPS of the Elastic San appliance.
- Total
MBps double - Total Provisioned MBps Elastic San appliance.
- Total
Size doubleTi B - Total size of the Elastic San appliance in TB.
- Total
Volume doubleSize Gi B - Total size of the provisioned Volumes in GiB.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Volume
Group doubleCount - Total number of volume groups in this Elastic San appliance.
- 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
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of Private Endpoint Connections.
- Provisioning
State string - State of the operation on the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Iops float64 - Total Provisioned IOPS of the Elastic San appliance.
- Total
MBps float64 - Total Provisioned MBps Elastic San appliance.
- Total
Size float64Ti B - Total size of the Elastic San appliance in TB.
- Total
Volume float64Size Gi B - Total size of the provisioned Volumes in GiB.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Volume
Group float64Count - Total number of volume groups in this Elastic San appliance.
- 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
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of Private Endpoint Connections.
- provisioning
State String - State of the operation on the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Iops Double - Total Provisioned IOPS of the Elastic San appliance.
- total
MBps Double - Total Provisioned MBps Elastic San appliance.
- total
Size DoubleTi B - Total size of the Elastic San appliance in TB.
- total
Volume DoubleSize Gi B - Total size of the provisioned Volumes in GiB.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volume
Group DoubleCount - Total number of volume groups in this Elastic San appliance.
- 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
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of Private Endpoint Connections.
- provisioning
State string - State of the operation on the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Iops number - Total Provisioned IOPS of the Elastic San appliance.
- total
MBps number - Total Provisioned MBps Elastic San appliance.
- total
Size numberTi B - Total size of the Elastic San appliance in TB.
- total
Volume numberSize Gi B - Total size of the provisioned Volumes in GiB.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volume
Group numberCount - Total number of volume groups in this Elastic San appliance.
- 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
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The list of Private Endpoint Connections.
- provisioning_
state str - State of the operation on the resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total_
iops float - Total Provisioned IOPS of the Elastic San appliance.
- total_
m_ floatbps - Total Provisioned MBps Elastic San appliance.
- total_
size_ floatti_ b - Total size of the Elastic San appliance in TB.
- total_
volume_ floatsize_ gi_ b - Total size of the provisioned Volumes in GiB.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volume_
group_ floatcount - Total number of volume groups in this Elastic San appliance.
- 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
- private
Endpoint List<Property Map>Connections - The list of Private Endpoint Connections.
- provisioning
State String - State of the operation on the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Iops Number - Total Provisioned IOPS of the Elastic San appliance.
- total
MBps Number - Total Provisioned MBps Elastic San appliance.
- total
Size NumberTi B - Total size of the Elastic San appliance in TB.
- total
Volume NumberSize Gi B - Total size of the provisioned Volumes in GiB.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- volume
Group NumberCount - Total number of volume groups in this Elastic San appliance.
Supporting Types
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Elastic San. Inputs. Private Link Service Connection State Response - Private Link Service Connection State.
- Provisioning
State string - Provisioning State of Private Endpoint connection resource
- System
Data Pulumi.Azure Native. Elastic San. Inputs. 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"
- Group
Ids List<string> - List of resources private endpoint is mapped
- Private
Endpoint Pulumi.Azure Native. Elastic San. Inputs. Private Endpoint Response - Private Endpoint resource
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - Private Link Service Connection State.
- Provisioning
State string - Provisioning State of Private Endpoint connection 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"
- Group
Ids []string - List of resources private endpoint is mapped
- Private
Endpoint PrivateEndpoint Response - Private Endpoint resource
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - Private Link Service Connection State.
- provisioning
State String - Provisioning State of Private Endpoint connection 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"
- group
Ids List<String> - List of resources private endpoint is mapped
- private
Endpoint PrivateEndpoint Response - Private Endpoint resource
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - Private Link Service Connection State.
- provisioning
State string - Provisioning State of Private Endpoint connection 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"
- group
Ids string[] - List of resources private endpoint is mapped
- private
Endpoint PrivateEndpoint Response - Private Endpoint resource
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - Private Link Service Connection State.
- provisioning_
state str - Provisioning State of Private Endpoint connection 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"
- group_
ids Sequence[str] - List of resources private endpoint is mapped
- private_
endpoint PrivateEndpoint Response - Private Endpoint resource
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link Property MapService Connection State - Private Link Service Connection State.
- provisioning
State String - Provisioning State of Private Endpoint connection 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"
- group
Ids List<String> - List of resources private endpoint is mapped
- private
Endpoint Property Map - Private Endpoint resource
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PublicNetworkAccess, PublicNetworkAccessArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Public
Network Access Enabled - Enabled
- Public
Network Access Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Elastic San. Sku Name - The sku name.
- Tier
string | Pulumi.
Azure Native. Elastic San. Sku Tier - The sku tier.
- name String | "Premium_LRS" | "Premium_ZRS"
- The sku name.
- tier String | "Premium"
- The sku tier.
SkuName, SkuNameArgs
- Premium_LRS
- Premium_LRSPremium locally redundant storage
- Premium_ZRS
- Premium_ZRSPremium zone redundant storage
- Sku
Name_Premium_LRS - Premium_LRSPremium locally redundant storage
- Sku
Name_Premium_ZRS - Premium_ZRSPremium zone redundant storage
- Premium_LRS
- Premium_LRSPremium locally redundant storage
- Premium_ZRS
- Premium_ZRSPremium zone redundant storage
- Premium_LRS
- Premium_LRSPremium locally redundant storage
- Premium_ZRS
- Premium_ZRSPremium zone redundant storage
- PREMIUM_LRS
- Premium_LRSPremium locally redundant storage
- PREMIUM_ZRS
- Premium_ZRSPremium zone redundant storage
- "Premium_LRS"
- Premium_LRSPremium locally redundant storage
- "Premium_ZRS"
- Premium_ZRSPremium zone redundant storage
SkuResponse, SkuResponseArgs
SkuTier, SkuTierArgs
- Premium
- PremiumPremium Tier
- Sku
Tier Premium - PremiumPremium Tier
- Premium
- PremiumPremium Tier
- Premium
- PremiumPremium Tier
- PREMIUM
- PremiumPremium Tier
- "Premium"
- PremiumPremium Tier
SystemDataResponse, SystemDataResponseArgs
- 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:elasticsan:ElasticSan vfoatmakv /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0