/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TagAssignmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment#entity_id TagAssignment#entity_id} */ readonly entityId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment#entity_type TagAssignment#entity_type} */ readonly entityType: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment#tag_id TagAssignment#tag_id} */ readonly tagId: string; } /** * Represents a {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment pagerduty_tag_assignment} */ export declare class TagAssignment extends cdktf.TerraformResource { static readonly tfResourceType = "pagerduty_tag_assignment"; /** * Generates CDKTF code for importing a TagAssignment 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 TagAssignment to import * @param importFromId The id of the existing TagAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TagAssignment to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource; /** * Create a new {@link https://registry.terraform.io/providers/pagerduty/pagerduty/3.30.8/docs/resources/tag_assignment pagerduty_tag_assignment} 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 TagAssignmentConfig */ constructor(scope: Construct, id: string, config: TagAssignmentConfig); private _entityId?; get entityId(): string; set entityId(value: string); get entityIdInput(): string | undefined; private _entityType?; get entityType(): string; set entityType(value: string); get entityTypeInput(): string | undefined; get id(): string; private _tagId?; get tagId(): string; set tagId(value: string); get tagIdInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }