BackupConfigResponse

data class BackupConfigResponse(val allNamespaces: Boolean, val encryptionKey: EncryptionKeyResponse, val includeSecrets: Boolean, val includeVolumeData: Boolean, val selectedApplications: NamespacedNamesResponse, val selectedNamespaces: NamespacesResponse)

BackupConfig defines the configuration of Backups created via this BackupPlan.

Constructors

Link copied to clipboard
fun BackupConfigResponse(allNamespaces: Boolean, encryptionKey: EncryptionKeyResponse, includeSecrets: Boolean, includeVolumeData: Boolean, selectedApplications: NamespacedNamesResponse, selectedNamespaces: NamespacesResponse)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If True, include all namespaced resources

Link copied to clipboard

This defines a customer managed encryption key that will be used to encrypt the "config" portion (the Kubernetes resources) of Backups created via this plan. Default (empty): Config backup artifacts will not be encrypted.

Link copied to clipboard

This flag specifies whether Kubernetes Secret resources should be included when they fall into the scope of Backups. Default: False

Link copied to clipboard

This flag specifies whether volume data should be backed up when PVCs are included in the scope of a Backup. Default: False

Link copied to clipboard

If set, include just the resources referenced by the listed ProtectedApplications.

Link copied to clipboard

If set, include just the resources in the listed namespaces.