Class: Google::Apis::BigqueryV2::IndexUnusedReason

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IndexUnusedReason

Returns a new instance of IndexUnusedReason.



3465
3466
3467
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3465

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

Instance Attribute Details

#base_tableGoogle::Apis::BigqueryV2::TableReference

[Output-only] Specifies the base table involved in the reason that no search index was used. Corresponds to the JSON property baseTable



3446
3447
3448
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3446

def base_table
  @base_table
end

#codeString

[Output-only] Specifies the high-level reason for the scenario when no search index was used. Corresponds to the JSON property code

Returns:

  • (String)


3452
3453
3454
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3452

def code
  @code
end

#index_nameString

[Output-only] Specifies the name of the unused search index, if available. Corresponds to the JSON property indexName

Returns:

  • (String)


3457
3458
3459
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3457

def index_name
  @index_name
end

#messageString

[Output-only] Free form human-readable reason for the scenario when no search index was used. Corresponds to the JSON property message

Returns:

  • (String)


3463
3464
3465
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3463

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3470
3471
3472
3473
3474
3475
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3470

def update!(**args)
  @base_table = args[:base_table] if args.key?(:base_table)
  @code = args[:code] if args.key?(:code)
  @index_name = args[:index_name] if args.key?(:index_name)
  @message = args[:message] if args.key?(:message)
end