@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a ApplicationResource
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getApplicationResource(args: GetApplicationResourceArgs, opts?: pulumi.InvokeOptions): Promise<GetApplicationResourceResult>;
export interface GetApplicationResourceArgs {
/**
* The name of the Application
*/
applicationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the application resource.
*/
resourceName: string;
/**
* The name of the space
*/
spaceName: string;
}
/**
* A resource under application.
*/
export interface GetApplicationResourceResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: 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;
/**
* The status of the last operation.
*/
readonly provisioningState: string;
/**
* The Arm id of the application resource.
*/
readonly resourceId: string;
/**
* The kind of the application resource.
*/
readonly resourceKind?: string;
/**
* The type of the application resource.
*/
readonly resourceType: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.integrationspaces.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a ApplicationResource
*
* Uses Azure REST API version 2023-11-14-preview.
*/
export declare function getApplicationResourceOutput(args: GetApplicationResourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplicationResourceResult>;
export interface GetApplicationResourceOutputArgs {
/**
* The name of the Application
*/
applicationName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the application resource.
*/
resourceName: pulumi.Input<string>;
/**
* The name of the space
*/
spaceName: pulumi.Input<string>;
}