UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

97 lines (96 loc) 5.28 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDataSafeMaskingPolicyConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_masking_policy#masking_policy_id DataOciDataSafeMaskingPolicy#masking_policy_id} */ readonly maskingPolicyId: string; } export interface DataOciDataSafeMaskingPolicyColumnSource { } export declare function dataOciDataSafeMaskingPolicyColumnSourceToTerraform(struct?: DataOciDataSafeMaskingPolicyColumnSource): any; export declare function dataOciDataSafeMaskingPolicyColumnSourceToHclTerraform(struct?: DataOciDataSafeMaskingPolicyColumnSource): any; export declare class DataOciDataSafeMaskingPolicyColumnSourceOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @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(): DataOciDataSafeMaskingPolicyColumnSource | undefined; set internalValue(value: DataOciDataSafeMaskingPolicyColumnSource | undefined); get columnSource(): string; get sensitiveDataModelId(): string; get targetId(): string; } export declare class DataOciDataSafeMaskingPolicyColumnSourceList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @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): DataOciDataSafeMaskingPolicyColumnSourceOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_masking_policy oci_data_safe_masking_policy} */ export declare class DataOciDataSafeMaskingPolicy extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_data_safe_masking_policy"; /** * Generates CDKTF code for importing a DataOciDataSafeMaskingPolicy 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 DataOciDataSafeMaskingPolicy to import * @param importFromId The id of the existing DataOciDataSafeMaskingPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_masking_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDataSafeMaskingPolicy 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/data-sources/data_safe_masking_policy oci_data_safe_masking_policy} Data Source * * @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 DataOciDataSafeMaskingPolicyConfig */ constructor(scope: Construct, id: string, config: DataOciDataSafeMaskingPolicyConfig); get addMaskingColumnsFromSdmTrigger(): number; private _columnSource; get columnSource(): DataOciDataSafeMaskingPolicyColumnSourceList; get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get description(): string; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get generateHealthReportTrigger(): number; get id(): string; get isDropTempTablesEnabled(): cdktf.IResolvable; get isRedoLoggingEnabled(): cdktf.IResolvable; get isRefreshStatsEnabled(): cdktf.IResolvable; private _maskingPolicyId?; get maskingPolicyId(): string; set maskingPolicyId(value: string); get maskingPolicyIdInput(): string | undefined; get parallelDegree(): string; get postMaskingScript(): string; get preMaskingScript(): string; get recompile(): string; get state(): string; get timeCreated(): string; get timeUpdated(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }