ClusterConfigFileResponse

data class ClusterConfigFileResponse(val content: String? = null, val encoding: String? = null, val fileName: String, val path: String? = null, val values: Map<String, String>? = null)

Cluster configuration files.

Constructors

Link copied to clipboard
constructor(content: String? = null, encoding: String? = null, fileName: String, path: String? = null, values: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val content: String? = null

Free form content of the entire configuration file.

Link copied to clipboard
val encoding: String? = null

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.

Link copied to clipboard

Configuration file name.

Link copied to clipboard
val path: String? = null

Path of the config file if content is specified.

Link copied to clipboard
val values: Map<String, String>? = null

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