Class: Google::Apis::CloudsearchV1::QuerySource

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

Overview

List of sources that the user can search using the query API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ QuerySource

Returns a new instance of QuerySource.



16645
16646
16647
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16645

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

Instance Attribute Details

#display_nameString

Display name of the data source. Corresponds to the JSON property displayName

Returns:

  • (String)


16627
16628
16629
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16627

def display_name
  @display_name
end

#operatorsArray<Google::Apis::CloudsearchV1::QueryOperator>

List of all operators applicable for this source. Corresponds to the JSON property operators



16632
16633
16634
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16632

def operators
  @operators
end

#short_nameString

A short name or alias for the source. This value can be used with the 'source' operator. Corresponds to the JSON property shortName

Returns:

  • (String)


16638
16639
16640
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16638

def short_name
  @short_name
end

#sourceGoogle::Apis::CloudsearchV1::Source

Defines sources for the suggest/search APIs. Corresponds to the JSON property source



16643
16644
16645
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16643

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16650
16651
16652
16653
16654
16655
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16650

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @operators = args[:operators] if args.key?(:operators)
  @short_name = args[:short_name] if args.key?(:short_name)
  @source = args[:source] if args.key?(:source)
end