@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.71 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Client application details.
*
* Uses Azure REST API version 2024-10-01-preview.
*/
export declare class ClientApplication extends pulumi.CustomResource {
/**
* Get an existing ClientApplication resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ClientApplication;
/**
* Returns true if the given object is an instance of ClientApplication. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is ClientApplication;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* Client application description.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Client application name.
*/
readonly displayName: pulumi.Output<string>;
/**
* Microsoft EntraID Application ID (Client ID). This is the value that is used to identify the application when it is requesting access tokens from Microsoft EntraID. This property is read-only and will be set by the system when the application is created.
*/
readonly entraApplicationId: pulumi.Output<string>;
/**
* Tenant ID is a unique identifier (a GUID) for an organization directory in Microsoft’s cloud. It’s used to identify tenants across Microsoft services.
*/
readonly entraTenantId: pulumi.Output<string>;
/**
* The name of the resource
*/
readonly name: pulumi.Output<string>;
/**
* A resource identifier for the user who owns the application.
*/
readonly ownerId: pulumi.Output<string>;
/**
* Client application state. The value derives the state of an application based on the statuses of its associated ClientApplicationProductLinks.
*/
readonly state: pulumi.Output<string>;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: pulumi.Output<string>;
/**
* Create a ClientApplication resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ClientApplicationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a ClientApplication resource.
*/
export interface ClientApplicationArgs {
/**
* Client Application identifier. Must be unique in the current API Management service instance.
*/
clientApplicationId?: pulumi.Input<string>;
/**
* Client application description.
*/
description?: pulumi.Input<string>;
/**
* Client application name.
*/
displayName: pulumi.Input<string>;
/**
* A resource identifier for the user who owns the application.
*/
ownerId: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the API Management service.
*/
serviceName: pulumi.Input<string>;
}