import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OrganizationmanagerUserSshKeyConfig extends cdktf.TerraformMetaArguments { /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#data OrganizationmanagerUserSshKey#data} */ readonly data: string; /** * Used for temporary keys, if empty the key doesn't expire * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#expires_at OrganizationmanagerUserSshKey#expires_at} */ readonly expiresAt?: string; /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key_service.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#id OrganizationmanagerUserSshKey#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; /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#name OrganizationmanagerUserSshKey#name} */ readonly name?: string; /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#organization_id OrganizationmanagerUserSshKey#organization_id} */ readonly organizationId: string; /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#subject_id OrganizationmanagerUserSshKey#subject_id} */ readonly subjectId: string; /** * package: yandex.cloud.organizationmanager.v1 * filename: yandex/cloud/organizationmanager/v1/user_ssh_key_service.proto * * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#user_ssh_key_id OrganizationmanagerUserSshKey#user_ssh_key_id} */ readonly userSshKeyId?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#timeouts OrganizationmanagerUserSshKey#timeouts} */ readonly timeouts?: OrganizationmanagerUserSshKeyTimeouts; } export interface OrganizationmanagerUserSshKeyTimeouts { /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#create OrganizationmanagerUserSshKey#create} */ readonly create?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#delete OrganizationmanagerUserSshKey#delete} */ readonly delete?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#read OrganizationmanagerUserSshKey#read} */ readonly read?: string; /** * A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#update OrganizationmanagerUserSshKey#update} */ readonly update?: string; } export declare function organizationmanagerUserSshKeyTimeoutsToTerraform(struct?: OrganizationmanagerUserSshKeyTimeouts | cdktf.IResolvable): any; export declare function organizationmanagerUserSshKeyTimeoutsToHclTerraform(struct?: OrganizationmanagerUserSshKeyTimeouts | cdktf.IResolvable): any; export declare class OrganizationmanagerUserSshKeyTimeoutsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): OrganizationmanagerUserSshKeyTimeouts | cdktf.IResolvable | undefined; set internalValue(value: OrganizationmanagerUserSshKeyTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string; private _read?; get read(): string; set read(value: string); resetRead(): void; get readInput(): string; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key yandex_organizationmanager_user_ssh_key} */ export declare class OrganizationmanagerUserSshKey extends cdktf.TerraformResource { static readonly tfResourceType = "yandex_organizationmanager_user_ssh_key"; /** * Generates CDKTF code for importing a OrganizationmanagerUserSshKey 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 OrganizationmanagerUserSshKey to import * @param importFromId The id of the existing OrganizationmanagerUserSshKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OrganizationmanagerUserSshKey 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/yandex-cloud/yandex/0.177.0/docs/resources/organizationmanager_user_ssh_key yandex_organizationmanager_user_ssh_key} 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 OrganizationmanagerUserSshKeyConfig */ constructor(scope: Construct, id: string, config: OrganizationmanagerUserSshKeyConfig); get createdAt(): any; private _data?; get data(): string; set data(value: string); get dataInput(): string; private _expiresAt?; get expiresAt(): string; set expiresAt(value: string); resetExpiresAt(): void; get expiresAtInput(): string; get fingerprint(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _organizationId?; get organizationId(): string; set organizationId(value: string); get organizationIdInput(): string; private _subjectId?; get subjectId(): string; set subjectId(value: string); get subjectIdInput(): string; private _userSshKeyId?; get userSshKeyId(): string; set userSshKeyId(value: string); resetUserSshKeyId(): void; get userSshKeyIdInput(): string; private _timeouts; get timeouts(): OrganizationmanagerUserSshKeyTimeoutsOutputReference; putTimeouts(value: OrganizationmanagerUserSshKeyTimeouts): void; resetTimeouts(): void; get timeoutsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }