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

106 lines (105 loc) 3.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Returns the properties of a Linked Subscription resource. * * Uses Azure REST API version 2020-06-01-preview. */ export declare function getLinkedSubscription(args: GetLinkedSubscriptionArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkedSubscriptionResult>; export interface GetLinkedSubscriptionArgs { /** * Name of the Linked Subscription resource. */ linkedSubscriptionName: string; /** * Name of the resource group. */ resourceGroup: string; } /** * Linked Subscription information. */ export interface GetLinkedSubscriptionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The status of the remote management connection of the Azure Stack device. */ readonly deviceConnectionStatus: string; /** * The identifier of the Azure Stack device for remote management. */ readonly deviceId: string; /** * The connection state of the Azure Stack device. */ readonly deviceLinkState: string; /** * The object identifier associated with the Azure Stack device connecting to Azure. */ readonly deviceObjectId: string; /** * The entity tag used for optimistic concurrency when modifying the resource. */ readonly etag?: string; /** * ID of the resource. */ readonly id: string; /** * The kind of the resource. */ readonly kind: string; /** * The last remote management connection time for the Azure Stack device connected to the linked subscription resource. */ readonly lastConnectedTime: string; /** * The identifier associated with the device subscription. */ readonly linkedSubscriptionId?: string; /** * Location of the resource. */ readonly location: string; /** * Name of the resource. */ readonly name: string; /** * The identifier associated with the device registration. */ readonly registrationResourceId?: string; /** * Metadata pertaining to creation and last modification of the resource. */ readonly systemData: outputs.azurestack.SystemDataResponse; /** * Custom tags for the resource. */ readonly tags?: { [key: string]: string; }; /** * Type of Resource. */ readonly type: string; } /** * Returns the properties of a Linked Subscription resource. * * Uses Azure REST API version 2020-06-01-preview. */ export declare function getLinkedSubscriptionOutput(args: GetLinkedSubscriptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkedSubscriptionResult>; export interface GetLinkedSubscriptionOutputArgs { /** * Name of the Linked Subscription resource. */ linkedSubscriptionName: pulumi.Input<string>; /** * Name of the resource group. */ resourceGroup: pulumi.Input<string>; }