import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
 * A Kubernetes cluster specialized for web workloads by Azure App Service
 *
 * Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2022-09-01.
 *
 * Other available API versions: 2021-01-01, 2021-01-15, 2021-02-01, 2021-03-01, 2022-03-01, 2022-09-01, 2023-01-01, 2023-12-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare class KubeEnvironment extends pulumi.CustomResource {
    /**
     * Get an existing KubeEnvironment 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 opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): KubeEnvironment;
    /** @internal */
    static readonly __pulumiType = "azure-native:web:KubeEnvironment";
    /**
     * Returns true if the given object is an instance of KubeEnvironment.  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 KubeEnvironment;
    readonly aksResourceID: pulumi.Output<string | undefined>;
    /**
     * Cluster configuration which enables the log daemon to export
     * app logs to a destination. Currently only "log-analytics" is
     * supported
     */
    readonly appLogsConfiguration: pulumi.Output<types.outputs.AppLogsConfigurationResponse | undefined>;
    /**
     * Cluster configuration which determines the ARC cluster
     * components types. Eg: Choosing between BuildService kind,
     * FrontEnd Service ArtifactsStorageType etc.
     */
    readonly arcConfiguration: pulumi.Output<types.outputs.ArcConfigurationResponse | undefined>;
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: pulumi.Output<string>;
    /**
     * Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration
     */
    readonly containerAppsConfiguration: pulumi.Output<types.outputs.ContainerAppsConfigurationResponse | undefined>;
    /**
     * Default Domain Name for the cluster
     */
    readonly defaultDomain: pulumi.Output<string>;
    /**
     * Any errors that occurred during deployment or deployment validation
     */
    readonly deploymentErrors: pulumi.Output<string>;
    /**
     * Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed
     */
    readonly environmentType: pulumi.Output<string | undefined>;
    /**
     * Extended Location.
     */
    readonly extendedLocation: pulumi.Output<types.outputs.ExtendedLocationResponse | undefined>;
    /**
     * Only visible within Vnet/Subnet
     */
    readonly internalLoadBalancerEnabled: pulumi.Output<boolean | undefined>;
    /**
     * Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
     */
    readonly kind: pulumi.Output<string | undefined>;
    /**
     * Resource Location.
     */
    readonly location: pulumi.Output<string>;
    /**
     * Resource Name.
     */
    readonly name: pulumi.Output<string>;
    /**
     * Provisioning state of the Kubernetes Environment.
     */
    readonly provisioningState: pulumi.Output<string>;
    /**
     * Static IP of the KubeEnvironment
     */
    readonly staticIp: pulumi.Output<string | undefined>;
    /**
     * Resource tags.
     */
    readonly tags: pulumi.Output<{
        [key: string]: string;
    } | undefined>;
    /**
     * Resource type.
     */
    readonly type: pulumi.Output<string>;
    /**
     * Create a KubeEnvironment 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: KubeEnvironmentArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a KubeEnvironment resource.
 */
export interface KubeEnvironmentArgs {
    aksResourceID?: pulumi.Input<string>;
    /**
     * Cluster configuration which enables the log daemon to export
     * app logs to a destination. Currently only "log-analytics" is
     * supported
     */
    appLogsConfiguration?: pulumi.Input<types.inputs.AppLogsConfigurationArgs>;
    /**
     * Cluster configuration which determines the ARC cluster
     * components types. Eg: Choosing between BuildService kind,
     * FrontEnd Service ArtifactsStorageType etc.
     */
    arcConfiguration?: pulumi.Input<types.inputs.ArcConfigurationArgs>;
    /**
     * Cluster configuration for Container Apps Environments to configure Dapr Instrumentation Key and VNET Configuration
     */
    containerAppsConfiguration?: pulumi.Input<types.inputs.ContainerAppsConfigurationArgs>;
    /**
     * Type of Kubernetes Environment. Only supported for Container App Environments with value as Managed
     */
    environmentType?: pulumi.Input<string>;
    /**
     * Extended Location.
     */
    extendedLocation?: pulumi.Input<types.inputs.ExtendedLocationArgs>;
    /**
     * Only visible within Vnet/Subnet
     */
    internalLoadBalancerEnabled?: pulumi.Input<boolean>;
    /**
     * Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
     */
    kind?: pulumi.Input<string>;
    /**
     * Resource Location.
     */
    location?: pulumi.Input<string>;
    /**
     * Name of the Kubernetes Environment.
     */
    name?: pulumi.Input<string>;
    /**
     * Name of the resource group to which the resource belongs.
     */
    resourceGroupName: pulumi.Input<string>;
    /**
     * Static IP of the KubeEnvironment
     */
    staticIp?: pulumi.Input<string>;
    /**
     * Resource tags.
     */
    tags?: pulumi.Input<{
        [key: string]: pulumi.Input<string>;
    }>;
}
