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<pulumi.ID>, 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<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.169
     */
    readonly containerd: pulumi.Output<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.163
     */
    readonly crio: pulumi.Output<boolean>;
    /**
     * Platform: Docker and Kubernetes Status: Released Operating system: Linux
     */
    readonly docker: pulumi.Output<boolean>;
    /**
     * Platform: Docker Status: Early adopter Operating system: Windows Min agent version: 1.149
     */
    readonly dockerWindows: pulumi.Output<boolean>;
    /**
     * Platform: Cloud Foundry Status: Released Operating system: Linux Min agent version: 1.133
     */
    readonly garden: pulumi.Output<boolean>;
    /**
     * Platform: Podman Status: Released Operating system: Linux Min agent version: 1.267
     */
    readonly podman: pulumi.Output<boolean>;
    /**
     * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
     */
    readonly scope: pulumi.Output<string | undefined>;
    /**
     * Platform: Cloud Foundry Status: Early adopter Operating system: Windows Min agent version: 1.175
     */
    readonly winc: pulumi.Output<boolean>;
    /**
     * 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<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.169
     */
    containerd?: pulumi.Input<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.163
     */
    crio?: pulumi.Input<boolean>;
    /**
     * Platform: Docker and Kubernetes Status: Released Operating system: Linux
     */
    docker?: pulumi.Input<boolean>;
    /**
     * Platform: Docker Status: Early adopter Operating system: Windows Min agent version: 1.149
     */
    dockerWindows?: pulumi.Input<boolean>;
    /**
     * Platform: Cloud Foundry Status: Released Operating system: Linux Min agent version: 1.133
     */
    garden?: pulumi.Input<boolean>;
    /**
     * Platform: Podman Status: Released Operating system: Linux Min agent version: 1.267
     */
    podman?: pulumi.Input<boolean>;
    /**
     * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
    /**
     * Platform: Cloud Foundry Status: Early adopter Operating system: Windows Min agent version: 1.175
     */
    winc?: pulumi.Input<boolean>;
}
/**
 * The set of arguments for constructing a ContainerTechnology resource.
 */
export interface ContainerTechnologyArgs {
    /**
     * Platform: Cloud Foundry
     */
    boshProcessManager: pulumi.Input<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.169
     */
    containerd: pulumi.Input<boolean>;
    /**
     * Platform: Kubernetes Status: Released Operating system: Linux Min agent version: 1.163
     */
    crio: pulumi.Input<boolean>;
    /**
     * Platform: Docker and Kubernetes Status: Released Operating system: Linux
     */
    docker: pulumi.Input<boolean>;
    /**
     * Platform: Docker Status: Early adopter Operating system: Windows Min agent version: 1.149
     */
    dockerWindows: pulumi.Input<boolean>;
    /**
     * Platform: Cloud Foundry Status: Released Operating system: Linux Min agent version: 1.133
     */
    garden: pulumi.Input<boolean>;
    /**
     * Platform: Podman Status: Released Operating system: Linux Min agent version: 1.267
     */
    podman: pulumi.Input<boolean>;
    /**
     * The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
    /**
     * Platform: Cloud Foundry Status: Early adopter Operating system: Windows Min agent version: 1.175
     */
    winc: pulumi.Input<boolean>;
}
