Class: Google::Apis::DatastoreV1::GoogleDatastoreAdminV1IndexOperationMetadata

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

Overview

Metadata for Index operations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDatastoreAdminV1IndexOperationMetadata

Returns a new instance of GoogleDatastoreAdminV1IndexOperationMetadata.



1122
1123
1124
# File 'lib/google/apis/datastore_v1/classes.rb', line 1122

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

Instance Attribute Details

#commonGoogle::Apis::DatastoreV1::GoogleDatastoreAdminV1CommonMetadata

Metadata common to all Datastore Admin operations. Corresponds to the JSON property common



1110
1111
1112
# File 'lib/google/apis/datastore_v1/classes.rb', line 1110

def common
  @common
end

#index_idString

The index resource ID that this operation is acting on. Corresponds to the JSON property indexId

Returns:

  • (String)


1115
1116
1117
# File 'lib/google/apis/datastore_v1/classes.rb', line 1115

def index_id
  @index_id
end

#progress_entitiesGoogle::Apis::DatastoreV1::GoogleDatastoreAdminV1Progress

Measures the progress of a particular metric. Corresponds to the JSON property progressEntities



1120
1121
1122
# File 'lib/google/apis/datastore_v1/classes.rb', line 1120

def progress_entities
  @progress_entities
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1127
1128
1129
1130
1131
# File 'lib/google/apis/datastore_v1/classes.rb', line 1127

def update!(**args)
  @common = args[:common] if args.key?(:common)
  @index_id = args[:index_id] if args.key?(:index_id)
  @progress_entities = args[:progress_entities] if args.key?(:progress_entities)
end