Class: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest

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

Overview

Request message for BigtableInstanceAdmin.UpdateLogicalView.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateLogicalViewRequest

Returns a new instance of UpdateLogicalViewRequest.



4787
4788
4789
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 4787

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

Instance Attribute Details

#logical_viewGoogle::Apis::BigtableadminV2::LogicalView

A SQL logical view object that can be referenced in SQL queries. Corresponds to the JSON property logicalView



4780
4781
4782
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 4780

def logical_view
  @logical_view
end

#update_maskString

Optional. The list of fields to update. Corresponds to the JSON property updateMask

Returns:

  • (String)


4785
4786
4787
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 4785

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4792
4793
4794
4795
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 4792

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