@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.25 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Retrieves an existing edge module resource with the given name.
*
* Uses Azure REST API version 2021-11-01-preview.
*/
export declare function getEdgeModule(args: GetEdgeModuleArgs, opts?: pulumi.InvokeOptions): Promise<GetEdgeModuleResult>;
export interface GetEdgeModuleArgs {
/**
* The Azure Video Analyzer account name.
*/
accountName: string;
/**
* The Edge Module name.
*/
edgeModuleName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* The representation of an edge module.
*/
export interface GetEdgeModuleResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Internal ID generated for the instance of the Video Analyzer edge module.
*/
readonly edgeModuleId: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.videoanalyzer.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Retrieves an existing edge module resource with the given name.
*
* Uses Azure REST API version 2021-11-01-preview.
*/
export declare function getEdgeModuleOutput(args: GetEdgeModuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEdgeModuleResult>;
export interface GetEdgeModuleOutputArgs {
/**
* The Azure Video Analyzer account name.
*/
accountName: pulumi.Input<string>;
/**
* The Edge Module name.
*/
edgeModuleName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}