Microsoft.StorSimple managers/bandwidthSettings

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)