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