class Google::Apis::SqladminV1beta4::BinLogCoordinates
Binary log coordinates.
Attributes
bin_log_file_name[RW]
Name of the binary log file for a Cloud SQL instance. Corresponds to the JSON property `binLogFileName` @return [String]
bin_log_position[RW]
Position (offset) within the binary log file. Corresponds to the JSON property `binLogPosition` @return [Fixnum]
kind[RW]
This is always `sql#binLogCoordinates`. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 390 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 395 def update!(**args) @bin_log_file_name = args[:bin_log_file_name] if args.key?(:bin_log_file_name) @bin_log_position = args[:bin_log_position] if args.key?(:bin_log_position) @kind = args[:kind] if args.key?(:kind) end