import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciCertificatesManagementCertificatesConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#certificate_id DataOciCertificatesManagementCertificates#certificate_id}
    */
    readonly certificateId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#compartment_id DataOciCertificatesManagementCertificates#compartment_id}
    */
    readonly compartmentId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#id DataOciCertificatesManagementCertificates#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/certificates_management_certificates#issuer_certificate_authority_id DataOciCertificatesManagementCertificates#issuer_certificate_authority_id}
    */
    readonly issuerCertificateAuthorityId?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#name DataOciCertificatesManagementCertificates#name}
    */
    readonly name?: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#state DataOciCertificatesManagementCertificates#state}
    */
    readonly state?: string;
    /**
    * filter block
    *
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#filter DataOciCertificatesManagementCertificates#filter}
    */
    readonly filter?: DataOciCertificatesManagementCertificatesFilter[] | cdktf.IResolvable;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubject {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubject): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubject): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubject | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubject | undefined);
    get commonName(): string;
    get country(): string;
    get distinguishedNameQualifier(): string;
    get domainComponent(): string;
    get generationQualifier(): string;
    get givenName(): string;
    get initials(): string;
    get localityName(): string;
    get organization(): string;
    get organizationalUnit(): string;
    get pseudonym(): string;
    get serialNumber(): string;
    get stateOrProvinceName(): string;
    get street(): string;
    get surname(): string;
    get title(): string;
    get userId(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNames {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNames): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNames): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNames | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNames | undefined);
    get type(): string;
    get value(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidity {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidity): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidity): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidity | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidity | undefined);
    get timeOfValidityNotAfter(): string;
    get timeOfValidityNotBefore(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfig {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfig): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfig): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfig | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfig | undefined);
    get certificateProfileType(): string;
    get configType(): string;
    get csrPem(): string;
    get issuerCertificateAuthorityId(): string;
    get keyAlgorithm(): string;
    get signatureAlgorithm(): string;
    private _subject;
    get subject(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectList;
    private _subjectAlternativeNames;
    get subjectAlternativeNames(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigSubjectAlternativeNamesList;
    private _validity;
    get validity(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigValidityList;
    get versionName(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfig {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfig): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfig): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfig | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfig | undefined);
    get objectStorageBucketName(): string;
    get objectStorageNamespace(): string;
    get objectStorageObjectNameFormat(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetails {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetails): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetails): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetails | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetails | undefined);
    get customFormattedUrls(): string[];
    private _objectStorageConfig;
    get objectStorageConfig(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsObjectStorageConfigList;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRules {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRules): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRules): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRules | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRules | undefined);
    get advanceRenewalPeriod(): string;
    get renewalInterval(): string;
    get ruleType(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatus {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatus): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatus): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatus | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatus | undefined);
    get revocationReason(): string;
    get timeOfRevocation(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNames {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNames): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNames): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNames | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNames | undefined);
    get type(): string;
    get value(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidity {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidity): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidity): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidity | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidity | undefined);
    get timeOfValidityNotAfter(): string;
    get timeOfValidityNotBefore(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersion {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersion): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersion): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersion | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersion | undefined);
    get certificateId(): string;
    get issuerCaVersionNumber(): string;
    private _revocationStatus;
    get revocationStatus(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionRevocationStatusList;
    get serialNumber(): string;
    get stages(): string[];
    private _subjectAlternativeNames;
    get subjectAlternativeNames(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionSubjectAlternativeNamesList;
    get timeCreated(): string;
    get timeOfDeletion(): string;
    private _validity;
    get validity(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionValidityList;
    get versionName(): string;
    get versionNumber(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubject {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubject): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubject): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubject | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubject | undefined);
    get commonName(): string;
    get country(): string;
    get distinguishedNameQualifier(): string;
    get domainComponent(): string;
    get generationQualifier(): string;
    get givenName(): string;
    get initials(): string;
    get localityName(): string;
    get organization(): string;
    get organizationalUnit(): string;
    get pseudonym(): string;
    get serialNumber(): string;
    get stateOrProvinceName(): string;
    get street(): string;
    get surname(): string;
    get title(): string;
    get userId(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollectionItems {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItems): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionItemsToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollectionItems): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollectionItems | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollectionItems | undefined);
    private _certificateConfig;
    get certificateConfig(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateConfigList;
    get certificateProfileType(): string;
    private _certificateRevocationListDetails;
    get certificateRevocationListDetails(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRevocationListDetailsList;
    private _certificateRules;
    get certificateRules(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCertificateRulesList;
    get compartmentId(): string;
    get configType(): string;
    private _currentVersion;
    get currentVersion(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsCurrentVersionList;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get description(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    get issuerCertificateAuthorityId(): string;
    get keyAlgorithm(): string;
    get lifecycleDetails(): string;
    get name(): string;
    get signatureAlgorithm(): string;
    get state(): string;
    private _subject;
    get subject(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsSubjectList;
    get timeCreated(): string;
    get timeOfDeletion(): string;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionItemsList 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): DataOciCertificatesManagementCertificatesCertificateCollectionItemsOutputReference;
}
export interface DataOciCertificatesManagementCertificatesCertificateCollection {
}
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionToTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollection): any;
export declare function dataOciCertificatesManagementCertificatesCertificateCollectionToHclTerraform(struct?: DataOciCertificatesManagementCertificatesCertificateCollection): any;
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionOutputReference 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(): DataOciCertificatesManagementCertificatesCertificateCollection | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesCertificateCollection | undefined);
    private _items;
    get items(): DataOciCertificatesManagementCertificatesCertificateCollectionItemsList;
}
export declare class DataOciCertificatesManagementCertificatesCertificateCollectionList 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): DataOciCertificatesManagementCertificatesCertificateCollectionOutputReference;
}
export interface DataOciCertificatesManagementCertificatesFilter {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#name DataOciCertificatesManagementCertificates#name}
    */
    readonly name: string;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#regex DataOciCertificatesManagementCertificates#regex}
    */
    readonly regex?: boolean | cdktf.IResolvable;
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#values DataOciCertificatesManagementCertificates#values}
    */
    readonly values: string[];
}
export declare function dataOciCertificatesManagementCertificatesFilterToTerraform(struct?: DataOciCertificatesManagementCertificatesFilter | cdktf.IResolvable): any;
export declare function dataOciCertificatesManagementCertificatesFilterToHclTerraform(struct?: DataOciCertificatesManagementCertificatesFilter | cdktf.IResolvable): any;
export declare class DataOciCertificatesManagementCertificatesFilterOutputReference 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(): DataOciCertificatesManagementCertificatesFilter | cdktf.IResolvable | undefined;
    set internalValue(value: DataOciCertificatesManagementCertificatesFilter | 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 DataOciCertificatesManagementCertificatesFilterList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    internalValue?: DataOciCertificatesManagementCertificatesFilter[] | 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): DataOciCertificatesManagementCertificatesFilterOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates oci_certificates_management_certificates}
