Microsoft.StorSimple managers

Bicep resource definition

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

resource symbolicname 'Microsoft.StorSimple/managers@2017-06-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  etag: 'string'
  properties: {
    cisIntrinsicSettings: {
      type: 'string'
    }
    provisioningState: 'string'
    sku: {
      name: 'Standard'
    }
  }
}

Property values

managers

Name Description Value
name The resource name string (required)

Character limit: 2-50

Valid characters:
Alphanumerics and hyphens.

Start with letter. End with alphanumeric.
location The geo location of the resource. string (required)
tags The tags attached to the resource. Dictionary of tag names and values. See Tags in templates
etag The etag of the manager. string
properties The properties of the StorSimple Manager. ManagerProperties

ManagerProperties

Name Description Value
cisIntrinsicSettings Represents the type of StorSimple Manager. ManagerIntrinsicSettings
provisioningState Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created. string
sku Specifies the Sku. ManagerSku

ManagerIntrinsicSettings

Name Description Value
type The type of StorSimple Manager. 'GardaV1'
'HelsinkiV1' (required)

ManagerSku

Name Description Value
name Refers to the sku name which should be "Standard" 'Standard' (required)

ARM template resource definition

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

{
  "type": "Microsoft.StorSimple/managers",
  "apiVersion": "2017-06-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "etag": "string",
  "properties": {
    "cisIntrinsicSettings": {
      "type": "string"
    },
    "provisioningState": "string",
    "sku": {
      "name": "Standard"
    }
  }
}

Property values

managers

Name Description Value
type The resource type 'Microsoft.StorSimple/managers'
apiVersion The resource api version '2017-06-01'
name The resource name string (required)

Character limit: 2-50

Valid characters:
Alphanumerics and hyphens.

Start with letter. End with alphanumeric.
location The geo location of the resource. string (required)
tags The tags attached to the resource. Dictionary of tag names and values. See Tags in templates
etag The etag of the manager. string
properties The properties of the StorSimple Manager. ManagerProperties

ManagerProperties

Name Description Value
cisIntrinsicSettings Represents the type of StorSimple Manager. ManagerIntrinsicSettings
provisioningState Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created. string
sku Specifies the Sku. ManagerSku

ManagerIntrinsicSettings

Name Description Value
type The type of StorSimple Manager. 'GardaV1'
'HelsinkiV1' (required)

ManagerSku

Name Description Value
name Refers to the sku name which should be "Standard" 'Standard' (required)

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StorSimple/managers@2017-06-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      cisIntrinsicSettings = {
        type = "string"
      }
      provisioningState = "string"
      sku = {
        name = "Standard"
      }
    }
    etag = "string"
  })
}

Property values

managers

Name Description Value
type The resource type "Microsoft.StorSimple/managers@2017-06-01"
name The resource name string (required)

Character limit: 2-50

Valid characters:
Alphanumerics and hyphens.

Start with letter. End with alphanumeric.
location The geo location of the resource. string (required)
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags The tags attached to the resource. Dictionary of tag names and values.
etag The etag of the manager. string
properties The properties of the StorSimple Manager. ManagerProperties

ManagerProperties

Name Description Value
cisIntrinsicSettings Represents the type of StorSimple Manager. ManagerIntrinsicSettings
provisioningState Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created. string
sku Specifies the Sku. ManagerSku

ManagerIntrinsicSettings

Name Description Value
type The type of StorSimple Manager. "GardaV1"
"HelsinkiV1" (required)

ManagerSku

Name Description Value
name Refers to the sku name which should be "Standard" "Standard" (required)