Class: Google::Apis::SqladminV1beta3::CloneContext

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sqladmin_v1beta3/classes.rb,
generated/google/apis/sqladmin_v1beta3/representations.rb,
generated/google/apis/sqladmin_v1beta3/representations.rb

Overview

Database instance clone context.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CloneContext

Returns a new instance of CloneContext



231
232
233
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 231

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bin_log_coordinatesGoogle::Apis::SqladminV1beta3::BinLogCoordinates

Binary log coordinates. Corresponds to the JSON property binLogCoordinates



214
215
216
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 214

def bin_log_coordinates
  @bin_log_coordinates
end

#destination_instance_nameString

Name of the Cloud SQL instance to be created as a clone. Corresponds to the JSON property destinationInstanceName

Returns:

  • (String)


219
220
221
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 219

def destination_instance_name
  @destination_instance_name
end

#kindString

This is always sql#cloneContext. Corresponds to the JSON property kind

Returns:

  • (String)


224
225
226
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 224

def kind
  @kind
end

#source_instance_nameString

Name of the Cloud SQL instance to be cloned. Corresponds to the JSON property sourceInstanceName

Returns:

  • (String)


229
230
231
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 229

def source_instance_name
  @source_instance_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



236
237
238
239
240
241
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 236

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)
  @source_instance_name = args[:source_instance_name] if args.key?(:source_instance_name)
end