Microsoft.StorSimple managers/devices/volumeContainers/volumes

Bicep resource definition

The managers/devices/volumeContainers/volumes resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.StorSimple/managers/devices/volumeContainers/volumes resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.StorSimple/managers/devices/volumeContainers/volumes@2017-06-01' = {
  name: 'string'
  kind: 'Series8000'
  parent: resourceSymbolicName
  properties: {
    accessControlRecordIds: [
      'string'
    ]
    monitoringStatus: 'string'
    sizeInBytes: int
    volumeStatus: 'string'
    volumeType: 'string'
  }
}

Property values

managers/devices/volumeContainers/volumes

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
kind The Kind of the object. Currently only Series8000 is supported 'Series8000'
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: volumeContainers
properties The properties of the volume. VolumeProperties (required)

VolumeProperties

Name Description Value
accessControlRecordIds The IDs of the access control records, associated with the volume. string[] (required)
monitoringStatus The monitoring status of the volume. 'Disabled'
'Enabled' (required)
sizeInBytes The size of the volume in bytes. int (required)
volumeStatus The volume status. 'Offline'
'Online' (required)
volumeType The type of the volume. 'Archival'
'LocallyPinned'
'Tiered' (required)

ARM template resource definition

The managers/devices/volumeContainers/volumes resource type can be deployed to:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.StorSimple/managers/devices/volumeContainers/volumes resource, add the following JSON to your template.

{
  "type": "Microsoft.StorSimple/managers/devices/volumeContainers/volumes",
  "apiVersion": "2017-06-01",
  "name": "string",
  "kind": "Series8000",
  "properties": {
    "accessControlRecordIds": [ "string" ],
    "monitoringStatus": "string",
    "sizeInBytes": "int",
    "volumeStatus": "string",
    "volumeType": "string"
  }
}

Property values

managers/devices/volumeContainers/volumes

Name Description Value
type The resource type 'Microsoft.StorSimple/managers/devices/volumeContainers/volumes'
apiVersion The resource api version '2017-06-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
kind The Kind of the object. Currently only Series8000 is supported 'Series8000'
properties The properties of the volume. VolumeProperties (required)

VolumeProperties

Name Description Value
accessControlRecordIds The IDs of the access control records, associated with the volume. string[] (required)
monitoringStatus The monitoring status of the volume. 'Disabled'
'Enabled' (required)
sizeInBytes The size of the volume in bytes. int (required)
volumeStatus The volume status. 'Offline'
'Online' (required)
volumeType The type of the volume. 'Archival'
'LocallyPinned'
'Tiered' (required)

Terraform (AzAPI provider) resource definition

The managers/devices/volumeContainers/volumes resource type can be deployed to:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.StorSimple/managers/devices/volumeContainers/volumes resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StorSimple/managers/devices/volumeContainers/volumes@2017-06-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      accessControlRecordIds = [
        "string"
      ]
      monitoringStatus = "string"
      sizeInBytes = int
      volumeStatus = "string"
      volumeType = "string"
    }
    kind = "Series8000"
  })
}

Property values

managers/devices/volumeContainers/volumes

Name Description Value
type The resource type "Microsoft.StorSimple/managers/devices/volumeContainers/volumes@2017-06-01"
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: volumeContainers
kind The Kind of the object. Currently only Series8000 is supported "Series8000"
properties The properties of the volume. VolumeProperties (required)

VolumeProperties

Name Description Value
accessControlRecordIds The IDs of the access control records, associated with the volume. string[] (required)
monitoringStatus The monitoring status of the volume. "Disabled"
"Enabled" (required)
sizeInBytes The size of the volume in bytes. int (required)
volumeStatus The volume status. "Offline"
"Online" (required)
volumeType The type of the volume. "Archival"
"LocallyPinned"
"Tiered" (required)