import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Get the properties of an Agent * * Uses Azure REST API version 2026-01-01. */ export declare function getAgent(args: GetAgentArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAgentArgs { /** * The name of the Agent */ agentName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Site Reliability Engineer (SRE) Agent resource */ export interface GetAgentResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The managed service identities assigned to this resource. */ readonly identity?: types.outputs.ManagedServiceIdentityResponse; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * The resource-specific properties for this resource. */ readonly properties: types.outputs.AgentPropertiesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: types.outputs.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; } /** * Get the properties of an Agent * * Uses Azure REST API version 2026-01-01. */ export declare function getAgentOutput(args: GetAgentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAgentOutputArgs { /** * The name of the Agent */ agentName: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; }