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

75 lines (74 loc) 2.02 kB
import * as pulumi from "@pulumi/pulumi"; /** * Returns the properties of the specified access control record name. * * Uses Azure REST API version 2017-06-01. */ export declare function getAccessControlRecord(args: GetAccessControlRecordArgs, opts?: pulumi.InvokeOptions): Promise<GetAccessControlRecordResult>; export interface GetAccessControlRecordArgs { /** * Name of access control record to be fetched. */ accessControlRecordName: string; /** * The manager name */ managerName: string; /** * The resource group name */ resourceGroupName: string; } /** * The access control record. */ export interface GetAccessControlRecordResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The path ID that uniquely identifies the object. */ readonly id: string; /** * The iSCSI initiator name (IQN). */ readonly initiatorName: string; /** * The Kind of the object. Currently only Series8000 is supported */ readonly kind?: string; /** * The name of the object. */ readonly name: string; /** * The hierarchical type of the object. */ readonly type: string; /** * The number of volumes using the access control record. */ readonly volumeCount: number; } /** * Returns the properties of the specified access control record name. * * Uses Azure REST API version 2017-06-01. */ export declare function getAccessControlRecordOutput(args: GetAccessControlRecordOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAccessControlRecordResult>; export interface GetAccessControlRecordOutputArgs { /** * Name of access control record to be fetched. */ accessControlRecordName: pulumi.Input<string>; /** * The manager name */ managerName: pulumi.Input<string>; /** * The resource group name */ resourceGroupName: pulumi.Input<string>; }