UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

303 lines (302 loc) 19.1 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciIdentityDomainsAccountRecoverySettingsConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#attribute_sets DataOciIdentityDomainsAccountRecoverySettings#attribute_sets} */ readonly attributeSets?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#attributes DataOciIdentityDomainsAccountRecoverySettings#attributes} */ readonly attributes?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#authorization DataOciIdentityDomainsAccountRecoverySettings#authorization} */ readonly authorization?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#compartment_id DataOciIdentityDomainsAccountRecoverySettings#compartment_id} */ readonly compartmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#id DataOciIdentityDomainsAccountRecoverySettings#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/identity_domains_account_recovery_settings#idcs_endpoint DataOciIdentityDomainsAccountRecoverySettings#idcs_endpoint} */ readonly idcsEndpoint: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#resource_type_schema_version DataOciIdentityDomainsAccountRecoverySettings#resource_type_schema_version} */ readonly resourceTypeSchemaVersion?: string; } export interface DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedBy { } export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByToTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedBy): any; export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByToHclTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedBy): any; export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByOutputReference 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(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedBy | undefined; set internalValue(value: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByList 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): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByOutputReference; } export interface DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedBy { } export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByToTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedBy): any; export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByToHclTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedBy): any; export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByOutputReference 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(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedBy | undefined; set internalValue(value: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedBy | undefined); get display(): string; get ocid(): string; get ref(): string; get type(): string; get value(): string; } export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByList 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): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByOutputReference; } export interface DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMeta { } export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaToTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMeta): any; export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaToHclTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMeta): any; export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaOutputReference 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(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMeta | undefined; set internalValue(value: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMeta | undefined); get created(): string; get lastModified(): string; get location(): string; get resourceType(): string; get version(): string; } export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaList 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): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaOutputReference; } export interface DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTags { } export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsToTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTags): any; export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsToHclTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTags): any; export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsOutputReference 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(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTags | undefined; set internalValue(value: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTags | undefined); get key(): string; get value(): string; } export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsList 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): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsOutputReference; } export interface DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettings { } export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsToTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettings): any; export declare function dataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsToHclTerraform(struct?: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettings): any; export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsOutputReference 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(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettings | undefined; set internalValue(value: DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettings | undefined); get accountRecoverySettingId(): string; get attributeSets(): string[]; get attributes(): string; get authorization(): string; get compartmentOcid(): string; get deleteInProgress(): cdktf.IResolvable; get domainOcid(): string; get externalId(): string; get factors(): string[]; get id(): string; private _idcsCreatedBy; get idcsCreatedBy(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsCreatedByList; get idcsEndpoint(): string; private _idcsLastModifiedBy; get idcsLastModifiedBy(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsIdcsLastModifiedByList; get idcsLastUpgradedInRelease(): string; get idcsPreventedOperations(): string[]; get lockoutDuration(): number; get maxIncorrectAttempts(): number; private _meta; get meta(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsMetaList; get ocid(): string; get resourceTypeSchemaVersion(): string; get schemas(): string[]; private _tags; get tags(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsTagsList; get tenancyOcid(): string; } export declare class DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsList 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): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings oci_identity_domains_account_recovery_settings} */ export declare class DataOciIdentityDomainsAccountRecoverySettings extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_identity_domains_account_recovery_settings"; /** * Generates CDKTF code for importing a DataOciIdentityDomainsAccountRecoverySettings 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 DataOciIdentityDomainsAccountRecoverySettings to import * @param importFromId The id of the existing DataOciIdentityDomainsAccountRecoverySettings that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_domains_account_recovery_settings#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciIdentityDomainsAccountRecoverySettings 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/identity_domains_account_recovery_settings oci_identity_domains_account_recovery_settings} 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 DataOciIdentityDomainsAccountRecoverySettingsConfig */ constructor(scope: Construct, id: string, config: DataOciIdentityDomainsAccountRecoverySettingsConfig); private _accountRecoverySettings; get accountRecoverySettings(): DataOciIdentityDomainsAccountRecoverySettingsAccountRecoverySettingsList; private _attributeSets?; get attributeSets(): string[]; set attributeSets(value: string[]); resetAttributeSets(): void; get attributeSetsInput(): string[] | undefined; private _attributes?; get attributes(): string; set attributes(value: string); resetAttributes(): void; get attributesInput(): string | undefined; private _authorization?; get authorization(): string; set authorization(value: string); resetAuthorization(): void; get authorizationInput(): string | undefined; private _compartmentId?; get compartmentId(): string; set compartmentId(value: string); resetCompartmentId(): void; get compartmentIdInput(): string | undefined; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string | undefined; private _idcsEndpoint?; get idcsEndpoint(): string; set idcsEndpoint(value: string); get idcsEndpointInput(): string | undefined; get itemsPerPage(): number; private _resourceTypeSchemaVersion?; get resourceTypeSchemaVersion(): string; set resourceTypeSchemaVersion(value: string); resetResourceTypeSchemaVersion(): void; get resourceTypeSchemaVersionInput(): string | undefined; get schemas(): string[]; get startIndex(): number; get totalResults(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }