UNPKG

rhizo-co-terraform-provider-oci

Version:

Prebuilt oci Provider for Terraform CDK (cdktf)

70 lines (69 loc) 3.66 kB
import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataOciGoldenGateDeploymentCertificateConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_deployment_certificate#certificate_key DataOciGoldenGateDeploymentCertificate#certificate_key} */ readonly certificateKey: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_deployment_certificate#deployment_id DataOciGoldenGateDeploymentCertificate#deployment_id} */ readonly deploymentId: string; } /** * Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_deployment_certificate oci_golden_gate_deployment_certificate} */ export declare class DataOciGoldenGateDeploymentCertificate extends cdktf.TerraformDataSource { static readonly tfResourceType = "oci_golden_gate_deployment_certificate"; /** * Generates CDKTF code for importing a DataOciGoldenGateDeploymentCertificate 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 DataOciGoldenGateDeploymentCertificate to import * @param importFromId The id of the existing DataOciGoldenGateDeploymentCertificate that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/golden_gate_deployment_certificate#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataOciGoldenGateDeploymentCertificate 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/golden_gate_deployment_certificate oci_golden_gate_deployment_certificate} 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 DataOciGoldenGateDeploymentCertificateConfig */ constructor(scope: Construct, id: string, config: DataOciGoldenGateDeploymentCertificateConfig); get authorityKeyId(): string; get certificateContent(): string; private _certificateKey?; get certificateKey(): string; set certificateKey(value: string); get certificateKeyInput(): string | undefined; private _deploymentId?; get deploymentId(): string; set deploymentId(value: string); get deploymentIdInput(): string | undefined; get id(): string; get isCa(): cdktf.IResolvable; get isLockOverride(): cdktf.IResolvable; get isSelfSigned(): cdktf.IResolvable; get issuer(): string; get key(): string; get md5Hash(): string; get publicKey(): string; get publicKeyAlgorithm(): string; get publicKeySize(): string; get serial(): string; get sha1Hash(): string; get state(): string; get subject(): string; get subjectKeyId(): string; get timeCreated(): string; get timeValidFrom(): string; get timeValidTo(): string; get version(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }