import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AppClientConfig extends cdktf.TerraformMetaArguments { /** * Callback URLs to use. Used together with `type` set to `frontend`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#callback_urls AppClient#callback_urls} */ readonly callbackUrls?: string[]; /** * Should a secret be generated? Automatically set by `type`, but you're able to override it with this option. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#generate_secret AppClient#generate_secret} */ readonly generateSecret?: boolean | cdktf.IResolvable; /** * Logout URLs to use. Used together with `type` set to `frontend`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#logout_urls AppClient#logout_urls} */ readonly logoutUrls?: string[]; /** * The name of this app client * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#name AppClient#name} */ readonly name: string; /** * Scopes that this client has access to * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#scopes AppClient#scopes} */ readonly scopes?: string[]; /** * The use-case for this app client. Used to automatically add OAuth options. Must be either `frontend` or `backend`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#type AppClient#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client vy_app_client} */ export declare class AppClient extends cdktf.TerraformResource { static readonly tfResourceType = "vy_app_client"; /** * Generates CDKTF code for importing a AppClient 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 AppClient to import * @param importFromId The id of the existing AppClient that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/app_client#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AppClient 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/resources/app_client vy_app_client} 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 AppClientConfig */ constructor(scope: Construct, id: string, config: AppClientConfig); private _callbackUrls?; get callbackUrls(): string[]; set callbackUrls(value: string[]); resetCallbackUrls(): void; get callbackUrlsInput(): string[]; get clientId(): any; get clientSecret(): any; private _generateSecret?; get generateSecret(): boolean | cdktf.IResolvable; set generateSecret(value: boolean | cdktf.IResolvable); resetGenerateSecret(): void; get generateSecretInput(): any; get id(): any; private _logoutUrls?; get logoutUrls(): string[]; set logoutUrls(value: string[]); resetLogoutUrls(): void; get logoutUrlsInput(): string[]; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _scopes?; get scopes(): string[]; set scopes(value: string[]); resetScopes(): void; get scopesInput(): string[]; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }