UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

208 lines (207 loc) 10.2 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface LicenseManagerLicenseRecordConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#defined_tags LicenseManagerLicenseRecord#defined_tags} */ readonly definedTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#display_name LicenseManagerLicenseRecord#display_name} */ readonly displayName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#expiration_date LicenseManagerLicenseRecord#expiration_date} */ readonly expirationDate?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#freeform_tags LicenseManagerLicenseRecord#freeform_tags} */ readonly freeformTags?: { [key: string]: string; }; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#id LicenseManagerLicenseRecord#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; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#is_perpetual LicenseManagerLicenseRecord#is_perpetual} */ readonly isPerpetual: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#is_unlimited LicenseManagerLicenseRecord#is_unlimited} */ readonly isUnlimited: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#license_count LicenseManagerLicenseRecord#license_count} */ readonly licenseCount?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#product_id LicenseManagerLicenseRecord#product_id} */ readonly productId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#product_license_id LicenseManagerLicenseRecord#product_license_id} */ readonly productLicenseId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#support_end_date LicenseManagerLicenseRecord#support_end_date} */ readonly supportEndDate?: string; /** * timeouts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#timeouts LicenseManagerLicenseRecord#timeouts} */ readonly timeouts?: LicenseManagerLicenseRecordTimeouts; } export interface LicenseManagerLicenseRecordTimeouts { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#create LicenseManagerLicenseRecord#create} */ readonly create?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#delete LicenseManagerLicenseRecord#delete} */ readonly delete?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#update LicenseManagerLicenseRecord#update} */ readonly update?: string; } export declare function licenseManagerLicenseRecordTimeoutsToTerraform(struct?: LicenseManagerLicenseRecordTimeouts | cdktf.IResolvable): any; export declare function licenseManagerLicenseRecordTimeoutsToHclTerraform(struct?: LicenseManagerLicenseRecordTimeouts | cdktf.IResolvable): any; export declare class LicenseManagerLicenseRecordTimeoutsOutputReference 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(): LicenseManagerLicenseRecordTimeouts | cdktf.IResolvable | undefined; set internalValue(value: LicenseManagerLicenseRecordTimeouts | cdktf.IResolvable | undefined); private _create?; get create(): string; set create(value: string); resetCreate(): void; get createInput(): string | undefined; private _delete?; get delete(): string; set delete(value: string); resetDelete(): void; get deleteInput(): string | undefined; private _update?; get update(): string; set update(value: string); resetUpdate(): void; get updateInput(): string | undefined; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record oci_license_manager_license_record} */ export declare class LicenseManagerLicenseRecord extends cdktf.TerraformResource { static readonly tfResourceType = "oci_license_manager_license_record"; /** * Generates CDKTF code for importing a LicenseManagerLicenseRecord resource upon running "cdktf plan <stack-name>" * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the LicenseManagerLicenseRecord to import * @param importFromId The id of the existing LicenseManagerLicenseRecord that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_license_record#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the LicenseManagerLicenseRecord 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/oracle/oci/6.18.0/docs/resources/license_manager_license_record oci_license_manager_license_record} 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 LicenseManagerLicenseRecordConfig */ constructor(scope: Construct, id: string, config: LicenseManagerLicenseRecordConfig); get compartmentId(): string; private _definedTags?; get definedTags(): { [key: string]: string; }; set definedTags(value: { [key: string]: string; }); resetDefinedTags(): void; get definedTagsInput(): { [key: string]: string; } | undefined; private _displayName?; get displayName(): string; set displayName(value: string); get displayNameInput(): string | undefined; private _expirationDate?; get expirationDate(): string; set expirationDate(value: string); resetExpirationDate(): void; get expirationDateInput(): string | undefined; private _freeformTags?; get freeformTags(): { [key: string]: string; }; set freeformTags(value: { [key: string]: string; }); resetFreeformTags(): void; get freeformTagsInput(): { [key: string]: string; } | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _isPerpetual?; get isPerpetual(): boolean | cdktf.IResolvable; set isPerpetual(value: boolean | cdktf.IResolvable); get isPerpetualInput(): boolean | cdktf.IResolvable | undefined; private _isUnlimited?; get isUnlimited(): boolean | cdktf.IResolvable; set isUnlimited(value: boolean | cdktf.IResolvable); get isUnlimitedInput(): boolean | cdktf.IResolvable | undefined; private _licenseCount?; get licenseCount(): number; set licenseCount(value: number); resetLicenseCount(): void; get licenseCountInput(): number | undefined; get licenseUnit(): string; private _productId?; get productId(): string; set productId(value: string); resetProductId(): void; get productIdInput(): string | undefined; get productLicense(): string; private _productLicenseId?; get productLicenseId(): string; set productLicenseId(value: string); get productLicenseIdInput(): string | undefined; get state(): string; private _supportEndDate?; get supportEndDate(): string; set supportEndDate(value: string); resetSupportEndDate(): void; get supportEndDateInput(): string | undefined; private _systemTags; get systemTags(): cdktf.StringMap; get timeCreated(): string; get timeUpdated(): string; private _timeouts; get timeouts(): LicenseManagerLicenseRecordTimeoutsOutputReference; putTimeouts(value: LicenseManagerLicenseRecordTimeouts): void; resetTimeouts(): void; get timeoutsInput(): cdktf.IResolvable | LicenseManagerLicenseRecordTimeouts | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }