Microsoft.StorSimple managers/bandwidthSettings 2017-06-01

Bicep resource definition

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

resource symbolicname 'Microsoft.StorSimple/managers/bandwidthSettings@2017-06-01' = {
  name: 'string'
  kind: 'Series8000'
  parent: resourceSymbolicName
  properties: {
    schedules: [
      {
        days: [
          'string'
        ]
        rateInMbps: int
        start: {
          hours: int
          minutes: int
          seconds: int
        }
        stop: {
          hours: int
          minutes: int
          seconds: int
        }
      }
    ]
  }
}

Property values

managers/bandwidthSettings

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: managers
properties The properties of the bandwidth setting. BandwidthRateSettingProperties (required)

BandwidthRateSettingProperties

Name Description Value
schedules The schedules. BandwidthSchedule[] (required)

BandwidthSchedule

Name Description Value
days The days of the week when this schedule is applicable. String array containing any of:
'Friday'
'Monday'
'Saturday'
'Sunday'
'Thursday'
'Tuesday'
'Wednesday' (required)
rateInMbps The rate in Mbps. int (required)
start The start time of the schedule. Time (required)
stop The stop time of the schedule. Time (required)

Time

Name Description Value
hours The hour. int (required)
minutes The minute. int (required)
seconds The second. int (required)

ARM template resource definition

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

{
  "type": "Microsoft.StorSimple/managers/bandwidthSettings",
  "apiVersion": "2017-06-01",
  "name": "string",
  "kind": "Series8000",
  "properties": {
    "schedules": [
      {
        "days": [ "string" ],
        "rateInMbps": "int",
        "start": {
          "hours": "int",
          "minutes": "int",
          "seconds": "int"
        },
        "stop": {
          "hours": "int",
          "minutes": "int",
          "seconds": "int"
        }
      }
    ]
  }
}

Property values

managers/bandwidthSettings

Name Description Value
type The resource type 'Microsoft.StorSimple/managers/bandwidthSettings'
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 bandwidth setting. BandwidthRateSettingProperties (required)

BandwidthRateSettingProperties

Name Description Value
schedules The schedules. BandwidthSchedule[] (required)

BandwidthSchedule

Name Description Value
days The days of the week when this schedule is applicable. String array containing any of:
'Friday'
'Monday'
'Saturday'
'Sunday'
'Thursday'
'Tuesday'
'Wednesday' (required)
rateInMbps The rate in Mbps. int (required)
start The start time of the schedule. Time (required)
stop The stop time of the schedule. Time (required)

Time

Name Description Value
hours The hour. int (required)
minutes The minute. int (required)
seconds The second. int (required)

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.StorSimple/managers/bandwidthSettings@2017-06-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      schedules = [
        {
          days = [
            "string"
          ]
          rateInMbps = int
          start = {
            hours = int
            minutes = int
            seconds = int
          }
          stop = {
            hours = int
            minutes = int
            seconds = int
          }
        }
      ]
    }
    kind = "Series8000"
  })
}

Property values

managers/bandwidthSettings

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

BandwidthRateSettingProperties

Name Description Value
schedules The schedules. BandwidthSchedule[] (required)

BandwidthSchedule

Name Description Value
days The days of the week when this schedule is applicable. String array containing any of:
"Friday"
"Monday"
"Saturday"
"Sunday"
"Thursday"
"Tuesday"
"Wednesday" (required)
rateInMbps The rate in Mbps. int (required)
start The start time of the schedule. Time (required)
stop The stop time of the schedule. Time (required)

Time

Name Description Value
hours The hour. int (required)
minutes The minute. int (required)
seconds The second. int (required)