import * as pulumi from "@pulumi/pulumi"; /** * > **Note:** This resource is applicable only for Spring Cloud Service with enterprise tier. * * Manages a Spring Cloud Application Live View. * * !> **Note:** Azure Spring Apps is now deprecated and will be retired on 2028-05-31 - as such the `azure.appplatform.SpringCloudApplicationLiveView` resource is deprecated and will be removed in a future major version of the AzureRM Provider. See https://aka.ms/asaretirement for more information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example", * location: "West Europe", * }); * const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", { * name: "example", * location: example.location, * resourceGroupName: example.name, * skuName: "E0", * }); * const exampleSpringCloudApplicationLiveView = new azure.appplatform.SpringCloudApplicationLiveView("example", { * name: "default", * springCloudServiceId: exampleSpringCloudService.id, * }); * ``` * * ## Import * * Spring Cloud Application Live Views can be imported using the `resource id`, e.g. */ export declare class SpringCloudApplicationLiveView extends pulumi.CustomResource { /** * Get an existing SpringCloudApplicationLiveView 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SpringCloudApplicationLiveViewState, opts?: pulumi.CustomResourceOptions): SpringCloudApplicationLiveView; /** * Returns true if the given object is an instance of SpringCloudApplicationLiveView. 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 SpringCloudApplicationLiveView; /** * The name which should be used for this Spring Cloud Application Live View. Changing this forces a new Spring Cloud Application Live View to be created. The only possible value is `default`. */ readonly name: pulumi.Output; /** * The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Application Live View to be created. */ readonly springCloudServiceId: pulumi.Output; /** * Create a SpringCloudApplicationLiveView 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: SpringCloudApplicationLiveViewArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SpringCloudApplicationLiveView resources. */ export interface SpringCloudApplicationLiveViewState { /** * The name which should be used for this Spring Cloud Application Live View. Changing this forces a new Spring Cloud Application Live View to be created. The only possible value is `default`. */ name?: pulumi.Input; /** * The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Application Live View to be created. */ springCloudServiceId?: pulumi.Input; } /** * The set of arguments for constructing a SpringCloudApplicationLiveView resource. */ export interface SpringCloudApplicationLiveViewArgs { /** * The name which should be used for this Spring Cloud Application Live View. Changing this forces a new Spring Cloud Application Live View to be created. The only possible value is `default`. */ name?: pulumi.Input; /** * The ID of the Spring Cloud Service. Changing this forces a new Spring Cloud Application Live View to be created. */ springCloudServiceId: pulumi.Input; }