import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface StorageS3Config extends cdktf.TerraformMetaArguments { /** * An client id of new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#client_id StorageS3#client_id} */ readonly clientId?: number; /** * A s3 access key for new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#generated_access_key StorageS3#generated_access_key} */ readonly generatedAccessKey?: string; /** * A s3 entry point for new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#generated_endpoint StorageS3#generated_endpoint} */ readonly generatedEndpoint?: string; /** * A http s3 entry point for new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#generated_http_endpoint StorageS3#generated_http_endpoint} */ readonly generatedHttpEndpoint?: string; /** * A s3 endpoint for new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#generated_s3_endpoint StorageS3#generated_s3_endpoint} */ readonly generatedS3Endpoint?: string; /** * A s3 secret key for new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#generated_secret_key StorageS3#generated_secret_key} */ readonly generatedSecretKey?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#id StorageS3#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 location of new storage resource. One of (s-ed1, s-darz, s-darz1, s-ws1, s-dt2, s-drc2) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#location StorageS3#location} */ readonly location: string; /** * A name of new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#name StorageS3#name} */ readonly name: string; /** * An id of new storage resource. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#storage_id StorageS3#storage_id} */ readonly storageId?: number; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3 gcore_storage_s3} */ export declare class StorageS3 extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_storage_s3"; /** * Generates CDKTF code for importing a StorageS3 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 StorageS3 to import * @param importFromId The id of the existing StorageS3 that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/storage_s3#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the StorageS3 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/g-core/gcore/0.32.5/docs/resources/storage_s3 gcore_storage_s3} 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 StorageS3Config */ constructor(scope: Construct, id: string, config: StorageS3Config); private _clientId?; get clientId(): number; set clientId(value: number); resetClientId(): void; get clientIdInput(): number; private _generatedAccessKey?; get generatedAccessKey(): string; set generatedAccessKey(value: string); resetGeneratedAccessKey(): void; get generatedAccessKeyInput(): string; private _generatedEndpoint?; get generatedEndpoint(): string; set generatedEndpoint(value: string); resetGeneratedEndpoint(): void; get generatedEndpointInput(): string; private _generatedHttpEndpoint?; get generatedHttpEndpoint(): string; set generatedHttpEndpoint(value: string); resetGeneratedHttpEndpoint(): void; get generatedHttpEndpointInput(): string; private _generatedS3Endpoint?; get generatedS3Endpoint(): string; set generatedS3Endpoint(value: string); resetGeneratedS3Endpoint(): void; get generatedS3EndpointInput(): string; private _generatedSecretKey?; get generatedSecretKey(): string; set generatedSecretKey(value: string); resetGeneratedSecretKey(): void; get generatedSecretKeyInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _location?; get location(): string; set location(value: string); get locationInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _storageId?; get storageId(): number; set storageId(value: number); resetStorageId(): void; get storageIdInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }