UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

149 lines (148 loc) 7.46 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDataSafeAuditEventConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event#access_level DataOciDataSafeAuditEvent#access_level} */ readonly accessLevel?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event#compartment_id DataOciDataSafeAuditEvent#compartment_id} */ readonly compartmentId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event#compartment_id_in_subtree DataOciDataSafeAuditEvent#compartment_id_in_subtree} */ readonly compartmentIdInSubtree?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event#id DataOciDataSafeAuditEvent#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/data-sources/data_safe_audit_event#scim_query DataOciDataSafeAuditEvent#scim_query} */ readonly scimQuery?: string; } export interface DataOciDataSafeAuditEventItems { } export declare function dataOciDataSafeAuditEventItemsToTerraform(struct?: DataOciDataSafeAuditEventItems): any; export declare function dataOciDataSafeAuditEventItemsToHclTerraform(struct?: DataOciDataSafeAuditEventItems): any; export declare class DataOciDataSafeAuditEventItemsOutputReference 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(): DataOciDataSafeAuditEventItems | undefined; set internalValue(value: DataOciDataSafeAuditEventItems | undefined); get actionTaken(): string; get auditEventTime(): string; get auditLocation(): string; get auditPolicies(): string; get auditTrailId(): string; get auditType(): string; get clientHostname(): string; get clientId(): string; get clientIp(): string; get clientProgram(): string; get commandParam(): string; get commandText(): string; get compartmentId(): string; get databaseType(): string; get dbUserName(): string; private _definedTags; get definedTags(): cdktf.StringMap; get errorCode(): string; get errorMessage(): string; get eventName(): string; get extendedEventAttributes(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get isAlerted(): cdktf.IResolvable; get object(): string; get objectOwner(): string; get objectType(): string; get operation(): string; get operationStatus(): string; get osTerminal(): string; get osUserName(): string; get targetClass(): string; get targetId(): string; get targetName(): string; get timeCollected(): string; } export declare class DataOciDataSafeAuditEventItemsList 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): DataOciDataSafeAuditEventItemsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event oci_data_safe_audit_event} */ export declare class DataOciDataSafeAuditEvent extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_data_safe_audit_event"; /** * Generates CDKTF code for importing a DataOciDataSafeAuditEvent 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 DataOciDataSafeAuditEvent to import * @param importFromId The id of the existing DataOciDataSafeAuditEvent that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_audit_event#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDataSafeAuditEvent 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_audit_event oci_data_safe_audit_event} 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 DataOciDataSafeAuditEventConfig */ constructor(scope: Construct, id: string, config: DataOciDataSafeAuditEventConfig); private _accessLevel?; get accessLevel(): string; set accessLevel(value: string); resetAccessLevel(): void; get accessLevelInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); get compartmentIdInput(): string | undefined; private _compartmentIdInSubtree?; get compartmentIdInSubtree(): boolean | cdktf.IResolvable; set compartmentIdInSubtree(value: boolean | cdktf.IResolvable); resetCompartmentIdInSubtree(): void; get compartmentIdInSubtreeInput(): boolean | cdktf.IResolvable | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _items; get items(): DataOciDataSafeAuditEventItemsList; private _scimQuery?; get scimQuery(): string; set scimQuery(value: string); resetScimQuery(): void; get scimQueryInput(): string | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }