UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

76 lines (75 loc) 2.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns the properties of the specified bandwidth setting name. * * Uses Azure REST API version 2017-06-01. */ export declare function getBandwidthSetting(args: GetBandwidthSettingArgs, opts?: pulumi.InvokeOptions): Promise<GetBandwidthSettingResult>; export interface GetBandwidthSettingArgs { /** * The name of bandwidth setting to be fetched. */ bandwidthSettingName: string; /** * The manager name */ managerName: string; /** * The resource group name */ resourceGroupName: string; } /** * The bandwidth setting. */ export interface GetBandwidthSettingResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The path ID that uniquely identifies the object. */ readonly id: string; /** * The Kind of the object. Currently only Series8000 is supported */ readonly kind?: string; /** * The name of the object. */ readonly name: string; /** * The schedules. */ readonly schedules: outputs.storsimple.BandwidthScheduleResponse[]; /** * The hierarchical type of the object. */ readonly type: string; /** * The number of volumes that uses the bandwidth setting. */ readonly volumeCount: number; } /** * Returns the properties of the specified bandwidth setting name. * * Uses Azure REST API version 2017-06-01. */ export declare function getBandwidthSettingOutput(args: GetBandwidthSettingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetBandwidthSettingResult>; export interface GetBandwidthSettingOutputArgs { /** * The name of bandwidth setting to be fetched. */ bandwidthSettingName: pulumi.Input<string>; /** * The manager name */ managerName: pulumi.Input<string>; /** * The resource group name */ resourceGroupName: pulumi.Input<string>; }