import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Default Configuration resource in Oracle Cloud Infrastructure Psql service. * * Gets a default configuration by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDefaultConfiguration = oci.psql.getDefaultConfiguration({ * defaultConfigurationId: testDefaultConfigurationOciPsqlDefaultConfiguration.id, * }); * ``` */ export declare function getDefaultConfiguration(args: GetDefaultConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDefaultConfiguration. */ export interface GetDefaultConfigurationArgs { /** * Indicates the collection of compatible shapes for this configuration. */ compatibleShapes?: string[]; /** * A unique identifier for the configuration. */ defaultConfigurationId: string; /** * The name of the shape for the configuration. */ shape?: string; } /** * A collection of values returned by getDefaultConfiguration. */ export interface GetDefaultConfigurationResult { /** * Indicates the collection of compatible shapes for this configuration. */ readonly compatibleShapes: string[]; /** * List of default configuration values for databases. */ readonly configurationDetails: outputs.Psql.GetDefaultConfigurationConfigurationDetail[]; /** * Version of the PostgreSQL database. */ readonly dbVersion: string; readonly defaultConfigurationId: string; /** * A description for the configuration. */ readonly description: string; /** * A user-friendly display name for the configuration. */ readonly displayName: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Memory size in gigabytes with 1GB increment. */ readonly instanceMemorySizeInGbs: number; /** * CPU core count. */ readonly instanceOcpuCount: number; /** * True if the configuration supports flexible shapes, false otherwise. */ readonly isFlexible: boolean; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * The name of the shape for the configuration. */ readonly shape: string; /** * The current state of the configuration. */ readonly state: string; /** * The date and time that the configuration was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Default Configuration resource in Oracle Cloud Infrastructure Psql service. * * Gets a default configuration by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDefaultConfiguration = oci.psql.getDefaultConfiguration({ * defaultConfigurationId: testDefaultConfigurationOciPsqlDefaultConfiguration.id, * }); * ``` */ export declare function getDefaultConfigurationOutput(args: GetDefaultConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDefaultConfiguration. */ export interface GetDefaultConfigurationOutputArgs { /** * Indicates the collection of compatible shapes for this configuration. */ compatibleShapes?: pulumi.Input[] | undefined>; /** * A unique identifier for the configuration. */ defaultConfigurationId: pulumi.Input; /** * The name of the shape for the configuration. */ shape?: pulumi.Input; } //# sourceMappingURL=getDefaultConfiguration.d.ts.map