Class: Google::Apis::CloudsearchV1::SearchApplication

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

SearchApplication

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SearchApplication

Returns a new instance of SearchApplication.



4502
4503
4504
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4502

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

Instance Attribute Details

#data_source_restrictionsArray<Google::Apis::CloudsearchV1::DataSourceRestriction>

Retrictions applied to the configurations. The maximum number of elements is 10. Corresponds to the JSON property dataSourceRestrictions



4444
4445
4446
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4444

def data_source_restrictions
  @data_source_restrictions
end

#default_facet_optionsArray<Google::Apis::CloudsearchV1::FacetOptions>

The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above. Corresponds to the JSON property defaultFacetOptions



4450
4451
4452
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4450

def default_facet_options
  @default_facet_options
end

#default_sort_optionsGoogle::Apis::CloudsearchV1::SortOptions

The default options for sorting the search results Corresponds to the JSON property defaultSortOptions



4455
4456
4457
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4455

def default_sort_options
  @default_sort_options
end

#display_nameString

Display name of the Search Application. The maximum length is 300 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


4460
4461
4462
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4460

def display_name
  @display_name
end

#enable_audit_logBoolean Also known as: enable_audit_log?

Indicates whether audit logging is on/off for requests made for the search application in query APIs. Corresponds to the JSON property enableAuditLog

Returns:

  • (Boolean)


4466
4467
4468
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4466

def enable_audit_log
  @enable_audit_log
end

#nameString

Name of the Search Application. Format: searchapplications/application_id. Corresponds to the JSON property name

Returns:

  • (String)


4472
4473
4474
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4472

def name
  @name
end

#operation_idsArray<String>

Output only. IDs of the Long Running Operations (LROs) currently running for this schema. Output only field. Corresponds to the JSON property operationIds

Returns:

  • (Array<String>)


4478
4479
4480
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4478

def operation_ids
  @operation_ids
end

#query_interpretation_configGoogle::Apis::CloudsearchV1::QueryInterpretationConfig

Default options to interpret user query. Corresponds to the JSON property queryInterpretationConfig



4483
4484
4485
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4483

def query_interpretation_config
  @query_interpretation_config
end

#return_result_thumbnail_urlsBoolean Also known as: return_result_thumbnail_urls?

With each result we should return the URI for its thumbnail (when applicable) Corresponds to the JSON property returnResultThumbnailUrls

Returns:

  • (Boolean)


4488
4489
4490
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4488

def return_result_thumbnail_urls
  @return_result_thumbnail_urls
end

#scoring_configGoogle::Apis::CloudsearchV1::ScoringConfig

Scoring configurations for a source while processing a Search or Suggest request. Corresponds to the JSON property scoringConfig



4495
4496
4497
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4495

def scoring_config
  @scoring_config
end

#source_configArray<Google::Apis::CloudsearchV1::SourceConfig>

Configuration for a sources specified in data_source_restrictions. Corresponds to the JSON property sourceConfig



4500
4501
4502
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4500

def source_config
  @source_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4507

def update!(**args)
  @data_source_restrictions = args[:data_source_restrictions] if args.key?(:data_source_restrictions)
  @default_facet_options = args[:default_facet_options] if args.key?(:default_facet_options)
  @default_sort_options = args[:default_sort_options] if args.key?(:default_sort_options)
  @display_name = args[:display_name] if args.key?(:display_name)
  @enable_audit_log = args[:enable_audit_log] if args.key?(:enable_audit_log)
  @name = args[:name] if args.key?(:name)
  @operation_ids = args[:operation_ids] if args.key?(:operation_ids)
  @query_interpretation_config = args[:query_interpretation_config] if args.key?(:query_interpretation_config)
  @return_result_thumbnail_urls = args[:return_result_thumbnail_urls] if args.key?(:return_result_thumbnail_urls)
  @scoring_config = args[:scoring_config] if args.key?(:scoring_config)
  @source_config = args[:source_config] if args.key?(:source_config)
end