import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataVyArtifactVersionConfig extends cdktf.TerraformMetaArguments { /** * The application you want to find an artifact for. For S3 artifacts, this is the name of the application defined in `.deployment/config.yaml`. For ECR artifacts, this is the name of the ECR repository. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/artifact_version#application DataVyArtifactVersion#application} */ readonly application: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/artifact_version vy_artifact_version} */ export declare class DataVyArtifactVersion extends cdktf.TerraformDataSource { static readonly tfResourceType = "vy_artifact_version"; /** * Generates CDKTF code for importing a DataVyArtifactVersion 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 DataVyArtifactVersion to import * @param importFromId The id of the existing DataVyArtifactVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/artifact_version#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataVyArtifactVersion 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/nsbno/vy/1.1.0/docs/data-sources/artifact_version vy_artifact_version} 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 DataVyArtifactVersionConfig */ constructor(scope: Construct, id: string, config: DataVyArtifactVersionConfig); private _application?; get application(): string; set application(value: string); get applicationInput(): string; get id(): any; get path(): any; get store(): any; get uri(): any; get version(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }