import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Mk8s extends pulumi.CustomResource { /** * Get an existing Mk8s 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?: Mk8sState, opts?: pulumi.CustomResourceOptions): Mk8s; /** * Returns true if the given object is an instance of Mk8s. 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 Mk8s; readonly addOns: pulumi.Output; /** * The alias name of the Mk8s. */ readonly alias: pulumi.Output; readonly awsProvider: pulumi.Output; readonly azureProvider: pulumi.Output; /** * The ID, in GUID format, of the mk8s. */ readonly cplnId: pulumi.Output; /** * Description of the mk8s. */ readonly description: pulumi.Output; readonly digitalOceanProvider: pulumi.Output; readonly ephemeralProvider: pulumi.Output; /** * Allow-list. */ readonly firewalls: pulumi.Output; readonly gcpProvider: pulumi.Output; readonly genericProvider: pulumi.Output; readonly hetznerProvider: pulumi.Output; readonly lambdalabsProvider: pulumi.Output; readonly linodeProvider: pulumi.Output; /** * Name of the mk8s. */ readonly name: pulumi.Output; readonly oblivusProvider: pulumi.Output; readonly paperspaceProvider: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; /** * Status of the mk8s. */ readonly statuses: pulumi.Output; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; readonly tritonProvider: pulumi.Output; readonly version: pulumi.Output; /** * Create a Mk8s 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: Mk8sArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Mk8s resources. */ export interface Mk8sState { addOns?: pulumi.Input; /** * The alias name of the Mk8s. */ alias?: pulumi.Input; awsProvider?: pulumi.Input; azureProvider?: pulumi.Input; /** * The ID, in GUID format, of the mk8s. */ cplnId?: pulumi.Input; /** * Description of the mk8s. */ description?: pulumi.Input; digitalOceanProvider?: pulumi.Input; ephemeralProvider?: pulumi.Input; /** * Allow-list. */ firewalls?: pulumi.Input[]>; gcpProvider?: pulumi.Input; genericProvider?: pulumi.Input; hetznerProvider?: pulumi.Input; lambdalabsProvider?: pulumi.Input; linodeProvider?: pulumi.Input; /** * Name of the mk8s. */ name?: pulumi.Input; oblivusProvider?: pulumi.Input; paperspaceProvider?: pulumi.Input; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; /** * Status of the mk8s. */ statuses?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; tritonProvider?: pulumi.Input; version?: pulumi.Input; } /** * The set of arguments for constructing a Mk8s resource. */ export interface Mk8sArgs { addOns?: pulumi.Input; awsProvider?: pulumi.Input; azureProvider?: pulumi.Input; /** * Description of the mk8s. */ description?: pulumi.Input; digitalOceanProvider?: pulumi.Input; ephemeralProvider?: pulumi.Input; /** * Allow-list. */ firewalls?: pulumi.Input[]>; gcpProvider?: pulumi.Input; genericProvider?: pulumi.Input; hetznerProvider?: pulumi.Input; lambdalabsProvider?: pulumi.Input; linodeProvider?: pulumi.Input; /** * Name of the mk8s. */ name?: pulumi.Input; oblivusProvider?: pulumi.Input; paperspaceProvider?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; tritonProvider?: pulumi.Input; version: pulumi.Input; }