import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DatasphereCommunityConfig extends cdktf.TerraformMetaArguments { /** * Billing account ID to associated with community * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#billing_account_id DatasphereCommunity#billing_account_id} */ readonly billingAccountId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#description DatasphereCommunity#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#labels DatasphereCommunity#labels} */ readonly labels?: { [key: string]: string; }; /** * The resource name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#name DatasphereCommunity#name} */ readonly name: string; /** * Organization ID where community would be created * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#organization_id DatasphereCommunity#organization_id} */ readonly organizationId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#timeouts DatasphereCommunity#timeouts} */ readonly timeouts?: DatasphereCommunityTimeouts; } export interface DatasphereCommunityTimeouts { /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#create DatasphereCommunity#create} */ readonly create?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#delete DatasphereCommunity#delete} */ readonly delete?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#update DatasphereCommunity#update} */ readonly update?: string; } export declare function datasphereCommunityTimeoutsToTerraform(struct?: DatasphereCommunityTimeouts | cdktf.IResolvable): any; export declare function datasphereCommunityTimeoutsToHclTerraform(struct?: DatasphereCommunityTimeouts | cdktf.IResolvable): any; export declare class DatasphereCommunityTimeoutsOutputReference 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(): DatasphereCommunityTimeouts | cdktf.IResolvable | undefined; set internalValue(value: DatasphereCommunityTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community yandex_datasphere_community} */ export declare class DatasphereCommunity extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_datasphere_community"; /** * Generates CDKTF code for importing a DatasphereCommunity 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 DatasphereCommunity to import * @param importFromId The id of the existing DatasphereCommunity that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/datasphere_community#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DatasphereCommunity 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/resources/datasphere_community yandex_datasphere_community} 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 DatasphereCommunityConfig */ constructor(scope: Construct, id: string, config: DatasphereCommunityConfig); private _billingAccountId?; get billingAccountId(): string; set billingAccountId(value: string); resetBillingAccountId(): void; get billingAccountIdInput(): string; get createdAt(): any; get createdBy(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; get id(): any; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _organizationId?; get organizationId(): string; set organizationId(value: string); resetOrganizationId(): void; get organizationIdInput(): string; private _timeouts; get timeouts(): DatasphereCommunityTimeoutsOutputReference; putTimeouts(value: DatasphereCommunityTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }