import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class ComputeContainerApp extends pulumi.CustomResource { /** * Get an existing ComputeContainerApp 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?: ComputeContainerAppState, opts?: pulumi.CustomResourceOptions): ComputeContainerApp; /** * Returns true if the given object is an instance of ComputeContainerApp. 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 ComputeContainerApp; /** * The maximum number of instances that will be provisioned per active region. */ readonly autoscalingMax: pulumi.Output; /** * The minimum number of instances that will be provisioned per active region. */ readonly autoscalingMin: pulumi.Output; /** * Defines a container for the application. */ readonly containers: pulumi.Output; /** * The name of the application. */ readonly name: pulumi.Output; /** * The regions that will be dynamically provisionable based on the user latency. */ readonly regionsAlloweds: pulumi.Output; /** * The maximum amount of regions to be deployed at any given time. */ readonly regionsMaxAllowed: pulumi.Output; /** * The regions that will be statically provisioned and will always be running and available to users. */ readonly regionsRequireds: pulumi.Output; readonly version: pulumi.Output; /** * Defines a persistent volume to be used by the application. */ readonly volumes: pulumi.Output; /** * Create a ComputeContainerApp 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: ComputeContainerAppArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ComputeContainerApp resources. */ export interface ComputeContainerAppState { /** * The maximum number of instances that will be provisioned per active region. */ autoscalingMax?: pulumi.Input; /** * The minimum number of instances that will be provisioned per active region. */ autoscalingMin?: pulumi.Input; /** * Defines a container for the application. */ containers?: pulumi.Input[]>; /** * The name of the application. */ name?: pulumi.Input; /** * The regions that will be dynamically provisionable based on the user latency. */ regionsAlloweds?: pulumi.Input[]>; /** * The maximum amount of regions to be deployed at any given time. */ regionsMaxAllowed?: pulumi.Input; /** * The regions that will be statically provisioned and will always be running and available to users. */ regionsRequireds?: pulumi.Input[]>; version?: pulumi.Input; /** * Defines a persistent volume to be used by the application. */ volumes?: pulumi.Input[]>; } /** * The set of arguments for constructing a ComputeContainerApp resource. */ export interface ComputeContainerAppArgs { /** * The maximum number of instances that will be provisioned per active region. */ autoscalingMax?: pulumi.Input; /** * The minimum number of instances that will be provisioned per active region. */ autoscalingMin?: pulumi.Input; /** * Defines a container for the application. */ containers?: pulumi.Input[]>; /** * The name of the application. */ name?: pulumi.Input; /** * The regions that will be dynamically provisionable based on the user latency. */ regionsAlloweds: pulumi.Input[]>; /** * The maximum amount of regions to be deployed at any given time. */ regionsMaxAllowed?: pulumi.Input; /** * The regions that will be statically provisioned and will always be running and available to users. */ regionsRequireds: pulumi.Input[]>; version?: pulumi.Input; /** * Defines a persistent volume to be used by the application. */ volumes?: pulumi.Input[]>; }