@pulumi/azure-native
Version: 
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.04 kB
TypeScript
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>;
}