class Google::Apis::SqladminV1beta4::CloneContext

Database instance clone context.

Attributes

bin_log_coordinates[RW]

Binary log coordinates. Corresponds to the JSON property `binLogCoordinates` @return [Google::Apis::SqladminV1beta4::BinLogCoordinates]

destination_instance_name[RW]

Name of the Cloud SQL instance to be created as a clone. Corresponds to the JSON property `destinationInstanceName` @return [String]

kind[RW]

This is always sql#cloneContext. Corresponds to the JSON property `kind` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 264
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 269
def update!(**args)
  @bin_log_coordinates = args[:bin_log_coordinates] if args.key?(:bin_log_coordinates)
  @destination_instance_name = args[:destination_instance_name] if args.key?(:destination_instance_name)
  @kind = args[:kind] if args.key?(:kind)
end