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

113 lines (112 loc) 2.56 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets a specific addon by name. * * Uses Azure REST API version 2023-07-01. */ export declare function getArcAddon(args: GetArcAddonArgs, opts?: pulumi.InvokeOptions): Promise<GetArcAddonResult>; export interface GetArcAddonArgs { /** * The addon name. */ addonName: string; /** * The device name. */ deviceName: string; /** * The resource group name. */ resourceGroupName: string; /** * The role name. */ roleName: string; } /** * Arc Addon. */ export interface GetArcAddonResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Host OS supported by the Arc addon. */ readonly hostPlatform: string; /** * Platform where the runtime is hosted. */ readonly hostPlatformType: string; /** * The path ID that uniquely identifies the object. */ readonly id: string; /** * Addon type. * Expected value is 'ArcForKubernetes'. */ readonly kind: "ArcForKubernetes"; /** * The object name. */ readonly name: string; /** * Addon Provisioning State */ readonly provisioningState: string; /** * Arc resource group name */ readonly resourceGroupName: string; /** * Arc resource location */ readonly resourceLocation: string; /** * Arc resource Name */ readonly resourceName: string; /** * Arc resource subscription Id */ readonly subscriptionId: string; /** * Metadata pertaining to creation and last modification of Addon */ readonly systemData: outputs.databoxedge.SystemDataResponse; /** * The hierarchical type of the object. */ readonly type: string; /** * Arc resource version */ readonly version: string; } /** * Gets a specific addon by name. * * Uses Azure REST API version 2023-07-01. */ export declare function getArcAddonOutput(args: GetArcAddonOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetArcAddonResult>; export interface GetArcAddonOutputArgs { /** * The addon name. */ addonName: pulumi.Input<string>; /** * The device name. */ deviceName: pulumi.Input<string>; /** * The resource group name. */ resourceGroupName: pulumi.Input<string>; /** * The role name. */ roleName: pulumi.Input<string>; }