import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface WaapApiPathConfig extends cdktf.TerraformMetaArguments { /** * An array of API groups associated with the API path. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#api_groups WaapApiPath#api_groups} */ readonly apiGroups?: string[]; /** * The API version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#api_version WaapApiPath#api_version} */ readonly apiVersion?: string; /** * The WAAP domain ID for which the API Path is configured. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#domain_id WaapApiPath#domain_id} */ readonly domainId: number; /** * The different HTTP schemes an API path can have. It must be one of these values: HTTP, HTTPS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#http_scheme WaapApiPath#http_scheme} */ readonly httpScheme: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#id WaapApiPath#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; /** * The different methods an API path can have. It must be one of these values: GET, POST, PUT, PATCH, DELETE, TRACE, HEAD, OPTIONS. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#method WaapApiPath#method} */ readonly method: string; /** * The API path, locations that are saved for resource IDs will be put in curly brackets. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#path WaapApiPath#path} */ readonly path: string; /** * The status of the discovered API path. It must be one of these values: CONFIRMED_API, POTENTIAL_API, NOT_API, DELISTED_API * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#status WaapApiPath#status} */ readonly status?: string; /** * An array of tags associated with the API path. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#tags WaapApiPath#tags} */ readonly tags?: string[]; } /** * Represents a {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path gcore_waap_api_path} */ export declare class WaapApiPath extends cdktf.TerraformResource { static readonly tfResourceType = "gcore_waap_api_path"; /** * Generates CDKTF code for importing a WaapApiPath 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 WaapApiPath to import * @param importFromId The id of the existing WaapApiPath that should be imported. Refer to the {@link https://registry.terraform.io/providers/g-core/gcore/0.32.5/docs/resources/waap_api_path#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the WaapApiPath 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/waap_api_path gcore_waap_api_path} 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 WaapApiPathConfig */ constructor(scope: Construct, id: string, config: WaapApiPathConfig); private _apiGroups?; get apiGroups(): string[]; set apiGroups(value: string[]); resetApiGroups(): void; get apiGroupsInput(): string[]; private _apiVersion?; get apiVersion(): string; set apiVersion(value: string); resetApiVersion(): void; get apiVersionInput(): string; private _domainId?; get domainId(): number; set domainId(value: number); get domainIdInput(): number; private _httpScheme?; get httpScheme(): string; set httpScheme(value: string); get httpSchemeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _method?; get method(): string; set method(value: string); get methodInput(): string; private _path?; get path(): string; set path(value: string); get pathInput(): string; private _status?; get status(): string; set status(value: string); resetStatus(): void; get statusInput(): string; private _tags?; get tags(): string[]; set tags(value: string[]); resetTags(): void; get tagsInput(): string[]; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }