rhizo-co-terraform-provider-oci
Version:
Prebuilt oci Provider for Terraform CDK (cdktf)
64 lines (63 loc) • 3.53 kB
TypeScript
import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciOperatorAccessControlOperatorControlConfig extends cdktf.TerraformMetaArguments {
/**
* Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control#operator_control_id DataOciOperatorAccessControlOperatorControl#operator_control_id}
*/
readonly operatorControlId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control oci_operator_access_control_operator_control}
*/
export declare class DataOciOperatorAccessControlOperatorControl extends cdktf.TerraformDataSource {
static readonly tfResourceType = "oci_operator_access_control_operator_control";
/**
* Generates CDKTF code for importing a DataOciOperatorAccessControlOperatorControl 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 DataOciOperatorAccessControlOperatorControl to import
* @param importFromId The id of the existing DataOciOperatorAccessControlOperatorControl that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control#import import section} in the documentation of this resource for the id to use
* @param provider? Optional instance of the provider where the DataOciOperatorAccessControlOperatorControl 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/operator_access_control_operator_control oci_operator_access_control_operator_control} 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 DataOciOperatorAccessControlOperatorControlConfig
*/
constructor(scope: Construct, id: string, config: DataOciOperatorAccessControlOperatorControlConfig);
get approvalRequiredOpActionList(): string[];
get approverGroupsList(): string[];
get approversList(): string[];
get compartmentId(): string;
private _definedTags;
get definedTags(): cdktf.StringMap;
get description(): string;
get emailIdList(): string[];
private _freeformTags;
get freeformTags(): cdktf.StringMap;
get id(): string;
get isDefaultOperatorControl(): cdktf.IResolvable;
get isFullyPreApproved(): cdktf.IResolvable;
get lastModifiedInfo(): string;
get numberOfApprovers(): number;
private _operatorControlId?;
get operatorControlId(): string;
set operatorControlId(value: string);
get operatorControlIdInput(): string | undefined;
get operatorControlName(): string;
get preApprovedOpActionList(): string[];
get resourceType(): string;
get state(): string;
get systemMessage(): string;
get timeOfCreation(): string;
get timeOfDeletion(): string;
get timeOfModification(): string;
protected synthesizeAttributes(): {
[name: string]: any;
};
protected synthesizeHclAttributes(): {
[name: string]: any;
};
}