Microsoft.StorSimple managers/devices/volumeContainers

Bicep resource definition

The managers/devices/volumeContainers 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 resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.StorSimple/managers/devices/volumeContainers@2017-06-01' = {
  name: 'string'
  kind: 'Series8000'
  parent: resourceSymbolicName
  properties: {
    bandWidthRateInMbps: int
    bandwidthSettingId: 'string'
    encryptionKey: {
      encryptionAlgorithm: 'string'
      encryptionCertThumbprint: 'string'
      value: 'string'
    }
    storageAccountCredentialId: 'string'
  }
}

Property values

managers/devices/volumeContainers

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: devices
properties The volume container properties. VolumeContainerProperties (required)

VolumeContainerProperties

Name Description Value
bandWidthRateInMbps The bandwidth-rate set on the volume container. int
bandwidthSettingId The ID of the bandwidth setting associated with the volume container. string
encryptionKey The key used to encrypt data in the volume container. It is required when property 'EncryptionStatus' is "Enabled". AsymmetricEncryptedSecret
storageAccountCredentialId The path ID of storage account associated with the volume container. string (required)

AsymmetricEncryptedSecret

Name Description Value
encryptionAlgorithm The algorithm used to encrypt "Value". 'AES256'
'None'
'RSAES_PKCS1_v_1_5' (required)
encryptionCertThumbprint Thumbprint certificate that was used to encrypt "Value". If the value in unencrypted, it will be null. string
value The value of the secret. string (required)

ARM template resource definition

The managers/devices/volumeContainers 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 resource, add the following JSON to your template.

{
  "type": "Microsoft.StorSimple/managers/devices/volumeContainers",
  "apiVersion": "2017-06-01",
  "name": "string",
  "kind": "Series8000",
  "properties": {
    "bandWidthRateInMbps": "int",
    "bandwidthSettingId": "string",
    "encryptionKey": {
      "encryptionAlgorithm": "string",
      "encryptionCertThumbprint": "string",
      "value": "string"
    },
    "storageAccountCredentialId": "string"
  }
}

Property values

managers/devices/volumeContainers

Name Description Value
type The resource type 'Microsoft.StorSimple/managers/devices/volumeContainers'
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 volume container properties. VolumeContainerProperties (required)

VolumeContainerProperties

Name Description Value
bandWidthRateInMbps The bandwidth-rate set on the volume container. int
bandwidthSettingId The ID of the bandwidth setting associated with the volume container. string
encryptionKey The key used to encrypt data in the volume container. It is required when property 'EncryptionStatus' is "Enabled". AsymmetricEncryptedSecret
storageAccountCredentialId The path ID of storage account associated with the volume container. string (required)

AsymmetricEncryptedSecret

Name Description Value
encryptionAlgorithm The algorithm used to encrypt "Value". 'AES256'
'None'
'RSAES_PKCS1_v_1_5' (required)
encryptionCertThumbprint Thumbprint certificate that was used to encrypt "Value". If the value in unencrypted, it will be null. string
value The value of the secret. string (required)

Terraform (AzAPI provider) resource definition

The managers/devices/volumeContainers 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 resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StorSimple/managers/devices/volumeContainers@2017-06-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      bandWidthRateInMbps = int
      bandwidthSettingId = "string"
      encryptionKey = {
        encryptionAlgorithm = "string"
        encryptionCertThumbprint = "string"
        value = "string"
      }
      storageAccountCredentialId = "string"
    }
    kind = "Series8000"
  })
}

Property values

managers/devices/volumeContainers

Name Description Value
type The resource type "Microsoft.StorSimple/managers/devices/volumeContainers@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: devices
kind The Kind of the object. Currently only Series8000 is supported "Series8000"
properties The volume container properties. VolumeContainerProperties (required)

VolumeContainerProperties

Name Description Value
bandWidthRateInMbps The bandwidth-rate set on the volume container. int
bandwidthSettingId The ID of the bandwidth setting associated with the volume container. string
encryptionKey The key used to encrypt data in the volume container. It is required when property 'EncryptionStatus' is "Enabled". AsymmetricEncryptedSecret
storageAccountCredentialId The path ID of storage account associated with the volume container. string (required)

AsymmetricEncryptedSecret

Name Description Value
encryptionAlgorithm The algorithm used to encrypt "Value". "AES256"
"None"
"RSAES_PKCS1_v_1_5" (required)
encryptionCertThumbprint Thumbprint certificate that was used to encrypt "Value". If the value in unencrypted, it will be null. string
value The value of the secret. string (required)