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

100 lines (99 loc) 3.32 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get information about the Runtime Environment * * Uses Azure REST API version 2023-05-15-preview. * * Other available API versions: 2024-10-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native automation [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getRuntimeEnvironment(args: GetRuntimeEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise<GetRuntimeEnvironmentResult>; export interface GetRuntimeEnvironmentArgs { /** * The name of the automation account. */ automationAccountName: string; /** * Name of an Azure Resource group. */ resourceGroupName: string; /** * The name of the Runtime Environment. */ runtimeEnvironmentName: string; } /** * Definition of the Runtime Environment type. */ export interface GetRuntimeEnvironmentResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * List of Default packages for Environment */ readonly defaultPackages?: { [key: string]: string; }; /** * Gets or sets the description. */ readonly description?: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * Language of Runtime Environment */ readonly language?: string; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.automation.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * Version of Language */ readonly version?: string; } /** * Get information about the Runtime Environment * * Uses Azure REST API version 2023-05-15-preview. * * Other available API versions: 2024-10-23. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native automation [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getRuntimeEnvironmentOutput(args: GetRuntimeEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRuntimeEnvironmentResult>; export interface GetRuntimeEnvironmentOutputArgs { /** * The name of the automation account. */ automationAccountName: pulumi.Input<string>; /** * Name of an Azure Resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the Runtime Environment. */ runtimeEnvironmentName: pulumi.Input<string>; }