import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataYandexGitlabInstanceConfig extends cdktf.TerraformMetaArguments { /** * Approval rules configuration. One of: NONE, BASIC, STANDARD, ADVANCED. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#approval_rules_id DataYandexGitlabInstance#approval_rules_id} */ readonly approvalRulesId?: string; /** * Approval rules token. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#approval_rules_token DataYandexGitlabInstance#approval_rules_token} */ readonly approvalRulesToken?: string; /** * The `true` value means that resource is protected from accidental deletion. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#deletion_protection DataYandexGitlabInstance#deletion_protection} */ readonly deletionProtection?: boolean | cdktf.IResolvable; /** * The resource description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#description DataYandexGitlabInstance#description} */ readonly description?: string; /** * The folder identifier that resource belongs to. If it is not provided, the default provider `folder-id` is used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#folder_id DataYandexGitlabInstance#folder_id} */ readonly folderId?: string; /** * The resource identifier. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#id DataYandexGitlabInstance#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; /** * A set of key/value label pairs which assigned to resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#labels DataYandexGitlabInstance#labels} */ readonly labels?: { [key: string]: string; }; /** * The `true` value means that untagged images will be deleted during maintenance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#maintenance_delete_untagged DataYandexGitlabInstance#maintenance_delete_untagged} */ readonly maintenanceDeleteUntagged?: boolean | cdktf.IResolvable; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#timeouts DataYandexGitlabInstance#timeouts} */ readonly timeouts?: DataYandexGitlabInstanceTimeouts; } export interface DataYandexGitlabInstanceTimeouts { } export declare function dataYandexGitlabInstanceTimeoutsToTerraform(struct?: DataYandexGitlabInstanceTimeouts | cdktf.IResolvable): any; export declare function dataYandexGitlabInstanceTimeoutsToHclTerraform(struct?: DataYandexGitlabInstanceTimeouts | cdktf.IResolvable): any; export declare class DataYandexGitlabInstanceTimeoutsOutputReference 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(): DataYandexGitlabInstanceTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DataYandexGitlabInstanceTimeouts | cdktf.IResolvable | undefined); } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance yandex_gitlab_instance} */ export declare class DataYandexGitlabInstance extends cdktf.TerraformDataSource { static readonly tfResourceType = "yandex_gitlab_instance"; /** * Generates CDKTF code for importing a DataYandexGitlabInstance resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataYandexGitlabInstance to import * @param importFromId The id of the existing DataYandexGitlabInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataYandexGitlabInstance to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/data-sources/gitlab_instance yandex_gitlab_instance} Data Source * * @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 DataYandexGitlabInstanceConfig = {} */ constructor(scope: Construct, id: string, config?: DataYandexGitlabInstanceConfig); get adminEmail(): any; get adminLogin(): any; private _approvalRulesId?; get approvalRulesId(): string; set approvalRulesId(value: string); resetApprovalRulesId(): void; get approvalRulesIdInput(): string; private _approvalRulesToken?; get approvalRulesToken(): string; set approvalRulesToken(value: string); resetApprovalRulesToken(): void; get approvalRulesTokenInput(): string; get backupRetainPeriodDays(): any; get createdAt(): any; private _deletionProtection?; get deletionProtection(): boolean | cdktf.IResolvable; set deletionProtection(value: boolean | cdktf.IResolvable); resetDeletionProtection(): void; get deletionProtectionInput(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get diskSize(): any; get domain(): any; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; get gitlabVersion(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _maintenanceDeleteUntagged?; get maintenanceDeleteUntagged(): boolean | cdktf.IResolvable; set maintenanceDeleteUntagged(value: boolean | cdktf.IResolvable); resetMaintenanceDeleteUntagged(): void; get maintenanceDeleteUntaggedInput(): any; get name(): any; get resourcePresetId(): any; get status(): any; get subnetId(): any; get updatedAt(): any; private _timeouts; get timeouts(): DataYandexGitlabInstanceTimeoutsOutputReference; putTimeouts(value: DataYandexGitlabInstanceTimeouts): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }