import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::Redis::ParameterGroup */ export declare function getParameterGroup(args: GetParameterGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getParameterGroup. */ export interface GetParameterGroupArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getParameterGroup. */ export interface GetParameterGroupResult { /** * Parameter group creation time */ readonly createTime: string; /** * Whether it is the default parameter group */ readonly default: boolean; /** * Parameter group description */ readonly description: string; /** * Redis engine version for the parameter group */ readonly engineVersion: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Parameter group name */ readonly name: string; /** * List of parameter values to set */ readonly paramValues: outputs.redis.GetParameterGroupParamValue[]; /** * Parameter group ID, automatically generated by the system */ readonly parameterGroupId: string; /** * List of parameter details in the parameter group, must be provided when modifying */ readonly parameters: outputs.redis.GetParameterGroupParameter[]; /** * Parameter group source. Values: System (system parameter group), User (user parameter group) */ readonly source: string; /** * Parameter group update time */ readonly updateTime: string; } /** * Data Source schema for Volcengine::Redis::ParameterGroup */ export declare function getParameterGroupOutput(args: GetParameterGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getParameterGroup. */ export interface GetParameterGroupOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }