import * as pulumi from "@pulumi/pulumi"; export declare class ContainerTechnology extends pulumi.CustomResource { /** * Get an existing ContainerTechnology 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?: ContainerTechnologyState, opts?: pulumi.CustomResourceOptions): ContainerTechnology; /** * Returns true if the given object is an instance of ContainerTechnology. 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 ContainerTechnology; /** * Platform: Cloud Foundry */ readonly boshProcessManager: pulumi.Output; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.169 */ readonly containerd: pulumi.Output; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.163 */ readonly crio: pulumi.Output; /** * Platform: Docker and Kubernetes * * Status: Released * * Operating system: Linux */ readonly docker: pulumi.Output; /** * Platform: Docker * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.149 */ readonly dockerWindows: pulumi.Output; /** * Platform: Cloud Foundry * * Status: Released * * Operating system: Linux * * Min agent version: 1.133 */ readonly garden: pulumi.Output; /** * Platform: Podman * * Status: Released * * Operating system: Linux * * Min agent version: 1.267 */ readonly podman: pulumi.Output; /** * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment. */ readonly scope: pulumi.Output; /** * Platform: Cloud Foundry * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.175 */ readonly winc: pulumi.Output; /** * Create a ContainerTechnology 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: ContainerTechnologyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ContainerTechnology resources. */ export interface ContainerTechnologyState { /** * Platform: Cloud Foundry */ boshProcessManager?: pulumi.Input; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.169 */ containerd?: pulumi.Input; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.163 */ crio?: pulumi.Input; /** * Platform: Docker and Kubernetes * * Status: Released * * Operating system: Linux */ docker?: pulumi.Input; /** * Platform: Docker * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.149 */ dockerWindows?: pulumi.Input; /** * Platform: Cloud Foundry * * Status: Released * * Operating system: Linux * * Min agent version: 1.133 */ garden?: pulumi.Input; /** * Platform: Podman * * Status: Released * * Operating system: Linux * * Min agent version: 1.267 */ podman?: pulumi.Input; /** * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; /** * Platform: Cloud Foundry * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.175 */ winc?: pulumi.Input; } /** * The set of arguments for constructing a ContainerTechnology resource. */ export interface ContainerTechnologyArgs { /** * Platform: Cloud Foundry */ boshProcessManager: pulumi.Input; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.169 */ containerd: pulumi.Input; /** * Platform: Kubernetes * * Status: Released * * Operating system: Linux * * Min agent version: 1.163 */ crio: pulumi.Input; /** * Platform: Docker and Kubernetes * * Status: Released * * Operating system: Linux */ docker: pulumi.Input; /** * Platform: Docker * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.149 */ dockerWindows: pulumi.Input; /** * Platform: Cloud Foundry * * Status: Released * * Operating system: Linux * * Min agent version: 1.133 */ garden: pulumi.Input; /** * Platform: Podman * * Status: Released * * Operating system: Linux * * Min agent version: 1.267 */ podman: pulumi.Input; /** * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; /** * Platform: Cloud Foundry * * Status: Early adopter * * Operating system: Windows * * Min agent version: 1.175 */ winc: pulumi.Input; }