Class: Google::Apis::SpannerV1::BackupInfo
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::BackupInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb
Overview
Information about a backup.
Instance Attribute Summary collapse
-
#backup ⇒ String
Name of the backup.
-
#create_time ⇒ String
The backup contains an externally consistent copy of
source_database
at the timestamp specified bycreate_time
. -
#source_database ⇒ String
Name of the database the backup was created from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackupInfo
constructor
A new instance of BackupInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackupInfo
Returns a new instance of BackupInfo.
119 120 121 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 119 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup ⇒ String
Name of the backup.
Corresponds to the JSON property backup
106 107 108 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 106 def backup @backup end |
#create_time ⇒ String
The backup contains an externally consistent copy of source_database
at the
timestamp specified by create_time
.
Corresponds to the JSON property createTime
112 113 114 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 112 def create_time @create_time end |
#source_database ⇒ String
Name of the database the backup was created from.
Corresponds to the JSON property sourceDatabase
117 118 119 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 117 def source_database @source_database end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
124 125 126 127 128 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 124 def update!(**args) @backup = args[:backup] if args.key?(:backup) @create_time = args[:create_time] if args.key?(:create_time) @source_database = args[:source_database] if args.key?(:source_database) end |