*/
export declare class DataOciCertificatesManagementCertificates extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_certificates_management_certificates";
    /**
    * Generates CDKTF code for importing a DataOciCertificatesManagementCertificates 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 DataOciCertificatesManagementCertificates to import
    * @param importFromId The id of the existing DataOciCertificatesManagementCertificates that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/certificates_management_certificates#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciCertificatesManagementCertificates 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/certificates_management_certificates oci_certificates_management_certificates} 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 DataOciCertificatesManagementCertificatesConfig = {}
    */
    constructor(scope: Construct, id: string, config?: DataOciCertificatesManagementCertificatesConfig);
    private _certificateCollection;
    get certificateCollection(): DataOciCertificatesManagementCertificatesCertificateCollectionList;
    private _certificateId?;
    get certificateId(): string;
    set certificateId(value: string);
    resetCertificateId(): void;
    get certificateIdInput(): 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 _issuerCertificateAuthorityId?;
    get issuerCertificateAuthorityId(): string;
    set issuerCertificateAuthorityId(value: string);
    resetIssuerCertificateAuthorityId(): void;
    get issuerCertificateAuthorityIdInput(): string | undefined;
    private _name?;
    get name(): string;
    set name(value: string);
    resetName(): void;
    get nameInput(): string | undefined;
    private _state?;
    get state(): string;
    set state(value: string);
    resetState(): void;
    get stateInput(): string | undefined;
    private _filter;
    get filter(): DataOciCertificatesManagementCertificatesFilterList;
    putFilter(value: DataOciCertificatesManagementCertificatesFilter[] | cdktf.IResolvable): void;
    resetFilter(): void;
    get filterInput(): cdktf.IResolvable | DataOciCertificatesManagementCertificatesFilter[] | undefined;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
