import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DevopsDeployEnvironmentConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#cluster_id DevopsDeployEnvironment#cluster_id}
    */
    readonly clusterId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#defined_tags DevopsDeployEnvironment#defined_tags}
    */
    readonly definedTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#deploy_environment_type DevopsDeployEnvironment#deploy_environment_type}
    */
    readonly deployEnvironmentType: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#description DevopsDeployEnvironment#description}
    */
    readonly description?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#display_name DevopsDeployEnvironment#display_name}
    */
    readonly displayName?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#freeform_tags DevopsDeployEnvironment#freeform_tags}
    */
    readonly freeformTags?: {
        [key: string]: string;
    };
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#function_id DevopsDeployEnvironment#function_id}
    */
    readonly functionId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#id DevopsDeployEnvironment#id}
    *
    * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2.
    * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
    */
    readonly id?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#project_id DevopsDeployEnvironment#project_id}
    */
    readonly projectId: string;
    /**
    * compute_instance_group_selectors block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#compute_instance_group_selectors DevopsDeployEnvironment#compute_instance_group_selectors}
    */
    readonly computeInstanceGroupSelectors?: DevopsDeployEnvironmentComputeInstanceGroupSelectors;
    /**
    * network_channel block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#network_channel DevopsDeployEnvironment#network_channel}
    */
    readonly networkChannel?: DevopsDeployEnvironmentNetworkChannel;
    /**
    * timeouts block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#timeouts DevopsDeployEnvironment#timeouts}
    */
    readonly timeouts?: DevopsDeployEnvironmentTimeouts;
}
export interface DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#compute_instance_ids DevopsDeployEnvironment#compute_instance_ids}
    */
    readonly computeInstanceIds?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#query DevopsDeployEnvironment#query}
    */
    readonly query?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#region DevopsDeployEnvironment#region}
    */
    readonly region?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#selector_type DevopsDeployEnvironment#selector_type}
    */
    readonly selectorType: string;
}
export declare function devopsDeployEnvironmentComputeInstanceGroupSelectorsItemsToTerraform(struct?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems | cdktf.IResolvable): any;
export declare function devopsDeployEnvironmentComputeInstanceGroupSelectorsItemsToHclTerraform(struct?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems | cdktf.IResolvable): any;
export declare class DevopsDeployEnvironmentComputeInstanceGroupSelectorsItemsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    private resolvableValue?;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems | cdktf.IResolvable | undefined;
    set internalValue(value: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems | cdktf.IResolvable | undefined);
    private _computeInstanceIds?;
    get computeInstanceIds(): string[];
    set computeInstanceIds(value: string[]);
    resetComputeInstanceIds(): void;
    get computeInstanceIdsInput(): string[] | undefined;
    private _query?;
    get query(): string;
    set query(value: string);
    resetQuery(): void;
    get queryInput(): string | undefined;
    private _region?;
    get region(): string;
    set region(value: string);
    resetRegion(): void;
    get regionInput(): string | undefined;
    private _selectorType?;
    get selectorType(): string;
    set selectorType(value: string);
    get selectorTypeInput(): string | undefined;
}
export declare class DevopsDeployEnvironmentComputeInstanceGroupSelectorsItemsList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems[] | cdktf.IResolvable;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DevopsDeployEnvironmentComputeInstanceGroupSelectorsItemsOutputReference;
}
export interface DevopsDeployEnvironmentComputeInstanceGroupSelectors {
    /**
    * items block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#items DevopsDeployEnvironment#items}
    */
    readonly items?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems[] | cdktf.IResolvable;
}
export declare function devopsDeployEnvironmentComputeInstanceGroupSelectorsToTerraform(struct?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsOutputReference | DevopsDeployEnvironmentComputeInstanceGroupSelectors): any;
export declare function devopsDeployEnvironmentComputeInstanceGroupSelectorsToHclTerraform(struct?: DevopsDeployEnvironmentComputeInstanceGroupSelectorsOutputReference | DevopsDeployEnvironmentComputeInstanceGroupSelectors): any;
export declare class DevopsDeployEnvironmentComputeInstanceGroupSelectorsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): DevopsDeployEnvironmentComputeInstanceGroupSelectors | undefined;
    set internalValue(value: DevopsDeployEnvironmentComputeInstanceGroupSelectors | undefined);
    private _items;
    get items(): DevopsDeployEnvironmentComputeInstanceGroupSelectorsItemsList;
    putItems(value: DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems[] | cdktf.IResolvable): void;
    resetItems(): void;
    get itemsInput(): cdktf.IResolvable | DevopsDeployEnvironmentComputeInstanceGroupSelectorsItems[] | undefined;
}
export interface DevopsDeployEnvironmentNetworkChannel {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#network_channel_type DevopsDeployEnvironment#network_channel_type}
    */
    readonly networkChannelType: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#nsg_ids DevopsDeployEnvironment#nsg_ids}
    */
    readonly nsgIds?: string[];
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#subnet_id DevopsDeployEnvironment#subnet_id}
    */
    readonly subnetId: string;
}
export declare function devopsDeployEnvironmentNetworkChannelToTerraform(struct?: DevopsDeployEnvironmentNetworkChannelOutputReference | DevopsDeployEnvironmentNetworkChannel): any;
export declare function devopsDeployEnvironmentNetworkChannelToHclTerraform(struct?: DevopsDeployEnvironmentNetworkChannelOutputReference | DevopsDeployEnvironmentNetworkChannel): any;
export declare class DevopsDeployEnvironmentNetworkChannelOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): DevopsDeployEnvironmentNetworkChannel | undefined;
    set internalValue(value: DevopsDeployEnvironmentNetworkChannel | undefined);
    private _networkChannelType?;
    get networkChannelType(): string;
    set networkChannelType(value: string);
    get networkChannelTypeInput(): string | undefined;
    private _nsgIds?;
    get nsgIds(): string[];
    set nsgIds(value: string[]);
    resetNsgIds(): void;
    get nsgIdsInput(): string[] | undefined;
    private _subnetId?;
    get subnetId(): string;
    set subnetId(value: string);
    get subnetIdInput(): string | undefined;
}
export interface DevopsDeployEnvironmentTimeouts {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#create DevopsDeployEnvironment#create}
    */
    readonly create?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#delete DevopsDeployEnvironment#delete}
    */
    readonly delete?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#update DevopsDeployEnvironment#update}
    */
    readonly update?: string;
}
export declare function devopsDeployEnvironmentTimeoutsToTerraform(struct?: DevopsDeployEnvironmentTimeouts | cdktf.IResolvable): any;
export declare function devopsDeployEnvironmentTimeoutsToHclTerraform(struct?: DevopsDeployEnvironmentTimeouts | cdktf.IResolvable): any;
export declare class DevopsDeployEnvironmentTimeoutsOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    private resolvableValue?;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string);
    get internalValue(): DevopsDeployEnvironmentTimeouts | cdktf.IResolvable | undefined;
    set internalValue(value: DevopsDeployEnvironmentTimeouts | cdktf.IResolvable | undefined);
    private _create?;
    get create(): string;
    set create(value: string);
    resetCreate(): void;
    get createInput(): string | undefined;
    private _delete?;
    get delete(): string;
    set delete(value: string);
    resetDelete(): void;
    get deleteInput(): string | undefined;
    private _update?;
    get update(): string;
    set update(value: string);
    resetUpdate(): void;
    get updateInput(): string | undefined;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment oci_devops_deploy_environment}
