rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
271 lines (270 loc) • 12.3 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface OceOceInstanceConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#add_on_features OceOceInstance#add_on_features}
*/
readonly addOnFeatures?: string[];
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#admin_email OceOceInstance#admin_email}
*/
readonly adminEmail: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#compartment_id OceOceInstance#compartment_id}
*/
readonly compartmentId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#defined_tags OceOceInstance#defined_tags}
*/
readonly definedTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#description OceOceInstance#description}
*/
readonly description?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#dr_region OceOceInstance#dr_region}
*/
readonly drRegion?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#freeform_tags OceOceInstance#freeform_tags}
*/
readonly freeformTags?: {
[key: string]: string;
};
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#id OceOceInstance#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/oce_oce_instance#idcs_access_token OceOceInstance#idcs_access_token}
*/
readonly idcsAccessToken: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#instance_access_type OceOceInstance#instance_access_type}
*/
readonly instanceAccessType?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#instance_license_type OceOceInstance#instance_license_type}
*/
readonly instanceLicenseType?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#instance_usage_type OceOceInstance#instance_usage_type}
*/
readonly instanceUsageType?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#name OceOceInstance#name}
*/
readonly name: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#object_storage_namespace OceOceInstance#object_storage_namespace}
*/
readonly objectStorageNamespace: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#tenancy_id OceOceInstance#tenancy_id}
*/
readonly tenancyId: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#tenancy_name OceOceInstance#tenancy_name}
*/
readonly tenancyName: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#upgrade_schedule OceOceInstance#upgrade_schedule}
*/
readonly upgradeSchedule?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#waf_primary_domain OceOceInstance#waf_primary_domain}
*/
readonly wafPrimaryDomain?: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#timeouts OceOceInstance#timeouts}
*/
readonly timeouts?: OceOceInstanceTimeouts;
}
export interface OceOceInstanceTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#create OceOceInstance#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#delete OceOceInstance#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#update OceOceInstance#update}
*/
readonly update?: string;
}
export declare function oceOceInstanceTimeoutsToTerraform(struct?: OceOceInstanceTimeouts | cdktf.IResolvable): any;
export declare function oceOceInstanceTimeoutsToHclTerraform(struct?: OceOceInstanceTimeouts | cdktf.IResolvable): any;
export declare class OceOceInstanceTimeoutsOutputReference 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(): OceOceInstanceTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: OceOceInstanceTimeouts | 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/oce_oce_instance oci_oce_oce_instance}
*/
export declare class OceOceInstance extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_oce_oce_instance";
/**
* Generates CDKTF code for importing a OceOceInstance 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 OceOceInstance to import
* @param importFromId The id of the existing OceOceInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/oce_oce_instance#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the OceOceInstance 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/oce_oce_instance oci_oce_oce_instance} 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 OceOceInstanceConfig
*/
constructor(scope: Construct, id: string, config: OceOceInstanceConfig);
private _addOnFeatures?;
get addOnFeatures(): string[];
set addOnFeatures(value: string[]);
resetAddOnFeatures(): void;
get addOnFeaturesInput(): string[] | undefined;
private _adminEmail?;
get adminEmail(): string;
set adminEmail(value: string);
get adminEmailInput(): string | undefined;
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 _description?;
get description(): string;
set description(value: string);
resetDescription(): void;
get descriptionInput(): string | undefined;
private _drRegion?;
get drRegion(): string;
set drRegion(value: string);
resetDrRegion(): void;
get drRegionInput(): string | undefined;
private _freeformTags?;
get freeformTags(): {
[key: string]: string;
};
set freeformTags(value: {
[key: string]: string;
});
resetFreeformTags(): void;
get freeformTagsInput(): {
[key: string]: string;
} | undefined;
get guid(): string;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
private _idcsAccessToken?;
get idcsAccessToken(): string;
set idcsAccessToken(value: string);
get idcsAccessTokenInput(): string | undefined;
get idcsTenancy(): string;
private _instanceAccessType?;
get instanceAccessType(): string;
set instanceAccessType(value: string);
resetInstanceAccessType(): void;
get instanceAccessTypeInput(): string | undefined;
private _instanceLicenseType?;
get instanceLicenseType(): string;
set instanceLicenseType(value: string);
resetInstanceLicenseType(): void;
get instanceLicenseTypeInput(): string | undefined;
private _instanceUsageType?;
get instanceUsageType(): string;
set instanceUsageType(value: string);
resetInstanceUsageType(): void;
get instanceUsageTypeInput(): string | undefined;
get lifecycleDetails(): string;
private _name?;
get name(): string;
set name(value: string);
get nameInput(): string | undefined;
private _objectStorageNamespace?;
get objectStorageNamespace(): string;
set objectStorageNamespace(value: string);
get objectStorageNamespaceInput(): string | undefined;
private _service;
get service(): cdktf.StringMap;
get state(): string;
get stateMessage(): string;
private _systemTags;
get systemTags(): cdktf.StringMap;
private _tenancyId?;
get tenancyId(): string;
set tenancyId(value: string);
get tenancyIdInput(): string | undefined;
private _tenancyName?;
get tenancyName(): string;
set tenancyName(value: string);
get tenancyNameInput(): string | undefined;
get timeCreated(): string;
get timeUpdated(): string;
private _upgradeSchedule?;
get upgradeSchedule(): string;
set upgradeSchedule(value: string);
resetUpgradeSchedule(): void;
get upgradeScheduleInput(): string | undefined;
private _wafPrimaryDomain?;
get wafPrimaryDomain(): string;
set wafPrimaryDomain(value: string);
resetWafPrimaryDomain(): void;
get wafPrimaryDomainInput(): string | undefined;
private _timeouts;
get timeouts(): OceOceInstanceTimeoutsOutputReference;
putTimeouts(value: OceOceInstanceTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | OceOceInstanceTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}