azure-native.storsimple.BandwidthSetting

Explore with Pulumi AI

The bandwidth setting. API Version: 2017-06-01.

Example Usage

BandwidthSettingsCreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var bandwidthSetting = new AzureNative.StorSimple.BandwidthSetting("bandwidthSetting", new()
    {
        BandwidthSettingName = "BWSForTest",
        ManagerName = "ManagerForSDKTest1",
        ResourceGroupName = "ResourceGroupForSDKTest",
        Schedules = new[]
        {
            new AzureNative.StorSimple.Inputs.BandwidthScheduleArgs
            {
                Days = new[]
                {
                    AzureNative.StorSimple.DayOfWeek.Saturday,
                    AzureNative.StorSimple.DayOfWeek.Sunday,
                },
                RateInMbps = 10,
                Start = new AzureNative.StorSimple.Inputs.TimeArgs
                {
                    Hours = 10,
                    Minutes = 0,
                    Seconds = 0,
                },
                Stop = new AzureNative.StorSimple.Inputs.TimeArgs
                {
                    Hours = 20,
                    Minutes = 0,
                    Seconds = 0,
                },
            },
        },
    });

});
package main

import (
	storsimple "github.com/pulumi/pulumi-azure-native-sdk/storsimple"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storsimple.NewBandwidthSetting(ctx, "bandwidthSetting", &storsimple.BandwidthSettingArgs{
			BandwidthSettingName: pulumi.String("BWSForTest"),
			ManagerName:          pulumi.String("ManagerForSDKTest1"),
			ResourceGroupName:    pulumi.String("ResourceGroupForSDKTest"),
			Schedules: []storsimple.BandwidthScheduleArgs{
				{
					Days: storsimple.DayOfWeekArray{
						storsimple.DayOfWeekSaturday,
						storsimple.DayOfWeekSunday,
					},
					RateInMbps: pulumi.Int(10),
					Start: {
						Hours:   pulumi.Int(10),
						Minutes: pulumi.Int(0),
						Seconds: pulumi.Int(0),
					},
					Stop: {
						Hours:   pulumi.Int(20),
						Minutes: pulumi.Int(0),
						Seconds: pulumi.Int(0),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storsimple.BandwidthSetting;
import com.pulumi.azurenative.storsimple.BandwidthSettingArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var bandwidthSetting = new BandwidthSetting("bandwidthSetting", BandwidthSettingArgs.builder()        
            .bandwidthSettingName("BWSForTest")
            .managerName("ManagerForSDKTest1")
            .resourceGroupName("ResourceGroupForSDKTest")
            .schedules(Map.ofEntries(
                Map.entry("days",                 
                    "Saturday",
                    "Sunday"),
                Map.entry("rateInMbps", 10),
                Map.entry("start", Map.ofEntries(
                    Map.entry("hours", 10),
                    Map.entry("minutes", 0),
                    Map.entry("seconds", 0)
                )),
                Map.entry("stop", Map.ofEntries(
                    Map.entry("hours", 20),
                    Map.entry("minutes", 0),
                    Map.entry("seconds", 0)
                ))
            ))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

bandwidth_setting = azure_native.storsimple.BandwidthSetting("bandwidthSetting",
    bandwidth_setting_name="BWSForTest",
    manager_name="ManagerForSDKTest1",
    resource_group_name="ResourceGroupForSDKTest",
    schedules=[{
        "days": [
            azure_native.storsimple.DayOfWeek.SATURDAY,
            azure_native.storsimple.DayOfWeek.SUNDAY,
        ],
        "rateInMbps": 10,
        "start": azure_native.storsimple.TimeArgs(
            hours=10,
            minutes=0,
            seconds=0,
        ),
        "stop": azure_native.storsimple.TimeArgs(
            hours=20,
            minutes=0,
            seconds=0,
        ),
    }])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const bandwidthSetting = new azure_native.storsimple.BandwidthSetting("bandwidthSetting", {
    bandwidthSettingName: "BWSForTest",
    managerName: "ManagerForSDKTest1",
    resourceGroupName: "ResourceGroupForSDKTest",
    schedules: [{
        days: [
            azure_native.storsimple.DayOfWeek.Saturday,
            azure_native.storsimple.DayOfWeek.Sunday,
        ],
        rateInMbps: 10,
        start: {
            hours: 10,
            minutes: 0,
            seconds: 0,
        },
        stop: {
            hours: 20,
            minutes: 0,
            seconds: 0,
        },
    }],
});
resources:
  bandwidthSetting:
    type: azure-native:storsimple:BandwidthSetting
    properties:
      bandwidthSettingName: BWSForTest
      managerName: ManagerForSDKTest1
      resourceGroupName: ResourceGroupForSDKTest
      schedules:
        - days:
            - Saturday
            - Sunday
          rateInMbps: 10
          start:
            hours: 10
            minutes: 0
            seconds: 0
          stop:
            hours: 20
            minutes: 0
            seconds: 0

Create BandwidthSetting Resource

new BandwidthSetting(name: string, args: BandwidthSettingArgs, opts?: CustomResourceOptions);
@overload
def BandwidthSetting(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     bandwidth_setting_name: Optional[str] = None,
                     kind: Optional[Kind] = None,
                     manager_name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     schedules: Optional[Sequence[BandwidthScheduleArgs]] = None)
@overload
def BandwidthSetting(resource_name: str,
                     args: BandwidthSettingArgs,
                     opts: Optional[ResourceOptions] = None)
func NewBandwidthSetting(ctx *Context, name string, args BandwidthSettingArgs, opts ...ResourceOption) (*BandwidthSetting, error)
public BandwidthSetting(string name, BandwidthSettingArgs args, CustomResourceOptions? opts = null)
public BandwidthSetting(String name, BandwidthSettingArgs args)
public BandwidthSetting(String name, BandwidthSettingArgs args, CustomResourceOptions options)
type: azure-native:storsimple:BandwidthSetting
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args BandwidthSettingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args BandwidthSettingArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args BandwidthSettingArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args BandwidthSettingArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args BandwidthSettingArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

BandwidthSetting Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The BandwidthSetting resource accepts the following input properties:

ManagerName string

The manager name

ResourceGroupName string

The resource group name

Schedules List<Pulumi.AzureNative.StorSimple.Inputs.BandwidthScheduleArgs>

The schedules.

BandwidthSettingName string

The bandwidth setting name.

Kind Pulumi.AzureNative.StorSimple.Kind

The Kind of the object. Currently only Series8000 is supported

ManagerName string

The manager name

ResourceGroupName string

The resource group name

Schedules []BandwidthScheduleArgs

The schedules.

BandwidthSettingName string

The bandwidth setting name.

Kind Kind

The Kind of the object. Currently only Series8000 is supported

managerName String

The manager name

resourceGroupName String

The resource group name

schedules List<BandwidthScheduleArgs>

The schedules.

bandwidthSettingName String

The bandwidth setting name.

kind Kind

The Kind of the object. Currently only Series8000 is supported

managerName string

The manager name

resourceGroupName string

The resource group name

schedules BandwidthScheduleArgs[]

The schedules.

bandwidthSettingName string

The bandwidth setting name.

kind Kind

The Kind of the object. Currently only Series8000 is supported

manager_name str

The manager name

resource_group_name str

The resource group name

schedules Sequence[BandwidthScheduleArgs]

The schedules.

bandwidth_setting_name str

The bandwidth setting name.

kind Kind

The Kind of the object. Currently only Series8000 is supported

managerName String

The manager name

resourceGroupName String

The resource group name

schedules List<Property Map>

The schedules.

bandwidthSettingName String

The bandwidth setting name.

kind "Series8000"

The Kind of the object. Currently only Series8000 is supported

Outputs

All input properties are implicitly available as output properties. Additionally, the BandwidthSetting resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the object.

Type string

The hierarchical type of the object.

VolumeCount int

The number of volumes that uses the bandwidth setting.

Id string

The provider-assigned unique ID for this managed resource.

Name string

The name of the object.

Type string

The hierarchical type of the object.

VolumeCount int

The number of volumes that uses the bandwidth setting.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the object.

type String

The hierarchical type of the object.

volumeCount Integer

The number of volumes that uses the bandwidth setting.

id string

The provider-assigned unique ID for this managed resource.

name string

The name of the object.

type string

The hierarchical type of the object.

volumeCount number

The number of volumes that uses the bandwidth setting.

id str

The provider-assigned unique ID for this managed resource.

name str

The name of the object.

type str

The hierarchical type of the object.

volume_count int

The number of volumes that uses the bandwidth setting.

id String

The provider-assigned unique ID for this managed resource.

name String

The name of the object.

type String

The hierarchical type of the object.

volumeCount Number

The number of volumes that uses the bandwidth setting.

Supporting Types

BandwidthSchedule

Days List<Pulumi.AzureNative.StorSimple.DayOfWeek>

The days of the week when this schedule is applicable.

RateInMbps int

The rate in Mbps.

Start Pulumi.AzureNative.StorSimple.Inputs.Time

The start time of the schedule.

Stop Pulumi.AzureNative.StorSimple.Inputs.Time

The stop time of the schedule.

Days []DayOfWeek

The days of the week when this schedule is applicable.

RateInMbps int

The rate in Mbps.

Start Time

The start time of the schedule.

Stop Time

The stop time of the schedule.

days List<DayOfWeek>

The days of the week when this schedule is applicable.

rateInMbps Integer

The rate in Mbps.

start Time

The start time of the schedule.

stop Time

The stop time of the schedule.

days DayOfWeek[]

The days of the week when this schedule is applicable.

rateInMbps number

The rate in Mbps.

start Time

The start time of the schedule.

stop Time

The stop time of the schedule.

days Sequence[DayOfWeek]

The days of the week when this schedule is applicable.

rate_in_mbps int

The rate in Mbps.

start Time

The start time of the schedule.

stop Time

The stop time of the schedule.

days List<"Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday">

The days of the week when this schedule is applicable.

rateInMbps Number

The rate in Mbps.

start Property Map

The start time of the schedule.

stop Property Map

The stop time of the schedule.

BandwidthScheduleResponse

Days List<string>

The days of the week when this schedule is applicable.

RateInMbps int

The rate in Mbps.

Start Pulumi.AzureNative.StorSimple.Inputs.TimeResponse

The start time of the schedule.

Stop Pulumi.AzureNative.StorSimple.Inputs.TimeResponse

The stop time of the schedule.

Days []string

The days of the week when this schedule is applicable.

RateInMbps int

The rate in Mbps.

Start TimeResponse

The start time of the schedule.

Stop TimeResponse

The stop time of the schedule.

days List<String>

The days of the week when this schedule is applicable.

rateInMbps Integer

The rate in Mbps.

start TimeResponse

The start time of the schedule.

stop TimeResponse

The stop time of the schedule.

days string[]

The days of the week when this schedule is applicable.

rateInMbps number

The rate in Mbps.

start TimeResponse

The start time of the schedule.

stop TimeResponse

The stop time of the schedule.

days Sequence[str]

The days of the week when this schedule is applicable.

rate_in_mbps int

The rate in Mbps.

start TimeResponse

The start time of the schedule.

stop TimeResponse

The stop time of the schedule.

days List<String>

The days of the week when this schedule is applicable.

rateInMbps Number

The rate in Mbps.

start Property Map

The start time of the schedule.

stop Property Map

The stop time of the schedule.

DayOfWeek

Sunday
Sunday
Monday
Monday
Tuesday
Tuesday
Wednesday
Wednesday
Thursday
Thursday
Friday
Friday
Saturday
Saturday
DayOfWeekSunday
Sunday
DayOfWeekMonday
Monday
DayOfWeekTuesday
Tuesday
DayOfWeekWednesday
Wednesday
DayOfWeekThursday
Thursday
DayOfWeekFriday
Friday
DayOfWeekSaturday
Saturday
Sunday
Sunday
Monday
Monday
Tuesday
Tuesday
Wednesday
Wednesday
Thursday
Thursday
Friday
Friday
Saturday
Saturday
Sunday
Sunday
Monday
Monday
Tuesday
Tuesday
Wednesday
Wednesday
Thursday
Thursday
Friday
Friday
Saturday
Saturday
SUNDAY
Sunday
MONDAY
Monday
TUESDAY
Tuesday
WEDNESDAY
Wednesday
THURSDAY
Thursday
FRIDAY
Friday
SATURDAY
Saturday
"Sunday"
Sunday
"Monday"
Monday
"Tuesday"
Tuesday
"Wednesday"
Wednesday
"Thursday"
Thursday
"Friday"
Friday
"Saturday"
Saturday

Kind

Series8000
Series8000
KindSeries8000
Series8000
Series8000
Series8000
Series8000
Series8000
SERIES8000
Series8000
"Series8000"
Series8000

Time

Hours int

The hour.

Minutes int

The minute.

Seconds int

The second.

Hours int

The hour.

Minutes int

The minute.

Seconds int

The second.

hours Integer

The hour.

minutes Integer

The minute.

seconds Integer

The second.

hours number

The hour.

minutes number

The minute.

seconds number

The second.

hours int

The hour.

minutes int

The minute.

seconds int

The second.

hours Number

The hour.

minutes Number

The minute.

seconds Number

The second.

TimeResponse

Hours int

The hour.

Minutes int

The minute.

Seconds int

The second.

Hours int

The hour.

Minutes int

The minute.

Seconds int

The second.

hours Integer

The hour.

minutes Integer

The minute.

seconds Integer

The second.

hours number

The hour.

minutes number

The minute.

seconds number

The second.

hours int

The hour.

minutes int

The minute.

seconds int

The second.

hours Number

The hour.

minutes Number

The minute.

seconds Number

The second.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:storsimple:BandwidthSetting BWSForTest /subscriptions/4385cf00-2d3a-425a-832f-f4285b1c9dce/resourceGroups/ResourceGroupForSDKTest/providers/Microsoft.StorSimple/managers/ManagerForSDKTest1/bandwidthSettings/BWSForTest 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0