import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CloudregistryRegistryConfig extends cdktf.TerraformMetaArguments { /** * Description of the registry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#description CloudregistryRegistry#description} */ readonly description?: string; /** * ID of the folder that the registry belongs to. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#folder_id CloudregistryRegistry#folder_id} */ readonly folderId?: string; /** * ID of the Registry resource to return. * * To get the registry ID use a [RegistryService.List] request. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#id CloudregistryRegistry#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; /** * Kind of the registry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#kind CloudregistryRegistry#kind} */ readonly kind: string; /** * Resource labels as `key:value` pairs. Maximum of 64 per resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#labels CloudregistryRegistry#labels} */ readonly labels?: { [key: string]: string; }; /** * Name of the registry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#name CloudregistryRegistry#name} */ readonly name?: string; /** * Resource properties as `key:value` pairs. Maximum of 64 per resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#properties CloudregistryRegistry#properties} */ readonly properties?: { [key: string]: string; }; /** * ID of the Registry resource to return. * * To get the registry ID use a [RegistryService.List] request. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#registry_id CloudregistryRegistry#registry_id} */ readonly registryId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#timeouts CloudregistryRegistry#timeouts} */ readonly timeouts?: CloudregistryRegistryTimeouts; /** * Type of the registry. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#type CloudregistryRegistry#type} */ readonly type: string; } export interface CloudregistryRegistryTimeouts { /** * 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/cloudregistry_registry#create CloudregistryRegistry#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/cloudregistry_registry#delete CloudregistryRegistry#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). Read operations occur during any refresh or planning operation when refresh is enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#read CloudregistryRegistry#read} */ readonly read?: 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/cloudregistry_registry#update CloudregistryRegistry#update} */ readonly update?: string; } export declare function cloudregistryRegistryTimeoutsToTerraform(struct?: CloudregistryRegistryTimeouts | cdktf.IResolvable): any; export declare function cloudregistryRegistryTimeoutsToHclTerraform(struct?: CloudregistryRegistryTimeouts | cdktf.IResolvable): any; export declare class CloudregistryRegistryTimeoutsOutputReference 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(): CloudregistryRegistryTimeouts | cdktf.IResolvable | undefined; set internalValue(value: CloudregistryRegistryTimeouts | 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 _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): 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/cloudregistry_registry yandex_cloudregistry_registry} */ export declare class CloudregistryRegistry extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_cloudregistry_registry"; /** * Generates CDKTF code for importing a CloudregistryRegistry 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 CloudregistryRegistry to import * @param importFromId The id of the existing CloudregistryRegistry that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/cloudregistry_registry#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CloudregistryRegistry 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/cloudregistry_registry yandex_cloudregistry_registry} 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 CloudregistryRegistryConfig */ constructor(scope: Construct, id: string, config: CloudregistryRegistryConfig); get createdAt(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _folderId?; get folderId(): string; set folderId(value: string); resetFolderId(): void; get folderIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _kind?; get kind(): string; set kind(value: string); get kindInput(): string; private _labels?; get labels(): { [key: string]: string; }; set labels(value: { [key: string]: string; }); resetLabels(): void; get labelsInput(): { [key: string]: string; }; get modifiedAt(): any; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _properties?; get properties(): { [key: string]: string; }; set properties(value: { [key: string]: string; }); resetProperties(): void; get propertiesInput(): { [key: string]: string; }; private _registryId?; get registryId(): string; set registryId(value: string); resetRegistryId(): void; get registryIdInput(): string; get status(): any; private _timeouts; get timeouts(): CloudregistryRegistryTimeoutsOutputReference; putTimeouts(value: CloudregistryRegistryTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }