Class: Google::Cloud::GkeBackup::V1::BackupPlanBinding::BackupPlanDetails
- Inherits:
-
Object
- Object
- Google::Cloud::GkeBackup::V1::BackupPlanBinding::BackupPlanDetails
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb
Overview
Contains metadata about the backup plan/backup.
Defined Under Namespace
Modules: State
Instance Attribute Summary collapse
-
#last_successful_backup ⇒ ::String
readonly
Output only.
-
#last_successful_backup_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#next_scheduled_backup_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#protected_pod_count ⇒ ::Integer
readonly
Output only.
-
#rpo_risk_level ⇒ ::Integer
readonly
Output only.
-
#state ⇒ ::Google::Cloud::GkeBackup::V1::BackupPlanBinding::BackupPlanDetails::State
readonly
Output only.
Instance Attribute Details
#last_successful_backup ⇒ ::String (readonly)
Returns Output only. The fully qualified name of the last successful Backup
created under this BackupPlan.
projects/*/locations/*/backupPlans/*/backups/*
.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |
#last_successful_backup_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Completion time of the last successful Backup. This is sourced from a successful Backup's complete_time field.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |
#next_scheduled_backup_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Start time of next scheduled backup under this BackupPlan by either cron_schedule or rpo config. This is sourced from BackupPlan.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |
#protected_pod_count ⇒ ::Integer (readonly)
Returns Output only. The number of Kubernetes Pods backed up in the last successful Backup created via this BackupPlan.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |
#rpo_risk_level ⇒ ::Integer (readonly)
Returns Output only. A number that represents the current risk level of this BackupPlan from RPO perspective with 1 being no risk and 5 being highest risk.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |
#state ⇒ ::Google::Cloud::GkeBackup::V1::BackupPlanBinding::BackupPlanDetails::State (readonly)
Returns Output only. State of the BackupPlan.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'proto_docs/google/cloud/gkebackup/v1/backup_plan_binding.rb', line 98 class BackupPlanDetails include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # State module State # Default first value for Enums. STATE_UNSPECIFIED = 0 # Waiting for cluster state to be RUNNING. CLUSTER_PENDING = 1 # The BackupPlan is in the process of being created. PROVISIONING = 2 # The BackupPlan has successfully been created and is ready for Backups. READY = 3 # BackupPlan creation has failed. FAILED = 4 # The BackupPlan has been deactivated. DEACTIVATED = 5 # The BackupPlan is in the process of being deleted. DELETING = 6 end end |