import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Gvc extends pulumi.CustomResource { /** * Get an existing Gvc 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?: GvcState, opts?: pulumi.CustomResourceOptions): Gvc; /** * Returns true if the given object is an instance of Gvc. 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 Gvc; /** * The alias name of the GVC. */ readonly alias: pulumi.Output; readonly controlplaneTracing: pulumi.Output; /** * The ID, in GUID format, of the Global Virtual Cloud. */ readonly cplnId: pulumi.Output; /** * Description of the Global Virtual Cloud. */ readonly description: pulumi.Output; /** * Custom domain name used by associated workloads. * * @deprecated Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead. */ readonly domain: pulumi.Output; /** * Customizes the subdomain format for the canonical workload endpoint. `legacy` leaves it as '${workloadName}-${gvcName}.cpln.app'. `org` follows the scheme '${workloadName}-${gvcName}.${orgEndpointPrefix}.cpln.app'. */ readonly endpointNamingFormat: pulumi.Output; /** * Key-value array of resource environment variables. */ readonly env: pulumi.Output<{ [key: string]: string; } | undefined>; /** * KEDA configuration for the GVC. */ readonly keda: pulumi.Output; readonly lightstepTracing: pulumi.Output; /** * Dedicated load balancer configuration. */ readonly loadBalancer: pulumi.Output; /** * Per-location routing options for DNS geo routing. Allows configuring priority-based failover and latency adjustments per location. Each entry references a location listed in `locations`. */ readonly locationOptions: pulumi.Output; /** * A query that dynamically selects the locations making up the Global Virtual Cloud. */ readonly locationQuery: pulumi.Output; /** * A list of [locations](https://docs.controlplane.com/reference/location#current) making up the Global Virtual Cloud. */ readonly locations: pulumi.Output; /** * Name of the Global Virtual Cloud. */ readonly name: pulumi.Output; readonly otelTracing: pulumi.Output; /** * A list of [pull secret](https://docs.controlplane.com/reference/gvc#pull-secrets) names used to authenticate to any private image repository referenced by Workloads within the GVC. */ readonly pullSecrets: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; readonly sidecar: pulumi.Output; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * Create a Gvc 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?: GvcArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Gvc resources. */ export interface GvcState { /** * The alias name of the GVC. */ alias?: pulumi.Input; controlplaneTracing?: pulumi.Input; /** * The ID, in GUID format, of the Global Virtual Cloud. */ cplnId?: pulumi.Input; /** * Description of the Global Virtual Cloud. */ description?: pulumi.Input; /** * Custom domain name used by associated workloads. * * @deprecated Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead. */ domain?: pulumi.Input; /** * Customizes the subdomain format for the canonical workload endpoint. `legacy` leaves it as '${workloadName}-${gvcName}.cpln.app'. `org` follows the scheme '${workloadName}-${gvcName}.${orgEndpointPrefix}.cpln.app'. */ endpointNamingFormat?: pulumi.Input; /** * Key-value array of resource environment variables. */ env?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * KEDA configuration for the GVC. */ keda?: pulumi.Input; lightstepTracing?: pulumi.Input; /** * Dedicated load balancer configuration. */ loadBalancer?: pulumi.Input; /** * Per-location routing options for DNS geo routing. Allows configuring priority-based failover and latency adjustments per location. Each entry references a location listed in `locations`. */ locationOptions?: pulumi.Input[]>; /** * A query that dynamically selects the locations making up the Global Virtual Cloud. */ locationQuery?: pulumi.Input; /** * A list of [locations](https://docs.controlplane.com/reference/location#current) making up the Global Virtual Cloud. */ locations?: pulumi.Input[]>; /** * Name of the Global Virtual Cloud. */ name?: pulumi.Input; otelTracing?: pulumi.Input; /** * A list of [pull secret](https://docs.controlplane.com/reference/gvc#pull-secrets) names used to authenticate to any private image repository referenced by Workloads within the GVC. */ pullSecrets?: pulumi.Input[]>; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; sidecar?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Gvc resource. */ export interface GvcArgs { controlplaneTracing?: pulumi.Input; /** * Description of the Global Virtual Cloud. */ description?: pulumi.Input; /** * Custom domain name used by associated workloads. * * @deprecated Selecting a domain on a GVC will be deprecated in the future. Use the 'cpln_domain resource' instead. */ domain?: pulumi.Input; /** * Customizes the subdomain format for the canonical workload endpoint. `legacy` leaves it as '${workloadName}-${gvcName}.cpln.app'. `org` follows the scheme '${workloadName}-${gvcName}.${orgEndpointPrefix}.cpln.app'. */ endpointNamingFormat?: pulumi.Input; /** * Key-value array of resource environment variables. */ env?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * KEDA configuration for the GVC. */ keda?: pulumi.Input; lightstepTracing?: pulumi.Input; /** * Dedicated load balancer configuration. */ loadBalancer?: pulumi.Input; /** * Per-location routing options for DNS geo routing. Allows configuring priority-based failover and latency adjustments per location. Each entry references a location listed in `locations`. */ locationOptions?: pulumi.Input[]>; /** * A query that dynamically selects the locations making up the Global Virtual Cloud. */ locationQuery?: pulumi.Input; /** * A list of [locations](https://docs.controlplane.com/reference/location#current) making up the Global Virtual Cloud. */ locations?: pulumi.Input[]>; /** * Name of the Global Virtual Cloud. */ name?: pulumi.Input; otelTracing?: pulumi.Input; /** * A list of [pull secret](https://docs.controlplane.com/reference/gvc#pull-secrets) names used to authenticate to any private image repository referenced by Workloads within the GVC. */ pullSecrets?: pulumi.Input[]>; sidecar?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }