Class: Google::Apis::BigquerydatatransferV1::HierarchyDetail

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

Overview

Details about the hierarchy.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ HierarchyDetail

Returns a new instance of HierarchyDetail.



450
451
452
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 450

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

Instance Attribute Details

#partition_detailGoogle::Apis::BigquerydatatransferV1::PartitionDetail

Partition details related to hierarchy. Corresponds to the JSON property partitionDetail



443
444
445
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 443

def partition_detail
  @partition_detail
end

#table_detailGoogle::Apis::BigquerydatatransferV1::TableDetail

Table details related to hierarchy. Corresponds to the JSON property tableDetail



448
449
450
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 448

def table_detail
  @table_detail
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



455
456
457
458
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 455

def update!(**args)
  @partition_detail = args[:partition_detail] if args.key?(:partition_detail)
  @table_detail = args[:table_detail] if args.key?(:table_detail)
end