rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
249 lines (248 loc) • 12.6 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface LicenseManagerProductLicenseConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#compartment_id LicenseManagerProductLicense#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#defined_tags LicenseManagerProductLicense#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_product_license#display_name LicenseManagerProductLicense#display_name}
*/
readonly displayName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#freeform_tags LicenseManagerProductLicense#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_product_license#id LicenseManagerProductLicense#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_product_license#is_vendor_oracle LicenseManagerProductLicense#is_vendor_oracle}
*/
readonly isVendorOracle: boolean | cdktf.IResolvable;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#license_unit LicenseManagerProductLicense#license_unit}
*/
readonly licenseUnit: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#vendor_name LicenseManagerProductLicense#vendor_name}
*/
readonly vendorName?: string;
/**
* images block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#images LicenseManagerProductLicense#images}
*/
readonly images?: LicenseManagerProductLicenseImages[] | cdktf.IResolvable;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#timeouts LicenseManagerProductLicense#timeouts}
*/
readonly timeouts?: LicenseManagerProductLicenseTimeouts;
}
export interface LicenseManagerProductLicenseImages {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#listing_id LicenseManagerProductLicense#listing_id}
*/
readonly listingId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#package_version LicenseManagerProductLicense#package_version}
*/
readonly packageVersion: string;
}
export declare function licenseManagerProductLicenseImagesToTerraform(struct?: LicenseManagerProductLicenseImages | cdktf.IResolvable): any;
export declare function licenseManagerProductLicenseImagesToHclTerraform(struct?: LicenseManagerProductLicenseImages | cdktf.IResolvable): any;
export declare class LicenseManagerProductLicenseImagesOutputReference 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(): LicenseManagerProductLicenseImages | cdktf.IResolvable | undefined;
set internalValue(value: LicenseManagerProductLicenseImages | cdktf.IResolvable | undefined);
get id(): string;
private _listingId?;
get listingId(): string;
set listingId(value: string);
get listingIdInput(): string | undefined;
get listingName(): string;
private _packageVersion?;
get packageVersion(): string;
set packageVersion(value: string);
get packageVersionInput(): string | undefined;
get publisher(): string;
}
export declare class LicenseManagerProductLicenseImagesList extends cdktf.ComplexList {
protected terraformResource: cdktf.IInterpolatingParent;
protected terraformAttribute: string;
protected wrapsSet: boolean;
internalValue?: LicenseManagerProductLicenseImages[] | 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): LicenseManagerProductLicenseImagesOutputReference;
}
export interface LicenseManagerProductLicenseTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#create LicenseManagerProductLicense#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#delete LicenseManagerProductLicense#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#update LicenseManagerProductLicense#update}
*/
readonly update?: string;
}
export declare function licenseManagerProductLicenseTimeoutsToTerraform(struct?: LicenseManagerProductLicenseTimeouts | cdktf.IResolvable): any;
export declare function licenseManagerProductLicenseTimeoutsToHclTerraform(struct?: LicenseManagerProductLicenseTimeouts | cdktf.IResolvable): any;
export declare class LicenseManagerProductLicenseTimeoutsOutputReference 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(): LicenseManagerProductLicenseTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: LicenseManagerProductLicenseTimeouts | 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_product_license oci_license_manager_product_license}
*/
export declare class LicenseManagerProductLicense extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_license_manager_product_license";
/**
* Generates CDKTF code for importing a LicenseManagerProductLicense 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 LicenseManagerProductLicense to import
* @param importFromId The id of the existing LicenseManagerProductLicense that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/license_manager_product_license#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the LicenseManagerProductLicense 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_product_license oci_license_manager_product_license} 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 LicenseManagerProductLicenseConfig
*/
constructor(scope: Construct, id: string, config: LicenseManagerProductLicenseConfig);
get activeLicenseRecordCount(): number;
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
get compartmentIdInput(): string | undefined;
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 _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;
get isOverSubscribed(): cdktf.IResolvable;
get isUnlimited(): cdktf.IResolvable;
private _isVendorOracle?;
get isVendorOracle(): boolean | cdktf.IResolvable;
set isVendorOracle(value: boolean | cdktf.IResolvable);
get isVendorOracleInput(): boolean | cdktf.IResolvable | undefined;
private _licenseUnit?;
get licenseUnit(): string;
set licenseUnit(value: string);
get licenseUnitInput(): string | undefined;
get state(): string;
get status(): string;
get statusDescription(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
get timeCreated(): string;
get timeUpdated(): string;
get totalActiveLicenseUnitCount(): number;
get totalLicenseRecordCount(): number;
get totalLicenseUnitsConsumed(): number;
private _vendorName?;
get vendorName(): string;
set vendorName(value: string);
resetVendorName(): void;
get vendorNameInput(): string | undefined;
private _images;
get images(): LicenseManagerProductLicenseImagesList;
putImages(value: LicenseManagerProductLicenseImages[] | cdktf.IResolvable): void;
resetImages(): void;
get imagesInput(): cdktf.IResolvable | LicenseManagerProductLicenseImages[] | undefined;
private _timeouts;
get timeouts(): LicenseManagerProductLicenseTimeoutsOutputReference;
putTimeouts(value: LicenseManagerProductLicenseTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | LicenseManagerProductLicenseTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}