azure-native.elasticsan.VolumeGroup
Explore with Pulumi AI
Response for Volume Group 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
VolumeGroups_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
{
ElasticSanName = "elasticsanname",
ResourceGroupName = "resourcegroupname",
VolumeGroupName = "volumegroupname",
});
});
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.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("elasticsanname"),
ResourceGroupName: pulumi.String("resourcegroupname"),
VolumeGroupName: pulumi.String("volumegroupname"),
})
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.VolumeGroup;
import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
.elasticSanName("elasticsanname")
.resourceGroupName("resourcegroupname")
.volumeGroupName("volumegroupname")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
elasticSanName: "elasticsanname",
resourceGroupName: "resourcegroupname",
volumeGroupName: "volumegroupname",
});
import pulumi
import pulumi_azure_native as azure_native
volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
elastic_san_name="elasticsanname",
resource_group_name="resourcegroupname",
volume_group_name="volumegroupname")
resources:
volumeGroup:
type: azure-native:elasticsan:VolumeGroup
properties:
elasticSanName: elasticsanname
resourceGroupName: resourcegroupname
volumeGroupName: volumegroupname
Create VolumeGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
@overload
def VolumeGroup(resource_name: str,
args: VolumeGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
elastic_san_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
encryption: Optional[Union[str, EncryptionType]] = None,
encryption_properties: Optional[EncryptionPropertiesArgs] = None,
enforce_data_integrity_check_for_iscsi: Optional[bool] = None,
identity: Optional[IdentityArgs] = None,
network_acls: Optional[NetworkRuleSetArgs] = None,
protocol_type: Optional[Union[str, StorageTargetType]] = None,
volume_group_name: Optional[str] = None)
func NewVolumeGroup(ctx *Context, name string, args VolumeGroupArgs, opts ...ResourceOption) (*VolumeGroup, error)
public VolumeGroup(string name, VolumeGroupArgs args, CustomResourceOptions? opts = null)
public VolumeGroup(String name, VolumeGroupArgs args)
public VolumeGroup(String name, VolumeGroupArgs args, CustomResourceOptions options)
type: azure-native:elasticsan:VolumeGroup
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 VolumeGroupArgs
- 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 VolumeGroupArgs
- 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 VolumeGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeGroupArgs
- 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 volumeGroupResource = new AzureNative.ElasticSan.VolumeGroup("volumeGroupResource", new()
{
ElasticSanName = "string",
ResourceGroupName = "string",
Encryption = "string",
EncryptionProperties = new AzureNative.ElasticSan.Inputs.EncryptionPropertiesArgs
{
EncryptionIdentity = new AzureNative.ElasticSan.Inputs.EncryptionIdentityArgs
{
EncryptionUserAssignedIdentity = "string",
},
KeyVaultProperties = new AzureNative.ElasticSan.Inputs.KeyVaultPropertiesArgs
{
KeyName = "string",
KeyVaultUri = "string",
KeyVersion = "string",
},
},
EnforceDataIntegrityCheckForIscsi = false,
Identity = new AzureNative.ElasticSan.Inputs.IdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
{
VirtualNetworkRules = new[]
{
new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
{
VirtualNetworkResourceId = "string",
Action = "string",
},
},
},
ProtocolType = "string",
VolumeGroupName = "string",
});
example, err := elasticsan.NewVolumeGroup(ctx, "volumeGroupResource", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Encryption: pulumi.String("string"),
EncryptionProperties: &elasticsan.EncryptionPropertiesArgs{
EncryptionIdentity: &elasticsan.EncryptionIdentityArgs{
EncryptionUserAssignedIdentity: pulumi.String("string"),
},
KeyVaultProperties: &elasticsan.KeyVaultPropertiesArgs{
KeyName: pulumi.String("string"),
KeyVaultUri: pulumi.String("string"),
KeyVersion: pulumi.String("string"),
},
},
EnforceDataIntegrityCheckForIscsi: pulumi.Bool(false),
Identity: &elasticsan.IdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
NetworkAcls: &elasticsan.NetworkRuleSetArgs{
VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
&elasticsan.VirtualNetworkRuleArgs{
VirtualNetworkResourceId: pulumi.String("string"),
Action: pulumi.String("string"),
},
},
},
ProtocolType: pulumi.String("string"),
VolumeGroupName: pulumi.String("string"),
})
var volumeGroupResource = new com.pulumi.azurenative.elasticsan.VolumeGroup("volumeGroupResource", com.pulumi.azurenative.elasticsan.VolumeGroupArgs.builder()
.elasticSanName("string")
.resourceGroupName("string")
.encryption("string")
.encryptionProperties(EncryptionPropertiesArgs.builder()
.encryptionIdentity(EncryptionIdentityArgs.builder()
.encryptionUserAssignedIdentity("string")
.build())
.keyVaultProperties(KeyVaultPropertiesArgs.builder()
.keyName("string")
.keyVaultUri("string")
.keyVersion("string")
.build())
.build())
.enforceDataIntegrityCheckForIscsi(false)
.identity(IdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.networkAcls(NetworkRuleSetArgs.builder()
.virtualNetworkRules(VirtualNetworkRuleArgs.builder()
.virtualNetworkResourceId("string")
.action("string")
.build())
.build())
.protocolType("string")
.volumeGroupName("string")
.build());
volume_group_resource = azure_native.elasticsan.VolumeGroup("volumeGroupResource",
elastic_san_name="string",
resource_group_name="string",
encryption="string",
encryption_properties={
"encryption_identity": {
"encryption_user_assigned_identity": "string",
},
"key_vault_properties": {
"key_name": "string",
"key_vault_uri": "string",
"key_version": "string",
},
},
enforce_data_integrity_check_for_iscsi=False,
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
network_acls={
"virtual_network_rules": [{
"virtual_network_resource_id": "string",
"action": "string",
}],
},
protocol_type="string",
volume_group_name="string")
const volumeGroupResource = new azure_native.elasticsan.VolumeGroup("volumeGroupResource", {
elasticSanName: "string",
resourceGroupName: "string",
encryption: "string",
encryptionProperties: {
encryptionIdentity: {
encryptionUserAssignedIdentity: "string",
},
keyVaultProperties: {
keyName: "string",
keyVaultUri: "string",
keyVersion: "string",
},
},
enforceDataIntegrityCheckForIscsi: false,
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
networkAcls: {
virtualNetworkRules: [{
virtualNetworkResourceId: "string",
action: "string",
}],
},
protocolType: "string",
volumeGroupName: "string",
});
type: azure-native:elasticsan:VolumeGroup
properties:
elasticSanName: string
encryption: string
encryptionProperties:
encryptionIdentity:
encryptionUserAssignedIdentity: string
keyVaultProperties:
keyName: string
keyVaultUri: string
keyVersion: string
enforceDataIntegrityCheckForIscsi: false
identity:
type: string
userAssignedIdentities:
- string
networkAcls:
virtualNetworkRules:
- action: string
virtualNetworkResourceId: string
protocolType: string
resourceGroupName: string
volumeGroupName: string
VolumeGroup 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 VolumeGroup resource accepts the following input properties:
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
string | Pulumi.
Azure Native. Elastic San. Encryption Type - Type of encryption
- Encryption
Properties Pulumi.Azure Native. Elastic San. Inputs. Encryption Properties - Encryption Properties describing Key Vault and Identity information
- Enforce
Data boolIntegrity Check For Iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- Identity
Pulumi.
Azure Native. Elastic San. Inputs. Identity - The identity of the resource.
- Network
Acls Pulumi.Azure Native. Elastic San. Inputs. Network Rule Set - A collection of rules governing the accessibility from specific network locations.
- Protocol
Type string | Pulumi.Azure Native. Elastic San. Storage Target Type - Type of storage target
- Volume
Group stringName - The name of the VolumeGroup.
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Encryption
string | Encryption
Type - Type of encryption
- Encryption
Properties EncryptionProperties Args - Encryption Properties describing Key Vault and Identity information
- Enforce
Data boolIntegrity Check For Iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- Identity
Identity
Args - The identity of the resource.
- Network
Acls NetworkRule Set Args - A collection of rules governing the accessibility from specific network locations.
- Protocol
Type string | StorageTarget Type - Type of storage target
- Volume
Group stringName - The name of the VolumeGroup.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
String | Encryption
Type - Type of encryption
- encryption
Properties EncryptionProperties - Encryption Properties describing Key Vault and Identity information
- enforce
Data BooleanIntegrity Check For Iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- identity Identity
- The identity of the resource.
- network
Acls NetworkRule Set - A collection of rules governing the accessibility from specific network locations.
- protocol
Type String | StorageTarget Type - Type of storage target
- volume
Group StringName - The name of the VolumeGroup.
- elastic
San stringName - The name of the ElasticSan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- encryption
string | Encryption
Type - Type of encryption
- encryption
Properties EncryptionProperties - Encryption Properties describing Key Vault and Identity information
- enforce
Data booleanIntegrity Check For Iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- identity Identity
- The identity of the resource.
- network
Acls NetworkRule Set - A collection of rules governing the accessibility from specific network locations.
- protocol
Type string | StorageTarget Type - Type of storage target
- volume
Group stringName - The name of the VolumeGroup.
- elastic_
san_ strname - The name of the ElasticSan.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- encryption
str | Encryption
Type - Type of encryption
- encryption_
properties EncryptionProperties Args - Encryption Properties describing Key Vault and Identity information
- enforce_
data_ boolintegrity_ check_ for_ iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- identity
Identity
Args - The identity of the resource.
- network_
acls NetworkRule Set Args - A collection of rules governing the accessibility from specific network locations.
- protocol_
type str | StorageTarget Type - Type of storage target
- volume_
group_ strname - The name of the VolumeGroup.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- encryption
String | "Encryption
At Rest With Platform Key" | "Encryption At Rest With Customer Managed Key" - Type of encryption
- encryption
Properties Property Map - Encryption Properties describing Key Vault and Identity information
- enforce
Data BooleanIntegrity Check For Iscsi - A boolean indicating whether or not Data Integrity Check is enabled
- identity Property Map
- The identity of the resource.
- network
Acls Property Map - A collection of rules governing the accessibility from specific network locations.
- protocol
Type String | "Iscsi" | "None" - Type of storage target
- volume
Group StringName - The name of the VolumeGroup.
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeGroup 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.
- 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
- 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.
- 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
- 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.
- 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
- 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.
- 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
- 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.
- 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
- 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.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Action, ActionArgs
- Allow
- Allow
- Action
Allow - Allow
- Allow
- Allow
- Allow
- Allow
- ALLOW
- Allow
- "Allow"
- Allow
EncryptionIdentity, EncryptionIdentityArgs
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption_
user_ strassigned_ identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
EncryptionIdentityResponse, EncryptionIdentityResponseArgs
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption_
user_ strassigned_ identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the volume group.
EncryptionProperties, EncryptionPropertiesArgs
- Encryption
Identity Pulumi.Azure Native. Elastic San. Inputs. Encryption Identity - The identity to be used with service-side encryption at rest.
- Key
Vault Pulumi.Properties Azure Native. Elastic San. Inputs. Key Vault Properties - Properties provided by key vault.
- Encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- Key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- encryption_
identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key_
vault_ Keyproperties Vault Properties - Properties provided by key vault.
- encryption
Identity Property Map - The identity to be used with service-side encryption at rest.
- key
Vault Property MapProperties - Properties provided by key vault.
EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs
- Encryption
Identity Pulumi.Azure Native. Elastic San. Inputs. Encryption Identity Response - The identity to be used with service-side encryption at rest.
- Key
Vault Pulumi.Properties Azure Native. Elastic San. Inputs. Key Vault Properties Response - Properties provided by key vault.
- Encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- Key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- encryption_
identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key_
vault_ Keyproperties Vault Properties Response - Properties provided by key vault.
- encryption
Identity Property Map - The identity to be used with service-side encryption at rest.
- key
Vault Property MapProperties - Properties provided by key vault.
EncryptionType, EncryptionTypeArgs
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
At Rest With Customer Managed Key - EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
Type Encryption At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
Type Encryption At Rest With Customer Managed Key - EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
At Rest With Customer Managed Key - EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- Encryption
At Rest With Platform Key - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- Encryption
At Rest With Customer Managed Key - EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
- EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- ENCRYPTION_AT_REST_WITH_CUSTOMER_MANAGED_KEY
- EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
- "Encryption
At Rest With Platform Key" - EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
- "Encryption
At Rest With Customer Managed Key" - EncryptionAtRestWithCustomerManagedKeyVolume is encrypted at rest with Customer managed key that can be changed and revoked by a customer.
Identity, IdentityArgs
- Type
string | Pulumi.
Azure Native. Elastic San. Identity Type - The identity type.
- User
Assigned List<string>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- Type
string | Identity
Type - The identity type.
- User
Assigned []stringIdentities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- type
String | Identity
Type - The identity type.
- user
Assigned List<String>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- type
string | Identity
Type - The identity type.
- user
Assigned string[]Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- type
str | Identity
Type - The identity type.
- user_
assigned_ Sequence[str]identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- type
String | "None" | "System
Assigned" | "User Assigned" - The identity type.
- user
Assigned List<String>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Elastic San. Inputs. User Assigned Identity Response> - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this volume group. The key is the ARM resource identifier of the identity.
IdentityType, IdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Identity
Type None - None
- Identity
Type System Assigned - SystemAssigned
- Identity
Type User Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
KeyVaultProperties, KeyVaultPropertiesArgs
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
- key
Name string - The name of KeyVault key.
- key
Vault stringUri - The Uri of KeyVault.
- key
Version string - The version of KeyVault key.
- key_
name str - The name of KeyVault key.
- key_
vault_ struri - The Uri of KeyVault.
- key_
version str - The version of KeyVault key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Current
Versioned stringKey Expiration Timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- Current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- Last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- Current
Versioned stringKey Expiration Timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- Current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- Last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- current
Versioned StringKey Expiration Timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- current
Versioned StringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key StringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
- current
Versioned stringKey Expiration Timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name string - The name of KeyVault key.
- key
Vault stringUri - The Uri of KeyVault.
- key
Version string - The version of KeyVault key.
- current_
versioned_ strkey_ expiration_ timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- current_
versioned_ strkey_ identifier - The object identifier of the current versioned Key Vault Key in use.
- last_
key_ strrotation_ timestamp - Timestamp of last rotation of the Key Vault Key.
- key_
name str - The name of KeyVault key.
- key_
vault_ struri - The Uri of KeyVault.
- key_
version str - The version of KeyVault key.
- current
Versioned StringKey Expiration Timestamp - This is a read only property that represents the expiration time of the current version of the customer managed key used for encryption.
- current
Versioned StringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key StringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
NetworkRuleSet, NetworkRuleSetArgs
- Virtual
Network List<Pulumi.Rules Azure Native. Elastic San. Inputs. Virtual Network Rule> - The list of virtual network rules.
- Virtual
Network []VirtualRules Network Rule - The list of virtual network rules.
- virtual
Network List<VirtualRules Network Rule> - The list of virtual network rules.
- virtual
Network VirtualRules Network Rule[] - The list of virtual network rules.
- virtual_
network_ Sequence[Virtualrules Network Rule] - The list of virtual network rules.
- virtual
Network List<Property Map>Rules - The list of virtual network rules.
NetworkRuleSetResponse, NetworkRuleSetResponseArgs
- Virtual
Network List<Pulumi.Rules Azure Native. Elastic San. Inputs. Virtual Network Rule Response> - The list of virtual network rules.
- Virtual
Network []VirtualRules Network Rule Response - The list of virtual network rules.
- virtual
Network List<VirtualRules Network Rule Response> - The list of virtual network rules.
- virtual
Network VirtualRules Network Rule Response[] - The list of virtual network rules.
- virtual_
network_ Sequence[Virtualrules Network Rule Response] - The list of virtual network rules.
- virtual
Network List<Property Map>Rules - The list of virtual network rules.
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.
StorageTargetType, StorageTargetTypeArgs
- Iscsi
- Iscsi
- None
- None
- Storage
Target Type Iscsi - Iscsi
- Storage
Target Type None - None
- Iscsi
- Iscsi
- None
- None
- Iscsi
- Iscsi
- None
- None
- ISCSI
- Iscsi
- NONE
- None
- "Iscsi"
- Iscsi
- "None"
- None
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.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the identity.
- Principal
Id string - The principal ID of the identity.
- Client
Id string - The client ID of the identity.
- Principal
Id string - The principal ID of the identity.
- client
Id String - The client ID of the identity.
- principal
Id String - The principal ID of the identity.
- client
Id string - The client ID of the identity.
- principal
Id string - The principal ID of the identity.
- client_
id str - The client ID of the identity.
- principal_
id str - The principal ID of the identity.
- client
Id String - The client ID of the identity.
- principal
Id String - The principal ID of the identity.
VirtualNetworkRule, VirtualNetworkRuleArgs
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action
string | Pulumi.
Azure Native. Elastic San. Action - The action of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string | Action
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String | Action
- The action of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action string | Action
- The action of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action str | Action
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String | "Allow"
- The action of virtual network rule.
VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action string
- The action of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action str
- The action of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:elasticsan:VolumeGroup qymuqyvdlpshrna /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0