Class: Google::Apis::SqladminV1beta4::SqlInstancesGetLatestRecoveryTimeResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::SqlInstancesGetLatestRecoveryTimeResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb
Overview
Instance get latest recovery time response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always
sql#getLatestRecoveryTime. -
#latest_recovery_time ⇒ String
Timestamp, identifies the latest recovery time of the source instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlInstancesGetLatestRecoveryTimeResponse
constructor
A new instance of SqlInstancesGetLatestRecoveryTimeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlInstancesGetLatestRecoveryTimeResponse
Returns a new instance of SqlInstancesGetLatestRecoveryTimeResponse.
4193 4194 4195 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4193 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#getLatestRecoveryTime.
Corresponds to the JSON property kind
4186 4187 4188 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4186 def kind @kind end |
#latest_recovery_time ⇒ String
Timestamp, identifies the latest recovery time of the source instance.
Corresponds to the JSON property latestRecoveryTime
4191 4192 4193 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4191 def latest_recovery_time @latest_recovery_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4198 4199 4200 4201 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4198 def update!(**args) @kind = args[:kind] if args.key?(:kind) @latest_recovery_time = args[:latest_recovery_time] if args.key?(:latest_recovery_time) end |