UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

277 lines (276 loc) 17.3 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciDataSafeTargetAlertPolicyAssociationsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#access_level DataOciDataSafeTargetAlertPolicyAssociations#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_target_alert_policy_associations#alert_policy_id DataOciDataSafeTargetAlertPolicyAssociations#alert_policy_id} */ readonly alertPolicyId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#compartment_id DataOciDataSafeTargetAlertPolicyAssociations#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_target_alert_policy_associations#compartment_id_in_subtree DataOciDataSafeTargetAlertPolicyAssociations#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_target_alert_policy_associations#id DataOciDataSafeTargetAlertPolicyAssociations#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_target_alert_policy_associations#state DataOciDataSafeTargetAlertPolicyAssociations#state} */ readonly state?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#target_alert_policy_association_id DataOciDataSafeTargetAlertPolicyAssociations#target_alert_policy_association_id} */ readonly targetAlertPolicyAssociationId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#target_id DataOciDataSafeTargetAlertPolicyAssociations#target_id} */ readonly targetId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#time_created_greater_than_or_equal_to DataOciDataSafeTargetAlertPolicyAssociations#time_created_greater_than_or_equal_to} */ readonly timeCreatedGreaterThanOrEqualTo?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#time_created_less_than DataOciDataSafeTargetAlertPolicyAssociations#time_created_less_than} */ readonly timeCreatedLessThan?: string; /** * filter block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#filter DataOciDataSafeTargetAlertPolicyAssociations#filter} */ readonly filter?: DataOciDataSafeTargetAlertPolicyAssociationsFilter[] | cdktf.IResolvable; } export interface DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItems { } export declare function dataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsToTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItems): any; export declare function dataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsToHclTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItems): any; export declare class DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsOutputReference 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(): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItems | undefined; set internalValue(value: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItems | undefined); get compartmentId(): string; private _definedTags; get definedTags(): cdktf.StringMap; get description(): string; get displayName(): string; private _freeformTags; get freeformTags(): cdktf.StringMap; get id(): string; get isEnabled(): cdktf.IResolvable; get lifecycleDetails(): string; get policyId(): string; get state(): string; private _systemTags; get systemTags(): cdktf.StringMap; get targetId(): string; get timeCreated(): string; get timeUpdated(): string; } export declare class DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsList 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): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsOutputReference; } export interface DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollection { } export declare function dataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionToTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollection): any; export declare function dataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionToHclTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollection): any; export declare class DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionOutputReference 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(): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollection | undefined; set internalValue(value: DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollection | undefined); private _items; get items(): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionItemsList; } export declare class DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionList 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): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionOutputReference; } export interface DataOciDataSafeTargetAlertPolicyAssociationsFilter { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#name DataOciDataSafeTargetAlertPolicyAssociations#name} */ readonly name: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#regex DataOciDataSafeTargetAlertPolicyAssociations#regex} */ readonly regex?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#values DataOciDataSafeTargetAlertPolicyAssociations#values} */ readonly values: string[]; } export declare function dataOciDataSafeTargetAlertPolicyAssociationsFilterToTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsFilter | cdktf.IResolvable): any; export declare function dataOciDataSafeTargetAlertPolicyAssociationsFilterToHclTerraform(struct?: DataOciDataSafeTargetAlertPolicyAssociationsFilter | cdktf.IResolvable): any; export declare class DataOciDataSafeTargetAlertPolicyAssociationsFilterOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @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(): DataOciDataSafeTargetAlertPolicyAssociationsFilter | cdktf.IResolvable | undefined; set internalValue(value: DataOciDataSafeTargetAlertPolicyAssociationsFilter | cdktf.IResolvable | undefined); private _name?; get name(): string; set name(value: string); get nameInput(): string | undefined; private _regex?; get regex(): boolean | cdktf.IResolvable; set regex(value: boolean | cdktf.IResolvable); resetRegex(): void; get regexInput(): boolean | cdktf.IResolvable | undefined; private _values?; get values(): string[]; set values(value: string[]); get valuesInput(): string[] | undefined; } export declare class DataOciDataSafeTargetAlertPolicyAssociationsFilterList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: DataOciDataSafeTargetAlertPolicyAssociationsFilter[] | cdktf.IResolvable; /** * @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): DataOciDataSafeTargetAlertPolicyAssociationsFilterOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations oci_data_safe_target_alert_policy_associations} */ export declare class DataOciDataSafeTargetAlertPolicyAssociations extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_data_safe_target_alert_policy_associations"; /** * Generates CDKTF code for importing a DataOciDataSafeTargetAlertPolicyAssociations 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 DataOciDataSafeTargetAlertPolicyAssociations to import * @param importFromId The id of the existing DataOciDataSafeTargetAlertPolicyAssociations that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/data_safe_target_alert_policy_associations#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciDataSafeTargetAlertPolicyAssociations 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_target_alert_policy_associations oci_data_safe_target_alert_policy_associations} 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 DataOciDataSafeTargetAlertPolicyAssociationsConfig */ constructor(scope: Construct, id: string, config: DataOciDataSafeTargetAlertPolicyAssociationsConfig); private _accessLevel?; get accessLevel(): string; set accessLevel(value: string); resetAccessLevel(): void; get accessLevelInput(): string | undefined; private _alertPolicyId?; get alertPolicyId(): string; set alertPolicyId(value: string); resetAlertPolicyId(): void; get alertPolicyIdInput(): 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 _state?; get state(): string; set state(value: string); resetState(): void; get stateInput(): string | undefined; private _targetAlertPolicyAssociationCollection; get targetAlertPolicyAssociationCollection(): DataOciDataSafeTargetAlertPolicyAssociationsTargetAlertPolicyAssociationCollectionList; private _targetAlertPolicyAssociationId?; get targetAlertPolicyAssociationId(): string; set targetAlertPolicyAssociationId(value: string); resetTargetAlertPolicyAssociationId(): void; get targetAlertPolicyAssociationIdInput(): string | undefined; private _targetId?; get targetId(): string; set targetId(value: string); resetTargetId(): void; get targetIdInput(): string | undefined; private _timeCreatedGreaterThanOrEqualTo?; get timeCreatedGreaterThanOrEqualTo(): string; set timeCreatedGreaterThanOrEqualTo(value: string); resetTimeCreatedGreaterThanOrEqualTo(): void; get timeCreatedGreaterThanOrEqualToInput(): string | undefined; private _timeCreatedLessThan?; get timeCreatedLessThan(): string; set timeCreatedLessThan(value: string); resetTimeCreatedLessThan(): void; get timeCreatedLessThanInput(): string | undefined; private _filter; get filter(): DataOciDataSafeTargetAlertPolicyAssociationsFilterList; putFilter(value: DataOciDataSafeTargetAlertPolicyAssociationsFilter[] | cdktf.IResolvable): void; resetFilter(): void; get filterInput(): cdktf.IResolvable | DataOciDataSafeTargetAlertPolicyAssociationsFilter[] | undefined; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }