UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

138 lines (137 loc) 7.61 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciKmsKeyVersionConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/kms_key_version#key_id DataOciKmsKeyVersion#key_id} */ readonly keyId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/kms_key_version#key_version_id DataOciKmsKeyVersion#key_version_id} */ readonly keyVersionId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/kms_key_version#management_endpoint DataOciKmsKeyVersion#management_endpoint} */ readonly managementEndpoint: string; } export interface DataOciKmsKeyVersionExternalKeyReferenceDetails { } export declare function dataOciKmsKeyVersionExternalKeyReferenceDetailsToTerraform(struct?: DataOciKmsKeyVersionExternalKeyReferenceDetails): any; export declare function dataOciKmsKeyVersionExternalKeyReferenceDetailsToHclTerraform(struct?: DataOciKmsKeyVersionExternalKeyReferenceDetails): any; export declare class DataOciKmsKeyVersionExternalKeyReferenceDetailsOutputReference 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(): DataOciKmsKeyVersionExternalKeyReferenceDetails | undefined; set internalValue(value: DataOciKmsKeyVersionExternalKeyReferenceDetails | undefined); get externalKeyId(): string; get externalKeyVersionId(): string; } export declare class DataOciKmsKeyVersionExternalKeyReferenceDetailsList 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): DataOciKmsKeyVersionExternalKeyReferenceDetailsOutputReference; } export interface DataOciKmsKeyVersionReplicaDetails { } export declare function dataOciKmsKeyVersionReplicaDetailsToTerraform(struct?: DataOciKmsKeyVersionReplicaDetails): any; export declare function dataOciKmsKeyVersionReplicaDetailsToHclTerraform(struct?: DataOciKmsKeyVersionReplicaDetails): any; export declare class DataOciKmsKeyVersionReplicaDetailsOutputReference 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(): DataOciKmsKeyVersionReplicaDetails | undefined; set internalValue(value: DataOciKmsKeyVersionReplicaDetails | undefined); get replicationId(): string; } export declare class DataOciKmsKeyVersionReplicaDetailsList 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): DataOciKmsKeyVersionReplicaDetailsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/kms_key_version oci_kms_key_version} */ export declare class DataOciKmsKeyVersion extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_kms_key_version"; /** * Generates CDKTF code for importing a DataOciKmsKeyVersion 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 DataOciKmsKeyVersion to import * @param importFromId The id of the existing DataOciKmsKeyVersion that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/kms_key_version#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciKmsKeyVersion 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/kms_key_version oci_kms_key_version} 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 DataOciKmsKeyVersionConfig */ constructor(scope: Construct, id: string, config: DataOciKmsKeyVersionConfig); get compartmentId(): string; private _externalKeyReferenceDetails; get externalKeyReferenceDetails(): DataOciKmsKeyVersionExternalKeyReferenceDetailsList; get externalKeyVersionId(): string; get id(): string; get isAutoRotated(): cdktf.IResolvable; get isPrimary(): cdktf.IResolvable; private _keyId?; get keyId(): string; set keyId(value: string); get keyIdInput(): string | undefined; private _keyVersionId?; get keyVersionId(): string; set keyVersionId(value: string); get keyVersionIdInput(): string | undefined; private _managementEndpoint?; get managementEndpoint(): string; set managementEndpoint(value: string); get managementEndpointInput(): string | undefined; get publicKey(): string; private _replicaDetails; get replicaDetails(): DataOciKmsKeyVersionReplicaDetailsList; get restoredFromKeyId(): string; get restoredFromKeyVersionId(): string; get state(): string; get timeCreated(): string; get timeOfDeletion(): string; get vaultId(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }