google-cloud-datastore 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/LOGGING.md +1 -1
- data/lib/google-cloud-datastore.rb +1 -1
- data/lib/google/cloud/datastore/v1/datastore_client.rb +22 -22
- data/lib/google/cloud/datastore/v1/doc/google/datastore/v1/datastore.rb +12 -12
- data/lib/google/cloud/datastore/v1/doc/google/datastore/v1/entity.rb +16 -16
- data/lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb +18 -18
- data/lib/google/cloud/datastore/v1/doc/google/protobuf/wrappers.rb +18 -18
- data/lib/google/cloud/datastore/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1b2e5fa18b768eeccbf94acc5f54c4d41af3d1db1ee9bec6d4b10c8568e21ac
|
4
|
+
data.tar.gz: 46a422faaed27da2fa8f20e6fdff449c585b96748f826a3c79c9318fa2a46004
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99e6d62a463c0bd7a737434327bed5822edda0e9009408423a1e094e172cff9838f365e5d2a913642177081665aa13d7ccd126f196abfca32e5d21d4aa7182c2
|
7
|
+
data.tar.gz: e90bb6803f71a42fbaa6b7da129bb32263bbe9d7e05fdaad4b74a2bfef97c738e19f8f6cb1c97641df99e9c67c355904426b4a7c2c00ce10b39e3fb5790c50a4
|
data/CHANGELOG.md
CHANGED
data/LOGGING.md
CHANGED
@@ -5,7 +5,7 @@ To enable logging for this library, set the logger for the underlying
|
|
5
5
|
that you set may be a Ruby stdlib
|
6
6
|
[`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as
|
7
7
|
shown below, or a
|
8
|
-
[`Google::Cloud::Logging::Logger`](https://
|
8
|
+
[`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/docs/google-cloud-logging/latest/Google/Cloud/Logging/Logger)
|
9
9
|
that will write logs to [Stackdriver
|
10
10
|
Logging](https://cloud.google.com/logging/). See
|
11
11
|
[grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
@@ -230,10 +230,10 @@ module Google
|
|
230
230
|
#
|
231
231
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
232
232
|
#
|
233
|
-
# # TODO: Initialize
|
233
|
+
# # TODO: Initialize `project_id`:
|
234
234
|
# project_id = ''
|
235
235
|
#
|
236
|
-
# # TODO: Initialize
|
236
|
+
# # TODO: Initialize `keys`:
|
237
237
|
# keys = []
|
238
238
|
# response = datastore_client.lookup(project_id, keys)
|
239
239
|
|
@@ -288,10 +288,10 @@ module Google
|
|
288
288
|
#
|
289
289
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
290
290
|
#
|
291
|
-
# # TODO: Initialize
|
291
|
+
# # TODO: Initialize `project_id`:
|
292
292
|
# project_id = ''
|
293
293
|
#
|
294
|
-
# # TODO: Initialize
|
294
|
+
# # TODO: Initialize `partition_id`:
|
295
295
|
# partition_id = {}
|
296
296
|
# response = datastore_client.run_query(project_id, partition_id)
|
297
297
|
|
@@ -335,7 +335,7 @@ module Google
|
|
335
335
|
#
|
336
336
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
337
337
|
#
|
338
|
-
# # TODO: Initialize
|
338
|
+
# # TODO: Initialize `project_id`:
|
339
339
|
# project_id = ''
|
340
340
|
# response = datastore_client.begin_transaction(project_id)
|
341
341
|
|
@@ -358,20 +358,20 @@ module Google
|
|
358
358
|
# @param project_id [String]
|
359
359
|
# The ID of the project against which to make the request.
|
360
360
|
# @param mode [Google::Datastore::V1::CommitRequest::Mode]
|
361
|
-
# The type of commit to perform. Defaults to
|
361
|
+
# The type of commit to perform. Defaults to `TRANSACTIONAL`.
|
362
362
|
# @param mutations [Array<Google::Datastore::V1::Mutation | Hash>]
|
363
363
|
# The mutations to perform.
|
364
364
|
#
|
365
|
-
# When mode is
|
365
|
+
# When mode is `TRANSACTIONAL`, mutations affecting a single entity are
|
366
366
|
# applied in order. The following sequences of mutations affecting a single
|
367
|
-
# entity are not permitted in a single
|
367
|
+
# entity are not permitted in a single `Commit` request:
|
368
368
|
#
|
369
|
-
# *
|
370
|
-
# *
|
371
|
-
# *
|
372
|
-
# *
|
369
|
+
# * `insert` followed by `insert`
|
370
|
+
# * `update` followed by `insert`
|
371
|
+
# * `upsert` followed by `insert`
|
372
|
+
# * `delete` followed by `update`
|
373
373
|
#
|
374
|
-
# When mode is
|
374
|
+
# When mode is `NON_TRANSACTIONAL`, no two mutations may affect a single
|
375
375
|
# entity.
|
376
376
|
# A hash of the same form as `Google::Datastore::V1::Mutation`
|
377
377
|
# can also be provided.
|
@@ -392,13 +392,13 @@ module Google
|
|
392
392
|
#
|
393
393
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
394
394
|
#
|
395
|
-
# # TODO: Initialize
|
395
|
+
# # TODO: Initialize `project_id`:
|
396
396
|
# project_id = ''
|
397
397
|
#
|
398
|
-
# # TODO: Initialize
|
398
|
+
# # TODO: Initialize `mode`:
|
399
399
|
# mode = :MODE_UNSPECIFIED
|
400
400
|
#
|
401
|
-
# # TODO: Initialize
|
401
|
+
# # TODO: Initialize `mutations`:
|
402
402
|
# mutations = []
|
403
403
|
# response = datastore_client.commit(project_id, mode, mutations)
|
404
404
|
|
@@ -439,10 +439,10 @@ module Google
|
|
439
439
|
#
|
440
440
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
441
441
|
#
|
442
|
-
# # TODO: Initialize
|
442
|
+
# # TODO: Initialize `project_id`:
|
443
443
|
# project_id = ''
|
444
444
|
#
|
445
|
-
# # TODO: Initialize
|
445
|
+
# # TODO: Initialize `transaction`:
|
446
446
|
# transaction = ''
|
447
447
|
# response = datastore_client.rollback(project_id, transaction)
|
448
448
|
|
@@ -482,10 +482,10 @@ module Google
|
|
482
482
|
#
|
483
483
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
484
484
|
#
|
485
|
-
# # TODO: Initialize
|
485
|
+
# # TODO: Initialize `project_id`:
|
486
486
|
# project_id = ''
|
487
487
|
#
|
488
|
-
# # TODO: Initialize
|
488
|
+
# # TODO: Initialize `keys`:
|
489
489
|
# keys = []
|
490
490
|
# response = datastore_client.allocate_ids(project_id, keys)
|
491
491
|
|
@@ -527,10 +527,10 @@ module Google
|
|
527
527
|
#
|
528
528
|
# datastore_client = Google::Cloud::Datastore.new(version: :v1)
|
529
529
|
#
|
530
|
-
# # TODO: Initialize
|
530
|
+
# # TODO: Initialize `project_id`:
|
531
531
|
# project_id = ''
|
532
532
|
#
|
533
|
-
# # TODO: Initialize
|
533
|
+
# # TODO: Initialize `keys`:
|
534
534
|
# keys = []
|
535
535
|
# response = datastore_client.reserve_ids(project_id, keys)
|
536
536
|
|
@@ -31,12 +31,12 @@ module Google
|
|
31
31
|
# The response for {Google::Datastore::V1::Datastore::Lookup Datastore::Lookup}.
|
32
32
|
# @!attribute [rw] found
|
33
33
|
# @return [Array<Google::Datastore::V1::EntityResult>]
|
34
|
-
# Entities found as
|
34
|
+
# Entities found as `ResultType.FULL` entities. The order of results in this
|
35
35
|
# field is undefined and has no relation to the order of the keys in the
|
36
36
|
# input.
|
37
37
|
# @!attribute [rw] missing
|
38
38
|
# @return [Array<Google::Datastore::V1::EntityResult>]
|
39
|
-
# Entities not found as
|
39
|
+
# Entities not found as `ResultType.KEY_ONLY` entities. The order of results
|
40
40
|
# in this field is undefined and has no relation to the order of the keys
|
41
41
|
# in the input.
|
42
42
|
# @!attribute [rw] deferred
|
@@ -73,7 +73,7 @@ module Google
|
|
73
73
|
# A batch of query results (always present).
|
74
74
|
# @!attribute [rw] query
|
75
75
|
# @return [Google::Datastore::V1::Query]
|
76
|
-
# The parsed form of the
|
76
|
+
# The parsed form of the `GqlQuery` from the request, if it was set.
|
77
77
|
class RunQueryResponse; end
|
78
78
|
|
79
79
|
# The request for {Google::Datastore::V1::Datastore::BeginTransaction Datastore::BeginTransaction}.
|
@@ -111,7 +111,7 @@ module Google
|
|
111
111
|
# The ID of the project against which to make the request.
|
112
112
|
# @!attribute [rw] mode
|
113
113
|
# @return [Google::Datastore::V1::CommitRequest::Mode]
|
114
|
-
# The type of commit to perform. Defaults to
|
114
|
+
# The type of commit to perform. Defaults to `TRANSACTIONAL`.
|
115
115
|
# @!attribute [rw] transaction
|
116
116
|
# @return [String]
|
117
117
|
# The identifier of the transaction associated with the commit. A
|
@@ -121,16 +121,16 @@ module Google
|
|
121
121
|
# @return [Array<Google::Datastore::V1::Mutation>]
|
122
122
|
# The mutations to perform.
|
123
123
|
#
|
124
|
-
# When mode is
|
124
|
+
# When mode is `TRANSACTIONAL`, mutations affecting a single entity are
|
125
125
|
# applied in order. The following sequences of mutations affecting a single
|
126
|
-
# entity are not permitted in a single
|
126
|
+
# entity are not permitted in a single `Commit` request:
|
127
127
|
#
|
128
|
-
# *
|
129
|
-
# *
|
130
|
-
# *
|
131
|
-
# *
|
128
|
+
# * `insert` followed by `insert`
|
129
|
+
# * `update` followed by `insert`
|
130
|
+
# * `upsert` followed by `insert`
|
131
|
+
# * `delete` followed by `update`
|
132
132
|
#
|
133
|
-
# When mode is
|
133
|
+
# When mode is `NON_TRANSACTIONAL`, no two mutations may affect a single
|
134
134
|
# entity.
|
135
135
|
class CommitRequest
|
136
136
|
# The modes available for commits.
|
@@ -236,7 +236,7 @@ module Google
|
|
236
236
|
# @!attribute [rw] read_consistency
|
237
237
|
# @return [Google::Datastore::V1::ReadOptions::ReadConsistency]
|
238
238
|
# The non-transactional read consistency to use.
|
239
|
-
# Cannot be set to
|
239
|
+
# Cannot be set to `STRONG` for global queries.
|
240
240
|
# @!attribute [rw] transaction
|
241
241
|
# @return [String]
|
242
242
|
# The identifier of the transaction in which to read. A
|
@@ -24,10 +24,10 @@ module Google
|
|
24
24
|
#
|
25
25
|
# Partition dimensions:
|
26
26
|
#
|
27
|
-
# * May be
|
27
|
+
# * May be `""`.
|
28
28
|
# * Must be valid UTF-8 bytes.
|
29
|
-
# * Must have values that match regex
|
30
|
-
# If the value of any dimension matches regex
|
29
|
+
# * Must have values that match regex `[A-Za-z\d\.\-_]{1,100}`
|
30
|
+
# If the value of any dimension matches regex `__.*__`, the partition is
|
31
31
|
# reserved/read-only.
|
32
32
|
# A reserved/read-only partition ID is forbidden in certain documented
|
33
33
|
# contexts.
|
@@ -66,7 +66,7 @@ module Google
|
|
66
66
|
# are required to be in the path along with the entity identifier itself.
|
67
67
|
# The only exception is that in some documented cases, the identifier in the
|
68
68
|
# last path element (for the entity) itself may be omitted. For example,
|
69
|
-
# the last path element of the key of
|
69
|
+
# the last path element of the key of `Mutation.insert` may have no
|
70
70
|
# identifier.
|
71
71
|
#
|
72
72
|
# A path can never be empty, and a path can have at most 100 elements.
|
@@ -78,9 +78,9 @@ module Google
|
|
78
78
|
# @!attribute [rw] kind
|
79
79
|
# @return [String]
|
80
80
|
# The kind of the entity.
|
81
|
-
# A kind matching regex
|
81
|
+
# A kind matching regex `__.*__` is reserved/read-only.
|
82
82
|
# A kind must not contain more than 1500 bytes when UTF-8 encoded.
|
83
|
-
# Cannot be
|
83
|
+
# Cannot be `""`.
|
84
84
|
# @!attribute [rw] id
|
85
85
|
# @return [Integer]
|
86
86
|
# The auto-allocated ID of the entity.
|
@@ -89,9 +89,9 @@ module Google
|
|
89
89
|
# @!attribute [rw] name
|
90
90
|
# @return [String]
|
91
91
|
# The name of the entity.
|
92
|
-
# A name matching regex
|
92
|
+
# A name matching regex `__.*__` is reserved/read-only.
|
93
93
|
# A name must not be more than 1500 bytes when UTF-8 encoded.
|
94
|
-
# Cannot be
|
94
|
+
# Cannot be `""`.
|
95
95
|
class PathElement; end
|
96
96
|
end
|
97
97
|
|
@@ -128,13 +128,13 @@ module Google
|
|
128
128
|
# @!attribute [rw] string_value
|
129
129
|
# @return [String]
|
130
130
|
# A UTF-8 encoded string value.
|
131
|
-
# When
|
131
|
+
# When `exclude_from_indexes` is false (it is indexed) , may have at most 1500 bytes.
|
132
132
|
# Otherwise, may be set to at least 1,000,000 bytes.
|
133
133
|
# @!attribute [rw] blob_value
|
134
134
|
# @return [String]
|
135
135
|
# A blob value.
|
136
136
|
# May have at most 1,000,000 bytes.
|
137
|
-
# When
|
137
|
+
# When `exclude_from_indexes` is false, may have at most 1500 bytes.
|
138
138
|
# In JSON requests, must be base64-encoded.
|
139
139
|
# @!attribute [rw] geo_point_value
|
140
140
|
# @return [Google::Type::LatLng]
|
@@ -150,11 +150,11 @@ module Google
|
|
150
150
|
# @return [Google::Datastore::V1::ArrayValue]
|
151
151
|
# An array value.
|
152
152
|
# Cannot contain another array value.
|
153
|
-
# A
|
154
|
-
#
|
153
|
+
# A `Value` instance that sets field `array_value` must not set fields
|
154
|
+
# `meaning` or `exclude_from_indexes`.
|
155
155
|
# @!attribute [rw] meaning
|
156
156
|
# @return [Integer]
|
157
|
-
# The
|
157
|
+
# The `meaning` field should only be populated for backwards compatibility.
|
158
158
|
# @!attribute [rw] exclude_from_indexes
|
159
159
|
# @return [true, false]
|
160
160
|
# If the value should be excluded from all indexes including those defined
|
@@ -171,17 +171,17 @@ module Google
|
|
171
171
|
# The entity's key.
|
172
172
|
#
|
173
173
|
# An entity must have a key, unless otherwise documented (for example,
|
174
|
-
# an entity in
|
174
|
+
# an entity in `Value.entity_value` may have no key).
|
175
175
|
# An entity's kind is its key path's last element's kind,
|
176
176
|
# or null if it has no key.
|
177
177
|
# @!attribute [rw] properties
|
178
178
|
# @return [Hash{String => Google::Datastore::V1::Value}]
|
179
179
|
# The entity's properties.
|
180
180
|
# The map's keys are property names.
|
181
|
-
# A property name matching regex
|
181
|
+
# A property name matching regex `__.*__` is reserved.
|
182
182
|
# A reserved property name is forbidden in certain documented contexts.
|
183
183
|
# The name must not contain more than 500 characters.
|
184
|
-
# The name cannot be
|
184
|
+
# The name cannot be `""`.
|
185
185
|
class Entity; end
|
186
186
|
end
|
187
187
|
end
|
@@ -25,22 +25,22 @@ module Google
|
|
25
25
|
# The version of the entity, a strictly positive number that monotonically
|
26
26
|
# increases with changes to the entity.
|
27
27
|
#
|
28
|
-
# This field is set for {Google::Datastore::V1::EntityResult::ResultType::FULL
|
28
|
+
# This field is set for {Google::Datastore::V1::EntityResult::ResultType::FULL `FULL`} entity
|
29
29
|
# results.
|
30
30
|
#
|
31
|
-
# For {Google::Datastore::V1::LookupResponse#missing missing} entities in
|
31
|
+
# For {Google::Datastore::V1::LookupResponse#missing missing} entities in `LookupResponse`, this
|
32
32
|
# is the version of the snapshot that was used to look up the entity, and it
|
33
33
|
# is always set except for eventually consistent reads.
|
34
34
|
# @!attribute [rw] cursor
|
35
35
|
# @return [String]
|
36
36
|
# A cursor that points to the position after the result entity.
|
37
|
-
# Set only when the
|
37
|
+
# Set only when the `EntityResult` is part of a `QueryResultBatch` message.
|
38
38
|
class EntityResult
|
39
39
|
# Specifies what data the 'entity' field contains.
|
40
|
-
# A
|
41
|
-
# from
|
42
|
-
# (for example, in message
|
43
|
-
# specifies a
|
40
|
+
# A `ResultType` is either implied (for example, in `LookupResponse.missing`
|
41
|
+
# from `datastore.proto`, it is always `KEY_ONLY`) or specified by context
|
42
|
+
# (for example, in message `QueryResultBatch`, field `entity_result_type`
|
43
|
+
# specifies a `ResultType` for all the values in field `entity_results`).
|
44
44
|
module ResultType
|
45
45
|
# Unspecified. This value is never used.
|
46
46
|
RESULT_TYPE_UNSPECIFIED = 0
|
@@ -122,7 +122,7 @@ module Google
|
|
122
122
|
# The property to order by.
|
123
123
|
# @!attribute [rw] direction
|
124
124
|
# @return [Google::Datastore::V1::PropertyOrder::Direction]
|
125
|
-
# The direction to order by. Defaults to
|
125
|
+
# The direction to order by. Defaults to `ASCENDING`.
|
126
126
|
class PropertyOrder
|
127
127
|
# The sort direction.
|
128
128
|
module Direction
|
@@ -210,21 +210,21 @@ module Google
|
|
210
210
|
# @return [true, false]
|
211
211
|
# When false, the query string must not contain any literals and instead must
|
212
212
|
# bind all values. For example,
|
213
|
-
#
|
214
|
-
#
|
213
|
+
# `SELECT * FROM Kind WHERE a = 'string literal'` is not allowed, while
|
214
|
+
# `SELECT * FROM Kind WHERE a = @value` is.
|
215
215
|
# @!attribute [rw] named_bindings
|
216
216
|
# @return [Hash{String => Google::Datastore::V1::GqlQueryParameter}]
|
217
217
|
# For each non-reserved named binding site in the query string, there must be
|
218
218
|
# a named parameter with that name, but not necessarily the inverse.
|
219
219
|
#
|
220
|
-
# Key must match regex
|
221
|
-
#
|
220
|
+
# Key must match regex `[A-Za-z_$][A-Za-z_$0-9]*`, must not match regex
|
221
|
+
# `__.*__`, and must not be `""`.
|
222
222
|
# @!attribute [rw] positional_bindings
|
223
223
|
# @return [Array<Google::Datastore::V1::GqlQueryParameter>]
|
224
224
|
# Numbered binding site @1 references the first numbered parameter,
|
225
225
|
# effectively using 1-based indexing, rather than the usual 0.
|
226
226
|
#
|
227
|
-
# For each binding site numbered i in
|
227
|
+
# For each binding site numbered i in `query_string`, there must be an i-th
|
228
228
|
# numbered parameter. The inverse must also be true.
|
229
229
|
class GqlQuery; end
|
230
230
|
|
@@ -245,10 +245,10 @@ module Google
|
|
245
245
|
# @!attribute [rw] skipped_cursor
|
246
246
|
# @return [String]
|
247
247
|
# A cursor that points to the position after the last skipped result.
|
248
|
-
# Will be set when
|
248
|
+
# Will be set when `skipped_results` != 0.
|
249
249
|
# @!attribute [rw] entity_result_type
|
250
250
|
# @return [Google::Datastore::V1::EntityResult::ResultType]
|
251
|
-
# The result type for every entity in
|
251
|
+
# The result type for every entity in `entity_results`.
|
252
252
|
# @!attribute [rw] entity_results
|
253
253
|
# @return [Array<Google::Datastore::V1::EntityResult>]
|
254
254
|
# The results for this batch.
|
@@ -261,16 +261,16 @@ module Google
|
|
261
261
|
# @!attribute [rw] snapshot_version
|
262
262
|
# @return [Integer]
|
263
263
|
# The version number of the snapshot this batch was returned from.
|
264
|
-
# This applies to the range of results from the query's
|
264
|
+
# This applies to the range of results from the query's `start_cursor` (or
|
265
265
|
# the beginning of the query if no cursor was given) to this batch's
|
266
|
-
#
|
266
|
+
# `end_cursor` (not the query's `end_cursor`).
|
267
267
|
#
|
268
268
|
# In a single transaction, subsequent query result batches for the same query
|
269
269
|
# can have a greater snapshot version number. Each batch's snapshot version
|
270
270
|
# is valid for all preceding batches.
|
271
271
|
# The value will be zero for eventually consistent queries.
|
272
272
|
class QueryResultBatch
|
273
|
-
# The possible values for the
|
273
|
+
# The possible values for the `more_results` field.
|
274
274
|
module MoreResultsType
|
275
275
|
# Unspecified. This value is never used.
|
276
276
|
MORE_RESULTS_TYPE_UNSPECIFIED = 0
|
@@ -15,73 +15,73 @@
|
|
15
15
|
|
16
16
|
module Google
|
17
17
|
module Protobuf
|
18
|
-
# Wrapper message for
|
18
|
+
# Wrapper message for `double`.
|
19
19
|
#
|
20
|
-
# The JSON representation for
|
20
|
+
# The JSON representation for `DoubleValue` is JSON number.
|
21
21
|
# @!attribute [rw] value
|
22
22
|
# @return [Float]
|
23
23
|
# The double value.
|
24
24
|
class DoubleValue; end
|
25
25
|
|
26
|
-
# Wrapper message for
|
26
|
+
# Wrapper message for `float`.
|
27
27
|
#
|
28
|
-
# The JSON representation for
|
28
|
+
# The JSON representation for `FloatValue` is JSON number.
|
29
29
|
# @!attribute [rw] value
|
30
30
|
# @return [Float]
|
31
31
|
# The float value.
|
32
32
|
class FloatValue; end
|
33
33
|
|
34
|
-
# Wrapper message for
|
34
|
+
# Wrapper message for `int64`.
|
35
35
|
#
|
36
|
-
# The JSON representation for
|
36
|
+
# The JSON representation for `Int64Value` is JSON string.
|
37
37
|
# @!attribute [rw] value
|
38
38
|
# @return [Integer]
|
39
39
|
# The int64 value.
|
40
40
|
class Int64Value; end
|
41
41
|
|
42
|
-
# Wrapper message for
|
42
|
+
# Wrapper message for `uint64`.
|
43
43
|
#
|
44
|
-
# The JSON representation for
|
44
|
+
# The JSON representation for `UInt64Value` is JSON string.
|
45
45
|
# @!attribute [rw] value
|
46
46
|
# @return [Integer]
|
47
47
|
# The uint64 value.
|
48
48
|
class UInt64Value; end
|
49
49
|
|
50
|
-
# Wrapper message for
|
50
|
+
# Wrapper message for `int32`.
|
51
51
|
#
|
52
|
-
# The JSON representation for
|
52
|
+
# The JSON representation for `Int32Value` is JSON number.
|
53
53
|
# @!attribute [rw] value
|
54
54
|
# @return [Integer]
|
55
55
|
# The int32 value.
|
56
56
|
class Int32Value; end
|
57
57
|
|
58
|
-
# Wrapper message for
|
58
|
+
# Wrapper message for `uint32`.
|
59
59
|
#
|
60
|
-
# The JSON representation for
|
60
|
+
# The JSON representation for `UInt32Value` is JSON number.
|
61
61
|
# @!attribute [rw] value
|
62
62
|
# @return [Integer]
|
63
63
|
# The uint32 value.
|
64
64
|
class UInt32Value; end
|
65
65
|
|
66
|
-
# Wrapper message for
|
66
|
+
# Wrapper message for `bool`.
|
67
67
|
#
|
68
|
-
# The JSON representation for
|
68
|
+
# The JSON representation for `BoolValue` is JSON `true` and `false`.
|
69
69
|
# @!attribute [rw] value
|
70
70
|
# @return [true, false]
|
71
71
|
# The bool value.
|
72
72
|
class BoolValue; end
|
73
73
|
|
74
|
-
# Wrapper message for
|
74
|
+
# Wrapper message for `string`.
|
75
75
|
#
|
76
|
-
# The JSON representation for
|
76
|
+
# The JSON representation for `StringValue` is JSON string.
|
77
77
|
# @!attribute [rw] value
|
78
78
|
# @return [String]
|
79
79
|
# The string value.
|
80
80
|
class StringValue; end
|
81
81
|
|
82
|
-
# Wrapper message for
|
82
|
+
# Wrapper message for `bytes`.
|
83
83
|
#
|
84
|
-
# The JSON representation for
|
84
|
+
# The JSON representation for `BytesValue` is JSON string.
|
85
85
|
# @!attribute [rw] value
|
86
86
|
# @return [String]
|
87
87
|
# The bytes value.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-datastore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Moore
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-09-
|
12
|
+
date: 2018-09-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: google-cloud-core
|
@@ -245,7 +245,7 @@ files:
|
|
245
245
|
- lib/google/datastore/v1/datastore_services_pb.rb
|
246
246
|
- lib/google/datastore/v1/entity_pb.rb
|
247
247
|
- lib/google/datastore/v1/query_pb.rb
|
248
|
-
homepage: https://github.com/
|
248
|
+
homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-datastore
|
249
249
|
licenses:
|
250
250
|
- Apache-2.0
|
251
251
|
metadata: {}
|