Package version:

Cluster configuration files.

interface ClusterConfigFile {
    content?: string;
    encoding?: string;
    fileName: string;
    path?: string;
    values?: {
        [propertyName: string]: string;
    };
}

Properties

content?: string

Free form content of the entire configuration file.

encoding?: string

This property indicates if the content is encoded and is case-insensitive. Please set the value to base64 if the content is base64 encoded. Set it to none or skip it if the content is plain text.

fileName: string

Configuration file name.

path?: string

Path of the config file if content is specified.

values?: {
    [propertyName: string]: string;
}

List of key value pairs where key represents a valid service configuration name and value represents the value of the config.