import * as pulumi from "@pulumi/pulumi"; /** * Manages an Active Azure Spring Cloud Deployment. * * !> **Note:** Azure Spring Apps is now deprecated and will be retired on 2028-05-31 - as such the `azure.appplatform.SpringCloudActiveDeployment` 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-resources", * location: "West Europe", * }); * const exampleSpringCloudService = new azure.appplatform.SpringCloudService("example", { * name: "example-springcloud", * resourceGroupName: example.name, * location: example.location, * }); * const exampleSpringCloudApp = new azure.appplatform.SpringCloudApp("example", { * name: "example-springcloudapp", * resourceGroupName: example.name, * serviceName: exampleSpringCloudService.name, * identity: { * type: "SystemAssigned", * }, * }); * const exampleSpringCloudJavaDeployment = new azure.appplatform.SpringCloudJavaDeployment("example", { * name: "deploy1", * springCloudAppId: exampleSpringCloudApp.id, * instanceCount: 2, * jvmOptions: "-XX:+PrintGC", * runtimeVersion: "Java_11", * quota: { * cpu: "2", * memory: "4Gi", * }, * environmentVariables: { * Env: "Staging", * }, * }); * const exampleSpringCloudActiveDeployment = new azure.appplatform.SpringCloudActiveDeployment("example", { * springCloudAppId: exampleSpringCloudApp.id, * deploymentName: exampleSpringCloudJavaDeployment.name, * }); * ``` * * ## Import * * Spring Cloud Active Deployment can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:appplatform/springCloudActiveDeployment:SpringCloudActiveDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroup1/providers/Microsoft.AppPlatform/spring/service1/apps/app1 * ``` */ export declare class SpringCloudActiveDeployment extends pulumi.CustomResource { /** * Get an existing SpringCloudActiveDeployment 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?: SpringCloudActiveDeploymentState, opts?: pulumi.CustomResourceOptions): SpringCloudActiveDeployment; /** * Returns true if the given object is an instance of SpringCloudActiveDeployment. 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 SpringCloudActiveDeployment; /** * Specifies the name of Spring Cloud Deployment which is going to be active. */ readonly deploymentName: pulumi.Output; /** * Specifies the id of the Spring Cloud Application. Changing this forces a new resource to be created. */ readonly springCloudAppId: pulumi.Output; /** * Create a SpringCloudActiveDeployment 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: SpringCloudActiveDeploymentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SpringCloudActiveDeployment resources. */ export interface SpringCloudActiveDeploymentState { /** * Specifies the name of Spring Cloud Deployment which is going to be active. */ deploymentName?: pulumi.Input; /** * Specifies the id of the Spring Cloud Application. Changing this forces a new resource to be created. */ springCloudAppId?: pulumi.Input; } /** * The set of arguments for constructing a SpringCloudActiveDeployment resource. */ export interface SpringCloudActiveDeploymentArgs { /** * Specifies the name of Spring Cloud Deployment which is going to be active. */ deploymentName: pulumi.Input; /** * Specifies the id of the Spring Cloud Application. Changing this forces a new resource to be created. */ springCloudAppId: pulumi.Input; }