import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ResourceServerConfig extends cdktf.TerraformMetaArguments { /** * The identity of this resource server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#identifier ResourceServer#identifier} */ readonly identifier: string; /** * The name of this resource server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#name ResourceServer#name} */ readonly name: string; /** * Scopes for this resource server * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#scopes ResourceServer#scopes} */ readonly scopes?: ResourceServerScopes[] | cdktf.IResolvable; } export interface ResourceServerScopes { /** * A description of what this scope is for * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#description ResourceServer#description} */ readonly description: string; /** * A name for this scope * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#name ResourceServer#name} */ readonly name: string; } export declare function resourceServerScopesToTerraform(struct?: ResourceServerScopes | cdktf.IResolvable): any; export declare function resourceServerScopesToHclTerraform(struct?: ResourceServerScopes | cdktf.IResolvable): any; export declare class ResourceServerScopesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): ResourceServerScopes | cdktf.IResolvable | undefined; set internalValue(value: ResourceServerScopes | cdktf.IResolvable | undefined); private _description?; get description(): string; set description(value: string); get descriptionInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; } export declare class ResourceServerScopesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ResourceServerScopes[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): ResourceServerScopesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server vy_resource_server} */ export declare class ResourceServer extends cdktf.TerraformResource { static readonly tfResourceType = "vy_resource_server"; /** * Generates CDKTF code for importing a ResourceServer 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 ResourceServer to import * @param importFromId The id of the existing ResourceServer that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/resource_server#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ResourceServer 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/resource_server vy_resource_server} 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 ResourceServerConfig */ constructor(scope: Construct, id: string, config: ResourceServerConfig); get id(): any; private _identifier?; get identifier(): string; set identifier(value: string); get identifierInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _scopes; get scopes(): ResourceServerScopesList; putScopes(value: ResourceServerScopes[] | cdktf.IResolvable): void; resetScopes(): void; get scopesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }