rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
140 lines (139 loc) • 7.44 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataSafeMaskingReportManagementConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#compartment_id DataSafeMaskingReportManagement#compartment_id}
*/
readonly compartmentId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#id DataSafeMaskingReportManagement#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/data_safe_masking_report_management#masking_policy_id DataSafeMaskingReportManagement#masking_policy_id}
*/
readonly maskingPolicyId?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#target_id DataSafeMaskingReportManagement#target_id}
*/
readonly targetId?: string;
/**
* timeouts block
*
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#timeouts DataSafeMaskingReportManagement#timeouts}
*/
readonly timeouts?: DataSafeMaskingReportManagementTimeouts;
}
export interface DataSafeMaskingReportManagementTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#create DataSafeMaskingReportManagement#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#delete DataSafeMaskingReportManagement#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#update DataSafeMaskingReportManagement#update}
*/
readonly update?: string;
}
export declare function dataSafeMaskingReportManagementTimeoutsToTerraform(struct?: DataSafeMaskingReportManagementTimeouts | cdktf.IResolvable): any;
export declare function dataSafeMaskingReportManagementTimeoutsToHclTerraform(struct?: DataSafeMaskingReportManagementTimeouts | cdktf.IResolvable): any;
export declare class DataSafeMaskingReportManagementTimeoutsOutputReference 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(): DataSafeMaskingReportManagementTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: DataSafeMaskingReportManagementTimeouts | 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/data_safe_masking_report_management oci_data_safe_masking_report_management}
*/
export declare class DataSafeMaskingReportManagement extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_data_safe_masking_report_management";
/**
* Generates CDKTF code for importing a DataSafeMaskingReportManagement 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 DataSafeMaskingReportManagement to import
* @param importFromId The id of the existing DataSafeMaskingReportManagement that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_report_management#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataSafeMaskingReportManagement 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/data_safe_masking_report_management oci_data_safe_masking_report_management} 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 DataSafeMaskingReportManagementConfig = {}
*/
constructor(scope: Construct, id: string, config?: DataSafeMaskingReportManagementConfig);
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
resetCompartmentId(): void;
get compartmentIdInput(): string | undefined;
private _id?;
get id(): string;
set id(value: string);
resetId(): void;
get idInput(): string | undefined;
get isDropTempTablesEnabled(): cdktf.IResolvable;
get isRedoLoggingEnabled(): cdktf.IResolvable;
get isRefreshStatsEnabled(): cdktf.IResolvable;
private _maskingPolicyId?;
get maskingPolicyId(): string;
set maskingPolicyId(value: string);
resetMaskingPolicyId(): void;
get maskingPolicyIdInput(): string | undefined;
get maskingWorkRequestId(): string;
get parallelDegree(): string;
get recompile(): string;
get state(): string;
private _targetId?;
get targetId(): string;
set targetId(value: string);
resetTargetId(): void;
get targetIdInput(): string | undefined;
get timeCreated(): string;
get timeMaskingFinished(): string;
get timeMaskingStarted(): string;
get totalMaskedColumns(): string;
get totalMaskedObjects(): string;
get totalMaskedSchemas(): string;
get totalMaskedSensitiveTypes(): string;
get totalMaskedValues(): string;
private _timeouts;
get timeouts(): DataSafeMaskingReportManagementTimeoutsOutputReference;
putTimeouts(value: DataSafeMaskingReportManagementTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | DataSafeMaskingReportManagementTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}