@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.55 kB
TypeScript
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 getIoTAddon(args: GetIoTAddonArgs, opts?: pulumi.InvokeOptions): Promise<GetIoTAddonResult>;
export interface GetIoTAddonArgs {
/**
* The addon name.
*/
addonName: string;
/**
* The device name.
*/
deviceName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The role name.
*/
roleName: string;
}
/**
* IoT Addon.
*/
export interface GetIoTAddonResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Host OS supported by the IoT addon.
*/
readonly hostPlatform: string;
/**
* Platform where the runtime is hosted.
*/
readonly hostPlatformType: string;
/**
* The path ID that uniquely identifies the object.
*/
readonly id: string;
/**
* IoT device metadata to which appliance needs to be connected.
*/
readonly ioTDeviceDetails: outputs.databoxedge.IoTDeviceInfoResponse;
/**
* IoT edge device to which the IoT Addon needs to be configured.
*/
readonly ioTEdgeDeviceDetails: outputs.databoxedge.IoTDeviceInfoResponse;
/**
* Addon type.
* Expected value is 'IotEdge'.
*/
readonly kind: "IotEdge";
/**
* The object name.
*/
readonly name: string;
/**
* Addon Provisioning State
*/
readonly provisioningState: string;
/**
* Metadata pertaining to creation and last modification of Addon
*/
readonly systemData: outputs.databoxedge.SystemDataResponse;
/**
* The hierarchical type of the object.
*/
readonly type: string;
/**
* Version of IoT running on the appliance.
*/
readonly version: string;
}
/**
* Gets a specific addon by name.
*
* Uses Azure REST API version 2023-07-01.
*/
export declare function getIoTAddonOutput(args: GetIoTAddonOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIoTAddonResult>;
export interface GetIoTAddonOutputArgs {
/**
* 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>;
}