@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Returns all failover sets for a given device and their eligibility for participating in a failover. A failover set refers to a set of volume containers that need to be failed-over as a single unit to maintain data integrity.
*
* Uses Azure REST API version 2017-06-01.
*/
export declare function listDeviceFailoverSets(args: ListDeviceFailoverSetsArgs, opts?: pulumi.InvokeOptions): Promise<ListDeviceFailoverSetsResult>;
export interface ListDeviceFailoverSetsArgs {
/**
* The device name
*/
deviceName: string;
/**
* The manager name
*/
managerName: string;
/**
* The resource group name
*/
resourceGroupName: string;
}
/**
* The list of failover sets.
*/
export interface ListDeviceFailoverSetsResult {
/**
* The list of failover sets.
*/
readonly value?: outputs.storsimple.FailoverSetResponse[];
}
/**
* Returns all failover sets for a given device and their eligibility for participating in a failover. A failover set refers to a set of volume containers that need to be failed-over as a single unit to maintain data integrity.
*
* Uses Azure REST API version 2017-06-01.
*/
export declare function listDeviceFailoverSetsOutput(args: ListDeviceFailoverSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListDeviceFailoverSetsResult>;
export interface ListDeviceFailoverSetsOutputArgs {
/**
* The device name
*/
deviceName: pulumi.Input<string>;
/**
* The manager name
*/
managerName: pulumi.Input<string>;
/**
* The resource group name
*/
resourceGroupName: pulumi.Input<string>;
}