import * as pulumi from "@pulumi/pulumi"; /** * Data Source schema for Volcengine::RDSPostgreSQL::InstanceSSL */ export declare function getInstanceSsl(args: GetInstanceSslArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstanceSsl. */ export interface GetInstanceSslArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getInstanceSsl. */ export interface GetInstanceSslResult { /** * Protected address. */ readonly addresses: string[]; /** * Is force encryption enabled? Value: true: Yes. false: No. */ readonly forceEncryption: boolean; /** * Uniquely identifies the resource. */ readonly id: string; /** * Instance ID. */ readonly instanceId: string; /** * Is the SSL certificate valid? Value: true: Yes. false: No. */ readonly isValid: boolean; /** * If set to true, the SSL certificate validity period will be updated. */ readonly reloadSslCertificate: boolean; /** * Is SSL functionality enabled? Value: true: Yes. false: No. */ readonly sslEnable: boolean; /** * SSL certificate expiration time. Format: yyyy-MM-ddTHH:mm:ss (UTC). */ readonly sslExpireTime: string; /** * Supported TLS versions. */ readonly tlsVersions: string[]; } /** * Data Source schema for Volcengine::RDSPostgreSQL::InstanceSSL */ export declare function getInstanceSslOutput(args: GetInstanceSslOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstanceSsl. */ export interface GetInstanceSslOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }