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

82 lines (81 loc) 2.06 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns the properties of the specified manager name. * * Uses Azure REST API version 2017-06-01. */ export declare function getManager(args: GetManagerArgs, opts?: pulumi.InvokeOptions): Promise<GetManagerResult>; export interface GetManagerArgs { /** * The manager name */ managerName: string; /** * The resource group name */ resourceGroupName: string; } /** * The StorSimple Manager. */ export interface GetManagerResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Represents the type of StorSimple Manager. */ readonly cisIntrinsicSettings?: outputs.storsimple.ManagerIntrinsicSettingsResponse; /** * The etag of the manager. */ readonly etag?: string; /** * The resource ID. */ readonly id: string; /** * The geo location of the resource. */ readonly location: string; /** * The resource name. */ readonly name: string; /** * Specifies the state of the resource as it is getting provisioned. Value of "Succeeded" means the Manager was successfully created. */ readonly provisioningState?: string; /** * Specifies the Sku. */ readonly sku?: outputs.storsimple.ManagerSkuResponse; /** * The tags attached to the resource. */ readonly tags?: { [key: string]: string; }; /** * The resource type. */ readonly type: string; } /** * Returns the properties of the specified manager name. * * Uses Azure REST API version 2017-06-01. */ export declare function getManagerOutput(args: GetManagerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagerResult>; export interface GetManagerOutputArgs { /** * The manager name */ managerName: pulumi.Input<string>; /** * The resource group name */ resourceGroupName: pulumi.Input<string>; }