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

78 lines (77 loc) 1.94 kB
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>; }