import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VyProviderConfig { /** * The base url for the central shared cognito service * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#central_cognito_base_url VyProvider#central_cognito_base_url} */ readonly centralCognitoBaseUrl?: string; /** * The environment of the deployment service. This should be left blank unless you're testing the deployment service. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#deployment_service_environment VyProvider#deployment_service_environment} */ readonly deploymentServiceEnvironment?: string; /** * The base url for the deployment enrollment service * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#enroll_account_base_url VyProvider#enroll_account_base_url} */ readonly enrollAccountBaseUrl?: string; /** * The environment to interact with. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#environment VyProvider#environment} */ readonly environment: string; /** * The base url for the version handler v2 service (for testing only) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#version_handler_v2_base_url VyProvider#version_handler_v2_base_url} */ readonly versionHandlerV2BaseUrl?: string; /** * Alias name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#alias VyProvider#alias} */ readonly alias?: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs vy} */ export declare class VyProvider extends cdktf.TerraformProvider { static readonly tfResourceType = "vy"; /** * Generates CDKTF code for importing a VyProvider 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 VyProvider to import * @param importFromId The id of the existing VyProvider that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VyProvider 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 vy} 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 VyProviderConfig */ constructor(scope: Construct, id: string, config: VyProviderConfig); private _centralCognitoBaseUrl?; get centralCognitoBaseUrl(): string | undefined; set centralCognitoBaseUrl(value: string | undefined); resetCentralCognitoBaseUrl(): void; get centralCognitoBaseUrlInput(): string; private _deploymentServiceEnvironment?; get deploymentServiceEnvironment(): string | undefined; set deploymentServiceEnvironment(value: string | undefined); resetDeploymentServiceEnvironment(): void; get deploymentServiceEnvironmentInput(): string; private _enrollAccountBaseUrl?; get enrollAccountBaseUrl(): string | undefined; set enrollAccountBaseUrl(value: string | undefined); resetEnrollAccountBaseUrl(): void; get enrollAccountBaseUrlInput(): string; private _environment?; get environment(): string | undefined; set environment(value: string | undefined); get environmentInput(): string; private _versionHandlerV2BaseUrl?; get versionHandlerV2BaseUrl(): string | undefined; set versionHandlerV2BaseUrl(value: string | undefined); resetVersionHandlerV2BaseUrl(): void; get versionHandlerV2BaseUrlInput(): string; private _alias?; get alias(): string | undefined; set alias(value: string | undefined); resetAlias(): void; get aliasInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }