import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Get the properties of an Agent Space * * Uses Azure REST API version 2026-01-01. */ export declare function getAgentSpace(args: GetAgentSpaceArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetAgentSpaceArgs { /** * The name of the AgentSpace */ agentSpaceName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * SRE Agent Space resource */ export interface GetAgentSpaceResult { /** * 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.AgentSpacePropertiesResponse; /** * 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 Space * * Uses Azure REST API version 2026-01-01. */ export declare function getAgentSpaceOutput(args: GetAgentSpaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetAgentSpaceOutputArgs { /** * The name of the AgentSpace */ agentSpaceName: pulumi.Input; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input; }