Class: Google::Apis::CloudsearchV1::Schema

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

The schema definition for a data source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Schema

Returns a new instance of Schema.



4439
4440
4441
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4439

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

Instance Attribute Details

#object_definitionsArray<Google::Apis::CloudsearchV1::ObjectDefinition>

The list of top-level objects for the data source. The maximum number of elements is 10. Corresponds to the JSON property objectDefinitions



4430
4431
4432
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4430

def object_definitions
  @object_definitions
end

#operation_idsArray<String>

IDs of the Long Running Operations (LROs) currently running for this schema. After modifying the schema, wait for operations to complete before indexing additional content. Corresponds to the JSON property operationIds

Returns:

  • (Array<String>)


4437
4438
4439
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4437

def operation_ids
  @operation_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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