*/
export declare class DevopsDeployEnvironment extends cdktf.TerraformResource {
    static readonly tfResourceType = "oci_devops_deploy_environment";
    /**
    * Generates CDKTF code for importing a DevopsDeployEnvironment resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DevopsDeployEnvironment to import
    * @param importFromId The id of the existing DevopsDeployEnvironment that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DevopsDeployEnvironment to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/devops_deploy_environment oci_devops_deploy_environment} Resource
    *
    * @param scope The scope in which to define this construct
    * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
    * @param options DevopsDeployEnvironmentConfig
    */
    constructor(scope: Construct, id: string, config: DevopsDeployEnvironmentConfig);
    private _clusterId?;
    get clusterId(): string;
    set clusterId(value: string);
    resetClusterId(): void;
    get clusterIdInput(): string | undefined;
    get compartmentId(): string;
    private _definedTags?;
    get definedTags(): {
        [key: string]: string;
    };
    set definedTags(value: {
        [key: string]: string;
    });
    resetDefinedTags(): void;
    get definedTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _deployEnvironmentType?;
    get deployEnvironmentType(): string;
    set deployEnvironmentType(value: string);
    get deployEnvironmentTypeInput(): string | undefined;
    private _description?;
    get description(): string;
    set description(value: string);
    resetDescription(): void;
    get descriptionInput(): string | undefined;
    private _displayName?;
    get displayName(): string;
    set displayName(value: string);
    resetDisplayName(): void;
    get displayNameInput(): string | undefined;
    private _freeformTags?;
    get freeformTags(): {
        [key: string]: string;
    };
    set freeformTags(value: {
        [key: string]: string;
    });
    resetFreeformTags(): void;
    get freeformTagsInput(): {
        [key: string]: string;
    } | undefined;
    private _functionId?;
    get functionId(): string;
    set functionId(value: string);
    resetFunctionId(): void;
    get functionIdInput(): string | undefined;
    private _id?;
    get id(): string;
    set id(value: string);
    resetId(): void;
    get idInput(): string | undefined;
    get lifecycleDetails(): string;
    private _projectId?;
    get projectId(): string;
    set projectId(value: string);
    get projectIdInput(): string | undefined;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get timeCreated(): string;
    get timeUpdated(): string;
    private _computeInstanceGroupSelectors;
    get computeInstanceGroupSelectors(): DevopsDeployEnvironmentComputeInstanceGroupSelectorsOutputReference;
    putComputeInstanceGroupSelectors(value: DevopsDeployEnvironmentComputeInstanceGroupSelectors): void;
    resetComputeInstanceGroupSelectors(): void;
    get computeInstanceGroupSelectorsInput(): DevopsDeployEnvironmentComputeInstanceGroupSelectors | undefined;
    private _networkChannel;
    get networkChannel(): DevopsDeployEnvironmentNetworkChannelOutputReference;
    putNetworkChannel(value: DevopsDeployEnvironmentNetworkChannel): void;
    resetNetworkChannel(): void;
    get networkChannelInput(): DevopsDeployEnvironmentNetworkChannel | undefined;
    private _timeouts;
    get timeouts(): DevopsDeployEnvironmentTimeoutsOutputReference;
    putTimeouts(value: DevopsDeployEnvironmentTimeouts): void;
    resetTimeouts(): void;
    get timeoutsInput(): cdktf.IResolvable | DevopsDeployEnvironmentTimeouts | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
