class Google::Apis::SqladminV1beta4::SyncFlags
Initial sync flags for certain Cloud SQL APIs. Currently used for the MySQL external server initial dump.
Attributes
name[RW]
The name of the flag. Corresponds to the JSON property `name` @return [String]
value[RW]
The value of the flag. This field must be omitted if the flag doesn't take a value. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3356 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 3361 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end