azure-native.elasticsan.Volume
Explore with Pulumi AI
Response for Volume 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
Volumes_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volume = new AzureNative.ElasticSan.Volume("volume", new()
{
CreationData = new AzureNative.ElasticSan.Inputs.SourceCreationDataArgs
{
CreateSource = AzureNative.ElasticSan.VolumeCreateOption.None,
SourceId = "ARM Id of Resource",
},
ElasticSanName = "elasticsanname",
ManagedBy = new AzureNative.ElasticSan.Inputs.ManagedByInfoArgs
{
ResourceId = "mtkeip",
},
ResourceGroupName = "resourcegroupname",
SizeGiB = 9,
VolumeGroupName = "volumegroupname",
VolumeName = "volumename",
});
});
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.NewVolume(ctx, "volume", &elasticsan.VolumeArgs{
CreationData: &elasticsan.SourceCreationDataArgs{
CreateSource: pulumi.String(elasticsan.VolumeCreateOptionNone),
SourceId: pulumi.String("ARM Id of Resource"),
},
ElasticSanName: pulumi.String("elasticsanname"),
ManagedBy: &elasticsan.ManagedByInfoArgs{
ResourceId: pulumi.String("mtkeip"),
},
ResourceGroupName: pulumi.String("resourcegroupname"),
SizeGiB: pulumi.Float64(9),
VolumeGroupName: pulumi.String("volumegroupname"),
VolumeName: pulumi.String("volumename"),
})
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.Volume;
import com.pulumi.azurenative.elasticsan.VolumeArgs;
import com.pulumi.azurenative.elasticsan.inputs.SourceCreationDataArgs;
import com.pulumi.azurenative.elasticsan.inputs.ManagedByInfoArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
.creationData(SourceCreationDataArgs.builder()
.createSource("None")
.sourceId("ARM Id of Resource")
.build())
.elasticSanName("elasticsanname")
.managedBy(ManagedByInfoArgs.builder()
.resourceId("mtkeip")
.build())
.resourceGroupName("resourcegroupname")
.sizeGiB(9.0)
.volumeGroupName("volumegroupname")
.volumeName("volumename")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volume = new azure_native.elasticsan.Volume("volume", {
creationData: {
createSource: azure_native.elasticsan.VolumeCreateOption.None,
sourceId: "ARM Id of Resource",
},
elasticSanName: "elasticsanname",
managedBy: {
resourceId: "mtkeip",
},
resourceGroupName: "resourcegroupname",
sizeGiB: 9,
volumeGroupName: "volumegroupname",
volumeName: "volumename",
});
import pulumi
import pulumi_azure_native as azure_native
volume = azure_native.elasticsan.Volume("volume",
creation_data={
"create_source": azure_native.elasticsan.VolumeCreateOption.NONE,
"source_id": "ARM Id of Resource",
},
elastic_san_name="elasticsanname",
managed_by={
"resource_id": "mtkeip",
},
resource_group_name="resourcegroupname",
size_gi_b=9,
volume_group_name="volumegroupname",
volume_name="volumename")
resources:
volume:
type: azure-native:elasticsan:Volume
properties:
creationData:
createSource: None
sourceId: ARM Id of Resource
elasticSanName: elasticsanname
managedBy:
resourceId: mtkeip
resourceGroupName: resourcegroupname
sizeGiB: 9
volumeGroupName: volumegroupname
volumeName: volumename
Volumes_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volume = new AzureNative.ElasticSan.Volume("volume", new()
{
ElasticSanName = "elasticsanname",
ResourceGroupName = "resourcegroupname",
SizeGiB = 9,
VolumeGroupName = "volumegroupname",
VolumeName = "volumename",
});
});
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.NewVolume(ctx, "volume", &elasticsan.VolumeArgs{
ElasticSanName: pulumi.String("elasticsanname"),
ResourceGroupName: pulumi.String("resourcegroupname"),
SizeGiB: pulumi.Float64(9),
VolumeGroupName: pulumi.String("volumegroupname"),
VolumeName: pulumi.String("volumename"),
})
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.Volume;
import com.pulumi.azurenative.elasticsan.VolumeArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
.elasticSanName("elasticsanname")
.resourceGroupName("resourcegroupname")
.sizeGiB(9.0)
.volumeGroupName("volumegroupname")
.volumeName("volumename")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volume = new azure_native.elasticsan.Volume("volume", {
elasticSanName: "elasticsanname",
resourceGroupName: "resourcegroupname",
sizeGiB: 9,
volumeGroupName: "volumegroupname",
volumeName: "volumename",
});
import pulumi
import pulumi_azure_native as azure_native
volume = azure_native.elasticsan.Volume("volume",
elastic_san_name="elasticsanname",
resource_group_name="resourcegroupname",
size_gi_b=9,
volume_group_name="volumegroupname",
volume_name="volumename")
resources:
volume:
type: azure-native:elasticsan:Volume
properties:
elasticSanName: elasticsanname
resourceGroupName: resourcegroupname
sizeGiB: 9
volumeGroupName: volumegroupname
volumeName: volumename
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
elastic_san_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
size_gi_b: Optional[float] = None,
volume_group_name: Optional[str] = None,
creation_data: Optional[SourceCreationDataArgs] = None,
managed_by: Optional[ManagedByInfoArgs] = None,
volume_name: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: azure-native:elasticsan:Volume
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 VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- 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 azure_nativeVolumeResource = new AzureNative.ElasticSan.Volume("azure-nativeVolumeResource", new()
{
ElasticSanName = "string",
ResourceGroupName = "string",
SizeGiB = 0,
VolumeGroupName = "string",
CreationData = new AzureNative.ElasticSan.Inputs.SourceCreationDataArgs
{
CreateSource = "string",
SourceId = "string",
},
ManagedBy = new AzureNative.ElasticSan.Inputs.ManagedByInfoArgs
{
ResourceId = "string",
},
VolumeName = "string",
});
example, err := elasticsan.NewVolume(ctx, "azure-nativeVolumeResource", &elasticsan.VolumeArgs{
ElasticSanName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SizeGiB: pulumi.Float64(0),
VolumeGroupName: pulumi.String("string"),
CreationData: &elasticsan.SourceCreationDataArgs{
CreateSource: pulumi.String("string"),
SourceId: pulumi.String("string"),
},
ManagedBy: &elasticsan.ManagedByInfoArgs{
ResourceId: pulumi.String("string"),
},
VolumeName: pulumi.String("string"),
})
var azure_nativeVolumeResource = new com.pulumi.azurenative.elasticsan.Volume("azure-nativeVolumeResource", com.pulumi.azurenative.elasticsan.VolumeArgs.builder()
.elasticSanName("string")
.resourceGroupName("string")
.sizeGiB(0)
.volumeGroupName("string")
.creationData(SourceCreationDataArgs.builder()
.createSource("string")
.sourceId("string")
.build())
.managedBy(ManagedByInfoArgs.builder()
.resourceId("string")
.build())
.volumeName("string")
.build());
azure_native_volume_resource = azure_native.elasticsan.Volume("azure-nativeVolumeResource",
elastic_san_name="string",
resource_group_name="string",
size_gi_b=0,
volume_group_name="string",
creation_data={
"create_source": "string",
"source_id": "string",
},
managed_by={
"resource_id": "string",
},
volume_name="string")
const azure_nativeVolumeResource = new azure_native.elasticsan.Volume("azure-nativeVolumeResource", {
elasticSanName: "string",
resourceGroupName: "string",
sizeGiB: 0,
volumeGroupName: "string",
creationData: {
createSource: "string",
sourceId: "string",
},
managedBy: {
resourceId: "string",
},
volumeName: "string",
});
type: azure-native:elasticsan:Volume
properties:
creationData:
createSource: string
sourceId: string
elasticSanName: string
managedBy:
resourceId: string
resourceGroupName: string
sizeGiB: 0
volumeGroupName: string
volumeName: string
Volume 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 Volume 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.
- Size
Gi doubleB - Volume size.
- Volume
Group stringName - The name of the VolumeGroup.
- Creation
Data Pulumi.Azure Native. Elastic San. Inputs. Source Creation Data - State of the operation on the resource.
- Managed
By Pulumi.Azure Native. Elastic San. Inputs. Managed By Info - Parent resource information.
- Volume
Name string - The name of the Volume.
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Size
Gi float64B - Volume size.
- Volume
Group stringName - The name of the VolumeGroup.
- Creation
Data SourceCreation Data Args - State of the operation on the resource.
- Managed
By ManagedBy Info Args - Parent resource information.
- Volume
Name string - The name of the Volume.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- size
Gi DoubleB - Volume size.
- volume
Group StringName - The name of the VolumeGroup.
- creation
Data SourceCreation Data - State of the operation on the resource.
- managed
By ManagedBy Info - Parent resource information.
- volume
Name String - The name of the Volume.
- elastic
San stringName - The name of the ElasticSan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- size
Gi numberB - Volume size.
- volume
Group stringName - The name of the VolumeGroup.
- creation
Data SourceCreation Data - State of the operation on the resource.
- managed
By ManagedBy Info - Parent resource information.
- volume
Name string - The name of the Volume.
- elastic_
san_ strname - The name of the ElasticSan.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- size_
gi_ floatb - Volume size.
- volume_
group_ strname - The name of the VolumeGroup.
- creation_
data SourceCreation Data Args - State of the operation on the resource.
- managed_
by ManagedBy Info Args - Parent resource information.
- volume_
name str - The name of the Volume.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- size
Gi NumberB - Volume size.
- volume
Group StringName - The name of the VolumeGroup.
- creation
Data Property Map - State of the operation on the resource.
- managed
By Property Map - Parent resource information.
- volume
Name String - The name of the Volume.
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume 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
- Provisioning
State string - State of the operation on the resource.
- Storage
Target Pulumi.Azure Native. Elastic San. Outputs. Iscsi Target Info Response - Storage target information
- 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"
- Volume
Id string - Unique Id of the volume in GUID format
- 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
- Provisioning
State string - State of the operation on the resource.
- Storage
Target IscsiTarget Info Response - Storage target information
- 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"
- Volume
Id string - Unique Id of the volume in GUID format
- 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
- provisioning
State String - State of the operation on the resource.
- storage
Target IscsiTarget Info Response - Storage target information
- 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"
- volume
Id String - Unique Id of the volume in GUID format
- 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
- provisioning
State string - State of the operation on the resource.
- storage
Target IscsiTarget Info Response - Storage target information
- 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"
- volume
Id string - Unique Id of the volume in GUID format
- 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
- provisioning_
state str - State of the operation on the resource.
- storage_
target IscsiTarget Info Response - Storage target information
- 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"
- volume_
id str - Unique Id of the volume in GUID format
- 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
- provisioning
State String - State of the operation on the resource.
- storage
Target Property Map - Storage target information
- 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"
- volume
Id String - Unique Id of the volume in GUID format
Supporting Types
IscsiTargetInfoResponse, IscsiTargetInfoResponseArgs
- Provisioning
State string - State of the operation on the resource.
- Target
Iqn string - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- Target
Portal stringHostname - iSCSI Target Portal Host Name
- Target
Portal intPort - iSCSI Target Portal Port
- Status string
- Operational status of the iSCSI Target.
- Provisioning
State string - State of the operation on the resource.
- Target
Iqn string - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- Target
Portal stringHostname - iSCSI Target Portal Host Name
- Target
Portal intPort - iSCSI Target Portal Port
- Status string
- Operational status of the iSCSI Target.
- provisioning
State String - State of the operation on the resource.
- target
Iqn String - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- target
Portal StringHostname - iSCSI Target Portal Host Name
- target
Portal IntegerPort - iSCSI Target Portal Port
- status String
- Operational status of the iSCSI Target.
- provisioning
State string - State of the operation on the resource.
- target
Iqn string - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- target
Portal stringHostname - iSCSI Target Portal Host Name
- target
Portal numberPort - iSCSI Target Portal Port
- status string
- Operational status of the iSCSI Target.
- provisioning_
state str - State of the operation on the resource.
- target_
iqn str - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- target_
portal_ strhostname - iSCSI Target Portal Host Name
- target_
portal_ intport - iSCSI Target Portal Port
- status str
- Operational status of the iSCSI Target.
- provisioning
State String - State of the operation on the resource.
- target
Iqn String - iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
- target
Portal StringHostname - iSCSI Target Portal Host Name
- target
Portal NumberPort - iSCSI Target Portal Port
- status String
- Operational status of the iSCSI Target.
ManagedByInfo, ManagedByInfoArgs
- Resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- Resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id String - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource_
id str - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id String - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
ManagedByInfoResponse, ManagedByInfoResponseArgs
- Resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- Resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id String - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id string - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource_
id str - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
- resource
Id String - Resource ID of the resource managing the volume, this is a restricted field and can only be set for internal use.
SourceCreationData, SourceCreationDataArgs
- Create
Source string | Pulumi.Azure Native. Elastic San. Volume Create Option - This enumerates the possible sources of a volume creation.
- Source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Create
Source string | VolumeCreate Option - This enumerates the possible sources of a volume creation.
- Source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source String | VolumeCreate Option - This enumerates the possible sources of a volume creation.
- source
Id String - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source string | VolumeCreate Option - This enumerates the possible sources of a volume creation.
- source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create_
source str | VolumeCreate Option - This enumerates the possible sources of a volume creation.
- source_
id str - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source String | "None" | "VolumeSnapshot" | "Disk Snapshot" | "Disk" | "Disk Restore Point" - This enumerates the possible sources of a volume creation.
- source
Id String - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
SourceCreationDataResponse, SourceCreationDataResponseArgs
- Create
Source string - This enumerates the possible sources of a volume creation.
- Source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- Create
Source string - This enumerates the possible sources of a volume creation.
- Source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source String - This enumerates the possible sources of a volume creation.
- source
Id String - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source string - This enumerates the possible sources of a volume creation.
- source
Id string - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create_
source str - This enumerates the possible sources of a volume creation.
- source_
id str - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
- create
Source String - This enumerates the possible sources of a volume creation.
- source
Id String - Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
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.
VolumeCreateOption, VolumeCreateOptionArgs
- None
- None
- Volume
Snapshot - VolumeSnapshot
- Disk
Snapshot - DiskSnapshot
- Disk
- Disk
- Disk
Restore Point - DiskRestorePoint
- Volume
Create Option None - None
- Volume
Create Option Volume Snapshot - VolumeSnapshot
- Volume
Create Option Disk Snapshot - DiskSnapshot
- Volume
Create Option Disk - Disk
- Volume
Create Option Disk Restore Point - DiskRestorePoint
- None
- None
- Volume
Snapshot - VolumeSnapshot
- Disk
Snapshot - DiskSnapshot
- Disk
- Disk
- Disk
Restore Point - DiskRestorePoint
- None
- None
- Volume
Snapshot - VolumeSnapshot
- Disk
Snapshot - DiskSnapshot
- Disk
- Disk
- Disk
Restore Point - DiskRestorePoint
- NONE
- None
- VOLUME_SNAPSHOT
- VolumeSnapshot
- DISK_SNAPSHOT
- DiskSnapshot
- DISK
- Disk
- DISK_RESTORE_POINT
- DiskRestorePoint
- "None"
- None
- "Volume
Snapshot" - VolumeSnapshot
- "Disk
Snapshot" - DiskSnapshot
- "Disk"
- Disk
- "Disk
Restore Point" - DiskRestorePoint
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:elasticsan:Volume o /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0