import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BillingCloudBindingConfig extends cdktf.TerraformMetaArguments { /** * The ID of billing account to bind cloud to. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/billing_cloud_binding#billing_account_id BillingCloudBinding#billing_account_id} */ readonly billingAccountId: string; /** * Service Instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/billing_cloud_binding#cloud_id BillingCloudBinding#cloud_id} */ readonly cloudId: string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/billing_cloud_binding yandex_billing_cloud_binding} */ export declare class BillingCloudBinding extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_billing_cloud_binding"; /** * Generates CDKTF code for importing a BillingCloudBinding 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 BillingCloudBinding to import * @param importFromId The id of the existing BillingCloudBinding that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/billing_cloud_binding#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the BillingCloudBinding 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/billing_cloud_binding yandex_billing_cloud_binding} 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 BillingCloudBindingConfig */ constructor(scope: Construct, id: string, config: BillingCloudBindingConfig); private _billingAccountId?; get billingAccountId(): string; set billingAccountId(value: string); get billingAccountIdInput(): string; private _cloudId?; get cloudId(): string; set cloudId(value: string); get cloudIdInput(): string; get id(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }