Class: Google::Apis::CloudsearchV1::DataSource
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::DataSource
- 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
Datasource is a logical namespace for items to be indexed. All items must belong to a datasource. This is the prerequisite before items can be indexed into Cloud Search.
Instance Attribute Summary collapse
-
#disable_modifications ⇒ Boolean
(also: #disable_modifications?)
If true, sets the datasource to read-only mode.
-
#disable_serving ⇒ Boolean
(also: #disable_serving?)
Disable serving any search or assist results.
-
#display_name ⇒ String
Required.
-
#indexing_service_accounts ⇒ Array<String>
List of service accounts that have indexing access.
-
#items_visibility ⇒ Array<Google::Apis::CloudsearchV1::GSuitePrincipal>
This field restricts visibility to items at the datasource level.
-
#name ⇒ String
Name of the datasource resource.
-
#operation_ids ⇒ Array<String>
IDs of the Long Running Operations (LROs) currently running for this schema.
-
#short_name ⇒ String
A short name or alias for the source.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataSource
constructor
A new instance of DataSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataSource
Returns a new instance of DataSource.
412 413 414 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 412 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_modifications ⇒ Boolean Also known as: disable_modifications?
If true, sets the datasource to read-only mode. In read-only mode, the
Indexing API rejects any requests to index or delete items in this source.
Enabling read-only mode does not stop the processing of previously accepted
data.
Corresponds to the JSON property disableModifications
361 362 363 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 361 def disable_modifications @disable_modifications end |
#disable_serving ⇒ Boolean Also known as: disable_serving?
Disable serving any search or assist results.
Corresponds to the JSON property disableServing
367 368 369 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 367 def disable_serving @disable_serving end |
#display_name ⇒ String
Required. Display name of the datasource The maximum length is 300 characters.
Corresponds to the JSON property displayName
373 374 375 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 373 def display_name @display_name end |
#indexing_service_accounts ⇒ Array<String>
List of service accounts that have indexing access.
Corresponds to the JSON property indexingServiceAccounts
378 379 380 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 378 def indexing_service_accounts @indexing_service_accounts end |
#items_visibility ⇒ Array<Google::Apis::CloudsearchV1::GSuitePrincipal>
This field restricts visibility to items at the datasource level. Items within
the datasource are restricted to the union of users and groups included in
this field. Note that, this does not ensure access to a specific item, as
users need to have ACL permissions on the contained items. This ensures a high
level access on the entire datasource, and that the individual items are not
shared outside this visibility.
Corresponds to the JSON property itemsVisibility
388 389 390 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 388 def items_visibility @items_visibility end |
#name ⇒ String
Name of the datasource resource. Format: datasources/source_id
. The name is
ignored when creating a datasource.
Corresponds to the JSON property name
394 395 396 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 394 def name @name end |
#operation_ids ⇒ Array<String>
IDs of the Long Running Operations (LROs) currently running for this schema.
Corresponds to the JSON property operationIds
399 400 401 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 399 def operation_ids @operation_ids end |
#short_name ⇒ String
A short name or alias for the source. This value will be used to match the '
source' operator. For example, if the short name is shortName
410 411 412 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 410 def short_name @short_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
417 418 419 420 421 422 423 424 425 426 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 417 def update!(**args) @disable_modifications = args[:disable_modifications] if args.key?(:disable_modifications) @disable_serving = args[:disable_serving] if args.key?(:disable_serving) @display_name = args[:display_name] if args.key?(:display_name) @indexing_service_accounts = args[:indexing_service_accounts] if args.key?(:indexing_service_accounts) @items_visibility = args[:items_visibility] if args.key?(:items_visibility) @name = args[:name] if args.key?(:name) @operation_ids = args[:operation_ids] if args.key?(:operation_ids) @short_name = args[:short_name] if args.key?(:short_name) end |