Class: Google::Cloud::AlloyDB::V1alpha::Backup
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1alpha::Backup
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1alpha/resources.rb
Overview
Message describing Backup object
Defined Under Namespace
Modules: State, Type Classes: AnnotationsEntry, LabelsEntry, QuantityBasedExpiry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Annotations to allow client tools to store small amount of arbitrary data.
-
#cluster_name ⇒ ::String
Required.
-
#cluster_uid ⇒ ::String
readonly
Output only.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#database_version ⇒ ::Google::Cloud::AlloyDB::V1alpha::DatabaseVersion
readonly
Output only.
-
#delete_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#description ⇒ ::String
User-provided description of the backup.
-
#display_name ⇒ ::String
User-settable and human-readable display name for the Backup.
-
#encryption_config ⇒ ::Google::Cloud::AlloyDB::V1alpha::EncryptionConfig
Optional.
-
#encryption_info ⇒ ::Google::Cloud::AlloyDB::V1alpha::EncryptionInfo
readonly
Output only.
-
#etag ⇒ ::String
For Resource freshness validation (https://google.aip.dev/154).
-
#expiry_quantity ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::QuantityBasedExpiry
readonly
Output only.
-
#expiry_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Labels as key value pairs.
-
#name ⇒ ::String
readonly
Output only.
-
#reconciling ⇒ ::Boolean
readonly
Output only.
-
#satisfies_pzs ⇒ ::Boolean
Reserved for future use.
-
#size_bytes ⇒ ::Integer
readonly
Output only.
-
#state ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::State
readonly
Output only.
-
#type ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::Type
The backup type, which suggests the trigger for the backup.
-
#uid ⇒ ::String
readonly
Output only.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
Instance Attribute Details
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels. https://google.aip.dev/128.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#cluster_name ⇒ ::String
Returns Required. The full resource name of the backup source cluster (e.g., projects/{project}/locations/{region}/clusters/{cluster_id}).
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#cluster_uid ⇒ ::String (readonly)
Returns Output only. The system-generated UID of the cluster which was used to create this resource.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Create time stamp.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#database_version ⇒ ::Google::Cloud::AlloyDB::V1alpha::DatabaseVersion (readonly)
Returns Output only. The database engine major version of the cluster this backup was created from. Any restored cluster created from this backup will have the same database version.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#delete_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Delete time stamp.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#description ⇒ ::String
Returns User-provided description of the backup.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#display_name ⇒ ::String
Returns User-settable and human-readable display name for the Backup.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#encryption_config ⇒ ::Google::Cloud::AlloyDB::V1alpha::EncryptionConfig
Returns Optional. The encryption config can be specified to encrypt the backup with a customer-managed encryption key (CMEK). When this field is not specified, the backup will then use default encryption scheme to protect the user data.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#encryption_info ⇒ ::Google::Cloud::AlloyDB::V1alpha::EncryptionInfo (readonly)
Returns Output only. The encryption information for the backup.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#etag ⇒ ::String
Returns For Resource freshness validation (https://google.aip.dev/154).
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#expiry_quantity ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::QuantityBasedExpiry (readonly)
Returns Output only. The QuantityBasedExpiry of the backup, specified by the backup's retention policy. Once the expiry quantity is over retention, the backup is eligible to be garbage collected.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#expiry_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time at which after the backup is eligible to be garbage collected. It is the duration specified by the backup's retention policy, added to the backup's create_time.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Labels as key value pairs.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#name ⇒ ::String (readonly)
Returns Output only. The name of the backup resource with the format:
- projects/{project}/locations/{region}/backups/{backup_id}
where the cluster and backup ID segments should satisfy the regex
expression
[a-z]([a-z0-9-]{0,61}[a-z0-9])?
, e.g. 1-63 characters of lowercase letters, numbers, and dashes, starting with a letter, and ending with a letter or number. For more details see https://google.aip.dev/122. The prefix of the backup resource name is the name of the parent resource: - projects/{project}/locations/{region}.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#reconciling ⇒ ::Boolean (readonly)
Returns Output only. Reconciling (https://google.aip.dev/128#reconciliation), if true, indicates that the service is actively updating the resource. This can happen due to user-triggered updates or system actions like failover or maintenance.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#satisfies_pzs ⇒ ::Boolean
Returns Reserved for future use.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#size_bytes ⇒ ::Integer (readonly)
Returns Output only. The size of the backup in bytes.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#state ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::State (readonly)
Returns Output only. The current state of the backup.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#type ⇒ ::Google::Cloud::AlloyDB::V1alpha::Backup::Type
Returns The backup type, which suggests the trigger for the backup.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#uid ⇒ ::String (readonly)
Returns Output only. The system-generated UID of the resource. The UID is assigned when the resource is created, and it is retained until it is deleted.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. Update time stamp.
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
# File 'proto_docs/google/cloud/alloydb/v1alpha/resources.rb', line 1001 class Backup include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A backup's position in a quantity-based retention queue, of backups with # the same source cluster and type, with length, retention, specified by the # backup's retention policy. # Once the position is greater than the retention, the backup is eligible to # be garbage collected. # # Example: 5 backups from the same source cluster and type with a # quantity-based retention of 3 and denoted by backup_id (position, # retention). # # Safe: backup_5 (1, 3), backup_4, (2, 3), backup_3 (3, 3). # Awaiting garbage collection: backup_2 (4, 3), backup_1 (5, 3) # @!attribute [r] retention_count # @return [::Integer] # Output only. The backup's position among its backups with the same source # cluster and type, by descending chronological order create time(i.e. # newest first). # @!attribute [r] total_retention_count # @return [::Integer] # Output only. The length of the quantity-based queue, specified by the # backup's retention policy. class QuantityBasedExpiry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Backup State module State # The state of the backup is unknown. STATE_UNSPECIFIED = 0 # The backup is ready. READY = 1 # The backup is creating. CREATING = 2 # The backup failed. FAILED = 3 # The backup is being deleted. DELETING = 4 end # Backup Type module Type # Backup Type is unknown. TYPE_UNSPECIFIED = 0 # ON_DEMAND backups that were triggered by the customer (e.g., not # AUTOMATED). ON_DEMAND = 1 # AUTOMATED backups triggered by the automated backups scheduler pursuant # to an automated backup policy. AUTOMATED = 2 # CONTINUOUS backups triggered by the automated backups scheduler # due to a continuous backup policy. CONTINUOUS = 3 end end |