Class: Google::Apis::DatamigrationV1::SingleColumnChange

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

Overview

Options to configure rule type SingleColumnChange. The rule is used to change the properties of a column. The rule filter field can refer to one entity. The rule scope can be one of: Column. When using this rule, if a field is not specified than the destination column's configuration will be the same as the one in the source column..

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SingleColumnChange

Returns a new instance of SingleColumnChange.



4614
4615
4616
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4614

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

Instance Attribute Details

#arrayBoolean Also known as: array?

Optional. Is the column of array type. Corresponds to the JSON property array

Returns:

  • (Boolean)


4536
4537
4538
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4536

def array
  @array
end

#array_lengthFixnum

Optional. The length of the array, only relevant if the column type is an array. Corresponds to the JSON property arrayLength

Returns:

  • (Fixnum)


4543
4544
4545
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4543

def array_length
  @array_length
end

#auto_generatedBoolean Also known as: auto_generated?

Optional. Is the column auto-generated/identity. Corresponds to the JSON property autoGenerated

Returns:

  • (Boolean)


4548
4549
4550
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4548

def auto_generated
  @auto_generated
end

#charsetString

Optional. Charset override - instead of table level charset. Corresponds to the JSON property charset

Returns:

  • (String)


4554
4555
4556
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4554

def charset
  @charset
end

#collationString

Optional. Collation override - instead of table level collation. Corresponds to the JSON property collation

Returns:

  • (String)


4559
4560
4561
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4559

def collation
  @collation
end

#commentString

Optional. Comment associated with the column. Corresponds to the JSON property comment

Returns:

  • (String)


4564
4565
4566
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4564

def comment
  @comment
end

#custom_featuresHash<String,Object>

Optional. Custom engine specific features. Corresponds to the JSON property customFeatures

Returns:

  • (Hash<String,Object>)


4569
4570
4571
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4569

def custom_features
  @custom_features
end

#data_typeString

Optional. Column data type name. Corresponds to the JSON property dataType

Returns:

  • (String)


4574
4575
4576
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4574

def data_type
  @data_type
end

#fractional_seconds_precisionFixnum

Optional. Column fractional seconds precision - e.g. 2 as in timestamp (2) - when relevant. Corresponds to the JSON property fractionalSecondsPrecision

Returns:

  • (Fixnum)


4580
4581
4582
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4580

def fractional_seconds_precision
  @fractional_seconds_precision
end

#lengthFixnum

Optional. Column length - e.g. 50 as in varchar (50) - when relevant. Corresponds to the JSON property length

Returns:

  • (Fixnum)


4585
4586
4587
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4585

def length
  @length
end

#nullableBoolean Also known as: nullable?

Optional. Is the column nullable. Corresponds to the JSON property nullable

Returns:

  • (Boolean)


4590
4591
4592
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4590

def nullable
  @nullable
end

#precisionFixnum

Optional. Column precision - e.g. 8 as in double (8,2) - when relevant. Corresponds to the JSON property precision

Returns:

  • (Fixnum)


4596
4597
4598
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4596

def precision
  @precision
end

#scaleFixnum

Optional. Column scale - e.g. 2 as in double (8,2) - when relevant. Corresponds to the JSON property scale

Returns:

  • (Fixnum)


4601
4602
4603
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4601

def scale
  @scale
end

#set_valuesArray<String>

Optional. Specifies the list of values allowed in the column. Corresponds to the JSON property setValues

Returns:

  • (Array<String>)


4606
4607
4608
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4606

def set_values
  @set_values
end

#udtBoolean Also known as: udt?

Optional. Is the column a UDT (User-defined Type). Corresponds to the JSON property udt

Returns:

  • (Boolean)


4611
4612
4613
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4611

def udt
  @udt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
# File 'lib/google/apis/datamigration_v1/classes.rb', line 4619

def update!(**args)
  @array = args[:array] if args.key?(:array)
  @array_length = args[:array_length] if args.key?(:array_length)
  @auto_generated = args[:auto_generated] if args.key?(:auto_generated)
  @charset = args[:charset] if args.key?(:charset)
  @collation = args[:collation] if args.key?(:collation)
  @comment = args[:comment] if args.key?(:comment)
  @custom_features = args[:custom_features] if args.key?(:custom_features)
  @data_type = args[:data_type] if args.key?(:data_type)
  @fractional_seconds_precision = args[:fractional_seconds_precision] if args.key?(:fractional_seconds_precision)
  @length = args[:length] if args.key?(:length)
  @nullable = args[:nullable] if args.key?(:nullable)
  @precision = args[:precision] if args.key?(:precision)
  @scale = args[:scale] if args.key?(:scale)
  @set_values = args[:set_values] if args.key?(:set_values)
  @udt = args[:udt] if args.key?(:udt)
end