rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
123 lines (122 loc) • 6.99 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataSafeMaskingPolicyHealthReportManagementConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_policy_health_report_management#compartment_id DataSafeMaskingPolicyHealthReportManagement#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_policy_health_report_management#masking_policy_id DataSafeMaskingPolicyHealthReportManagement#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_policy_health_report_management#target_id DataSafeMaskingPolicyHealthReportManagement#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_policy_health_report_management#timeouts DataSafeMaskingPolicyHealthReportManagement#timeouts}
*/
readonly timeouts?: DataSafeMaskingPolicyHealthReportManagementTimeouts;
}
export interface DataSafeMaskingPolicyHealthReportManagementTimeouts {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_policy_health_report_management#create DataSafeMaskingPolicyHealthReportManagement#create}
*/
readonly create?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_policy_health_report_management#delete DataSafeMaskingPolicyHealthReportManagement#delete}
*/
readonly delete?: string;
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_policy_health_report_management#update DataSafeMaskingPolicyHealthReportManagement#update}
*/
readonly update?: string;
}
export declare function dataSafeMaskingPolicyHealthReportManagementTimeoutsToTerraform(struct?: DataSafeMaskingPolicyHealthReportManagementTimeouts | cdktf.IResolvable): any;
export declare function dataSafeMaskingPolicyHealthReportManagementTimeoutsToHclTerraform(struct?: DataSafeMaskingPolicyHealthReportManagementTimeouts | cdktf.IResolvable): any;
export declare class DataSafeMaskingPolicyHealthReportManagementTimeoutsOutputReference 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(): DataSafeMaskingPolicyHealthReportManagementTimeouts | cdktf.IResolvable | undefined;
set internalValue(value: DataSafeMaskingPolicyHealthReportManagementTimeouts | 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_policy_health_report_management oci_data_safe_masking_policy_health_report_management}
*/
export declare class DataSafeMaskingPolicyHealthReportManagement extends cdktf.TerraformResource {
static readonly tfResourceType = "oci_data_safe_masking_policy_health_report_management";
/**
* Generates CDKTF code for importing a DataSafeMaskingPolicyHealthReportManagement 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 DataSafeMaskingPolicyHealthReportManagement to import
* @param importFromId The id of the existing DataSafeMaskingPolicyHealthReportManagement that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/resources/data_safe_masking_policy_health_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 DataSafeMaskingPolicyHealthReportManagement 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_policy_health_report_management oci_data_safe_masking_policy_health_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 DataSafeMaskingPolicyHealthReportManagementConfig = {}
*/
constructor(scope: Construct, id: string, config?: DataSafeMaskingPolicyHealthReportManagementConfig);
private _compartmentId?;
get compartmentId(): string;
set compartmentId(value: string);
resetCompartmentId(): void;
get compartmentIdInput(): string | undefined;
private _definedTags;
get definedTags(): cdktf.StringMap;
get description(): string;
get displayName(): string;
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get id(): string;
private _maskingPolicyId?;
get maskingPolicyId(): string;
set maskingPolicyId(value: string);
resetMaskingPolicyId(): void;
get maskingPolicyIdInput(): string | undefined;
get state(): string;
private _targetId?;
get targetId(): string;
set targetId(value: string);
resetTargetId(): void;
get targetIdInput(): string | undefined;
get timeCreated(): string;
get timeUpdated(): string;
private _timeouts;
get timeouts(): DataSafeMaskingPolicyHealthReportManagementTimeoutsOutputReference;
putTimeouts(value: DataSafeMaskingPolicyHealthReportManagementTimeouts): void;
resetTimeouts(): void;
get timeoutsInput(): cdktf.IResolvable | DataSafeMaskingPolicyHealthReportManagementTimeouts | undefined;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}