@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.94 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get service runner.
*
* Uses Azure REST API version 2018-09-15.
*/
export declare function getServiceRunner(args: GetServiceRunnerArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceRunnerResult>;
export interface GetServiceRunnerArgs {
/**
* The name of the lab.
*/
labName: string;
/**
* The name of the ServiceRunner
*/
name: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* A container for a managed identity to execute DevTest lab services.
*/
export interface GetServiceRunnerResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The identifier of the resource.
*/
readonly id: string;
/**
* The identity of the resource.
*/
readonly identity?: outputs.devtestlab.IdentityPropertiesResponse;
/**
* The location of the resource.
*/
readonly location?: string;
/**
* The name of the resource.
*/
readonly name: string;
/**
* The tags of the resource.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource.
*/
readonly type: string;
}
/**
* Get service runner.
*
* Uses Azure REST API version 2018-09-15.
*/
export declare function getServiceRunnerOutput(args: GetServiceRunnerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceRunnerResult>;
export interface GetServiceRunnerOutputArgs {
/**
* The name of the lab.
*/
labName: pulumi.Input<string>;
/**
* The name of the ServiceRunner
*/
name: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}