google-cloud-datastore-v1 0.11.1 → 0.13.0
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/lib/google/cloud/datastore/v1/datastore/client.rb +4 -2
- data/lib/google/cloud/datastore/v1/datastore/rest/client.rb +4 -2
- data/lib/google/cloud/datastore/v1/datastore/rest/service_stub.rb +8 -8
- data/lib/google/cloud/datastore/v1/version.rb +1 -1
- data/lib/google/datastore/v1/aggregation_result_pb.rb +26 -9
- data/lib/google/datastore/v1/datastore_pb.rb +28 -138
- data/lib/google/datastore/v1/entity_pb.rb +26 -41
- data/lib/google/datastore/v1/query_pb.rb +29 -119
- data/proto_docs/google/api/client.rb +58 -1
- data/proto_docs/google/datastore/v1/datastore.rb +10 -4
- data/proto_docs/google/datastore/v1/entity.rb +1 -3
- data/proto_docs/google/datastore/v1/query.rb +59 -4
- data/proto_docs/google/protobuf/struct.rb +1 -1
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32c8b247d26432b7e2894c32bef03354a7c66aff1366b0e32c63d8baee0955d1
|
4
|
+
data.tar.gz: 60b955f7ecda6ea81a60fe7dacc94a6ac0bcb44a76f80fe7e3bdd9ccc8e2da11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 657ff5cc5ee6921cf232ef03a0de345215398e57ecae97a508e38d3f40976d27c9029750e381707d6ab51323dd7c4ee4b40976a288c9d4d6b5d233039261ef92
|
7
|
+
data.tar.gz: 3bdf4aa3eb241aa88c7045396304b666a9114bd9d0e4b2fa86572d9b732a653681451f063de874a065ff722e0e19a7001a5dd05f95d0fc5e9c5f53c961baddbf
|
@@ -154,7 +154,7 @@ module Google
|
|
154
154
|
credentials = @config.credentials
|
155
155
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
156
156
|
# but only if the default endpoint does not have a region prefix.
|
157
|
-
enable_self_signed_jwt = @config.endpoint ==
|
157
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
158
158
|
!@config.endpoint.split(".").first.include?("-")
|
159
159
|
credentials ||= Credentials.default scope: @config.scope,
|
160
160
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -1066,7 +1066,9 @@ module Google
|
|
1066
1066
|
class Configuration
|
1067
1067
|
extend ::Gapic::Config
|
1068
1068
|
|
1069
|
-
|
1069
|
+
DEFAULT_ENDPOINT = "datastore.googleapis.com"
|
1070
|
+
|
1071
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
1070
1072
|
config_attr :credentials, nil do |value|
|
1071
1073
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1072
1074
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -150,7 +150,7 @@ module Google
|
|
150
150
|
credentials = @config.credentials
|
151
151
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
152
152
|
# but only if the default endpoint does not have a region prefix.
|
153
|
-
enable_self_signed_jwt = @config.endpoint ==
|
153
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
154
154
|
!@config.endpoint.split(".").first.include?("-")
|
155
155
|
credentials ||= Credentials.default scope: @config.scope,
|
156
156
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -840,7 +840,9 @@ module Google
|
|
840
840
|
class Configuration
|
841
841
|
extend ::Gapic::Config
|
842
842
|
|
843
|
-
|
843
|
+
DEFAULT_ENDPOINT = "datastore.googleapis.com"
|
844
|
+
|
845
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
844
846
|
config_attr :credentials, nil do |value|
|
845
847
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
846
848
|
allowed.any? { |klass| klass === value }
|
@@ -59,7 +59,7 @@ module Google
|
|
59
59
|
|
60
60
|
verb, uri, query_string_params, body = ServiceStub.transcode_lookup_request request_pb
|
61
61
|
query_string_params = if query_string_params.any?
|
62
|
-
query_string_params.to_h { |p| p.split
|
62
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
63
63
|
else
|
64
64
|
{}
|
65
65
|
end
|
@@ -97,7 +97,7 @@ module Google
|
|
97
97
|
|
98
98
|
verb, uri, query_string_params, body = ServiceStub.transcode_run_query_request request_pb
|
99
99
|
query_string_params = if query_string_params.any?
|
100
|
-
query_string_params.to_h { |p| p.split
|
100
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
101
101
|
else
|
102
102
|
{}
|
103
103
|
end
|
@@ -135,7 +135,7 @@ module Google
|
|
135
135
|
|
136
136
|
verb, uri, query_string_params, body = ServiceStub.transcode_run_aggregation_query_request request_pb
|
137
137
|
query_string_params = if query_string_params.any?
|
138
|
-
query_string_params.to_h { |p| p.split
|
138
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
139
139
|
else
|
140
140
|
{}
|
141
141
|
end
|
@@ -173,7 +173,7 @@ module Google
|
|
173
173
|
|
174
174
|
verb, uri, query_string_params, body = ServiceStub.transcode_begin_transaction_request request_pb
|
175
175
|
query_string_params = if query_string_params.any?
|
176
|
-
query_string_params.to_h { |p| p.split
|
176
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
177
177
|
else
|
178
178
|
{}
|
179
179
|
end
|
@@ -211,7 +211,7 @@ module Google
|
|
211
211
|
|
212
212
|
verb, uri, query_string_params, body = ServiceStub.transcode_commit_request request_pb
|
213
213
|
query_string_params = if query_string_params.any?
|
214
|
-
query_string_params.to_h { |p| p.split
|
214
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
215
215
|
else
|
216
216
|
{}
|
217
217
|
end
|
@@ -249,7 +249,7 @@ module Google
|
|
249
249
|
|
250
250
|
verb, uri, query_string_params, body = ServiceStub.transcode_rollback_request request_pb
|
251
251
|
query_string_params = if query_string_params.any?
|
252
|
-
query_string_params.to_h { |p| p.split
|
252
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
253
253
|
else
|
254
254
|
{}
|
255
255
|
end
|
@@ -287,7 +287,7 @@ module Google
|
|
287
287
|
|
288
288
|
verb, uri, query_string_params, body = ServiceStub.transcode_allocate_ids_request request_pb
|
289
289
|
query_string_params = if query_string_params.any?
|
290
|
-
query_string_params.to_h { |p| p.split
|
290
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
291
291
|
else
|
292
292
|
{}
|
293
293
|
end
|
@@ -325,7 +325,7 @@ module Google
|
|
325
325
|
|
326
326
|
verb, uri, query_string_params, body = ServiceStub.transcode_reserve_ids_request request_pb
|
327
327
|
query_string_params = if query_string_params.any?
|
328
|
-
query_string_params.to_h { |p| p.split
|
328
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
329
329
|
else
|
330
330
|
{}
|
331
331
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/datastore/v1/aggregation_result.proto
|
3
4
|
|
@@ -7,17 +8,33 @@ require 'google/datastore/v1/entity_pb'
|
|
7
8
|
require 'google/datastore/v1/query_pb'
|
8
9
|
require 'google/protobuf/timestamp_pb'
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
11
|
+
|
12
|
+
descriptor_data = "\n,google/datastore/v1/aggregation_result.proto\x12\x13google.datastore.v1\x1a google/datastore/v1/entity.proto\x1a\x1fgoogle/datastore/v1/query.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xca\x01\n\x11\x41ggregationResult\x12]\n\x14\x61ggregate_properties\x18\x02 \x03(\x0b\x32?.google.datastore.v1.AggregationResult.AggregatePropertiesEntry\x1aV\n\x18\x41ggregatePropertiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.datastore.v1.Value:\x02\x38\x01\"\xd9\x01\n\x16\x41ggregationResultBatch\x12\x43\n\x13\x61ggregation_results\x18\x01 \x03(\x0b\x32&.google.datastore.v1.AggregationResult\x12K\n\x0cmore_results\x18\x02 \x01(\x0e\x32\x35.google.datastore.v1.QueryResultBatch.MoreResultsType\x12-\n\tread_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\xc8\x01\n\x17\x63om.google.datastore.v1B\x16\x41ggregationResultProtoP\x01Z<google.golang.org/genproto/googleapis/datastore/v1;datastore\xaa\x02\x19Google.Cloud.Datastore.V1\xca\x02\x19Google\\Cloud\\Datastore\\V1\xea\x02\x1cGoogle::Cloud::Datastore::V1b\x06proto3"
|
13
|
+
|
14
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
15
|
+
|
16
|
+
begin
|
17
|
+
pool.add_serialized_file(descriptor_data)
|
18
|
+
rescue TypeError => e
|
19
|
+
# Compatibility code: will be removed in the next major version.
|
20
|
+
require 'google/protobuf/descriptor_pb'
|
21
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
22
|
+
parsed.clear_dependency
|
23
|
+
serialized = parsed.class.encode(parsed)
|
24
|
+
file = pool.add_serialized_file(serialized)
|
25
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
26
|
+
imports = [
|
27
|
+
["google.datastore.v1.Value", "google/datastore/v1/entity.proto"],
|
28
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
29
|
+
]
|
30
|
+
imports.each do |type_name, expected_filename|
|
31
|
+
import_file = pool.lookup(type_name).file_descriptor
|
32
|
+
if import_file.name != expected_filename
|
33
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
19
34
|
end
|
20
35
|
end
|
36
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
37
|
+
warn "This will become an error in the next major version."
|
21
38
|
end
|
22
39
|
|
23
40
|
module Google
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/datastore/v1/datastore.proto
|
3
4
|
|
@@ -12,146 +13,35 @@ require 'google/datastore/v1/entity_pb'
|
|
12
13
|
require 'google/datastore/v1/query_pb'
|
13
14
|
require 'google/protobuf/timestamp_pb'
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
add_message "google.datastore.v1.RunQueryResponse" do
|
41
|
-
optional :batch, :message, 1, "google.datastore.v1.QueryResultBatch"
|
42
|
-
optional :query, :message, 2, "google.datastore.v1.Query"
|
43
|
-
optional :transaction, :bytes, 5
|
44
|
-
end
|
45
|
-
add_message "google.datastore.v1.RunAggregationQueryRequest" do
|
46
|
-
optional :project_id, :string, 8
|
47
|
-
optional :database_id, :string, 9
|
48
|
-
optional :partition_id, :message, 2, "google.datastore.v1.PartitionId"
|
49
|
-
optional :read_options, :message, 1, "google.datastore.v1.ReadOptions"
|
50
|
-
oneof :query_type do
|
51
|
-
optional :aggregation_query, :message, 3, "google.datastore.v1.AggregationQuery"
|
52
|
-
optional :gql_query, :message, 7, "google.datastore.v1.GqlQuery"
|
53
|
-
end
|
54
|
-
end
|
55
|
-
add_message "google.datastore.v1.RunAggregationQueryResponse" do
|
56
|
-
optional :batch, :message, 1, "google.datastore.v1.AggregationResultBatch"
|
57
|
-
optional :query, :message, 2, "google.datastore.v1.AggregationQuery"
|
58
|
-
optional :transaction, :bytes, 5
|
59
|
-
end
|
60
|
-
add_message "google.datastore.v1.BeginTransactionRequest" do
|
61
|
-
optional :project_id, :string, 8
|
62
|
-
optional :database_id, :string, 9
|
63
|
-
optional :transaction_options, :message, 10, "google.datastore.v1.TransactionOptions"
|
64
|
-
end
|
65
|
-
add_message "google.datastore.v1.BeginTransactionResponse" do
|
66
|
-
optional :transaction, :bytes, 1
|
67
|
-
end
|
68
|
-
add_message "google.datastore.v1.RollbackRequest" do
|
69
|
-
optional :project_id, :string, 8
|
70
|
-
optional :database_id, :string, 9
|
71
|
-
optional :transaction, :bytes, 1
|
72
|
-
end
|
73
|
-
add_message "google.datastore.v1.RollbackResponse" do
|
74
|
-
end
|
75
|
-
add_message "google.datastore.v1.CommitRequest" do
|
76
|
-
optional :project_id, :string, 8
|
77
|
-
optional :database_id, :string, 9
|
78
|
-
optional :mode, :enum, 5, "google.datastore.v1.CommitRequest.Mode"
|
79
|
-
repeated :mutations, :message, 6, "google.datastore.v1.Mutation"
|
80
|
-
oneof :transaction_selector do
|
81
|
-
optional :transaction, :bytes, 1
|
82
|
-
optional :single_use_transaction, :message, 10, "google.datastore.v1.TransactionOptions"
|
83
|
-
end
|
84
|
-
end
|
85
|
-
add_enum "google.datastore.v1.CommitRequest.Mode" do
|
86
|
-
value :MODE_UNSPECIFIED, 0
|
87
|
-
value :TRANSACTIONAL, 1
|
88
|
-
value :NON_TRANSACTIONAL, 2
|
89
|
-
end
|
90
|
-
add_message "google.datastore.v1.CommitResponse" do
|
91
|
-
repeated :mutation_results, :message, 3, "google.datastore.v1.MutationResult"
|
92
|
-
optional :index_updates, :int32, 4
|
93
|
-
optional :commit_time, :message, 8, "google.protobuf.Timestamp"
|
94
|
-
end
|
95
|
-
add_message "google.datastore.v1.AllocateIdsRequest" do
|
96
|
-
optional :project_id, :string, 8
|
97
|
-
optional :database_id, :string, 9
|
98
|
-
repeated :keys, :message, 1, "google.datastore.v1.Key"
|
99
|
-
end
|
100
|
-
add_message "google.datastore.v1.AllocateIdsResponse" do
|
101
|
-
repeated :keys, :message, 1, "google.datastore.v1.Key"
|
102
|
-
end
|
103
|
-
add_message "google.datastore.v1.ReserveIdsRequest" do
|
104
|
-
optional :project_id, :string, 8
|
105
|
-
optional :database_id, :string, 9
|
106
|
-
repeated :keys, :message, 1, "google.datastore.v1.Key"
|
107
|
-
end
|
108
|
-
add_message "google.datastore.v1.ReserveIdsResponse" do
|
109
|
-
end
|
110
|
-
add_message "google.datastore.v1.Mutation" do
|
111
|
-
oneof :operation do
|
112
|
-
optional :insert, :message, 4, "google.datastore.v1.Entity"
|
113
|
-
optional :update, :message, 5, "google.datastore.v1.Entity"
|
114
|
-
optional :upsert, :message, 6, "google.datastore.v1.Entity"
|
115
|
-
optional :delete, :message, 7, "google.datastore.v1.Key"
|
116
|
-
end
|
117
|
-
oneof :conflict_detection_strategy do
|
118
|
-
optional :base_version, :int64, 8
|
119
|
-
optional :update_time, :message, 11, "google.protobuf.Timestamp"
|
120
|
-
end
|
121
|
-
end
|
122
|
-
add_message "google.datastore.v1.MutationResult" do
|
123
|
-
optional :key, :message, 3, "google.datastore.v1.Key"
|
124
|
-
optional :version, :int64, 4
|
125
|
-
optional :create_time, :message, 7, "google.protobuf.Timestamp"
|
126
|
-
optional :update_time, :message, 6, "google.protobuf.Timestamp"
|
127
|
-
optional :conflict_detected, :bool, 5
|
128
|
-
end
|
129
|
-
add_message "google.datastore.v1.ReadOptions" do
|
130
|
-
oneof :consistency_type do
|
131
|
-
optional :read_consistency, :enum, 1, "google.datastore.v1.ReadOptions.ReadConsistency"
|
132
|
-
optional :transaction, :bytes, 2
|
133
|
-
optional :new_transaction, :message, 3, "google.datastore.v1.TransactionOptions"
|
134
|
-
optional :read_time, :message, 4, "google.protobuf.Timestamp"
|
135
|
-
end
|
136
|
-
end
|
137
|
-
add_enum "google.datastore.v1.ReadOptions.ReadConsistency" do
|
138
|
-
value :READ_CONSISTENCY_UNSPECIFIED, 0
|
139
|
-
value :STRONG, 1
|
140
|
-
value :EVENTUAL, 2
|
141
|
-
end
|
142
|
-
add_message "google.datastore.v1.TransactionOptions" do
|
143
|
-
oneof :mode do
|
144
|
-
optional :read_write, :message, 1, "google.datastore.v1.TransactionOptions.ReadWrite"
|
145
|
-
optional :read_only, :message, 2, "google.datastore.v1.TransactionOptions.ReadOnly"
|
146
|
-
end
|
147
|
-
end
|
148
|
-
add_message "google.datastore.v1.TransactionOptions.ReadWrite" do
|
149
|
-
optional :previous_transaction, :bytes, 1
|
150
|
-
end
|
151
|
-
add_message "google.datastore.v1.TransactionOptions.ReadOnly" do
|
152
|
-
optional :read_time, :message, 1, "google.protobuf.Timestamp"
|
16
|
+
|
17
|
+
descriptor_data = "\n#google/datastore/v1/datastore.proto\x12\x13google.datastore.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x18google/api/routing.proto\x1a,google/datastore/v1/aggregation_result.proto\x1a google/datastore/v1/entity.proto\x1a\x1fgoogle/datastore/v1/query.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa2\x01\n\rLookupRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x36\n\x0cread_options\x18\x01 \x01(\x0b\x32 .google.datastore.v1.ReadOptions\x12+\n\x04keys\x18\x03 \x03(\x0b\x32\x18.google.datastore.v1.KeyB\x03\xe0\x41\x02\"\xe6\x01\n\x0eLookupResponse\x12\x30\n\x05\x66ound\x18\x01 \x03(\x0b\x32!.google.datastore.v1.EntityResult\x12\x32\n\x07missing\x18\x02 \x03(\x0b\x32!.google.datastore.v1.EntityResult\x12*\n\x08\x64\x65\x66\x65rred\x18\x03 \x03(\x0b\x32\x18.google.datastore.v1.Key\x12\x13\n\x0btransaction\x18\x05 \x01(\x0c\x12-\n\tread_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x9e\x02\n\x0fRunQueryRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x36\n\x0cpartition_id\x18\x02 \x01(\x0b\x32 .google.datastore.v1.PartitionId\x12\x36\n\x0cread_options\x18\x01 \x01(\x0b\x32 .google.datastore.v1.ReadOptions\x12+\n\x05query\x18\x03 \x01(\x0b\x32\x1a.google.datastore.v1.QueryH\x00\x12\x32\n\tgql_query\x18\x07 \x01(\x0b\x32\x1d.google.datastore.v1.GqlQueryH\x00\x42\x0c\n\nquery_type\"\x88\x01\n\x10RunQueryResponse\x12\x34\n\x05\x62\x61tch\x18\x01 \x01(\x0b\x32%.google.datastore.v1.QueryResultBatch\x12)\n\x05query\x18\x02 \x01(\x0b\x32\x1a.google.datastore.v1.Query\x12\x13\n\x0btransaction\x18\x05 \x01(\x0c\"\xc0\x02\n\x1aRunAggregationQueryRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x36\n\x0cpartition_id\x18\x02 \x01(\x0b\x32 .google.datastore.v1.PartitionId\x12\x36\n\x0cread_options\x18\x01 \x01(\x0b\x32 .google.datastore.v1.ReadOptions\x12\x42\n\x11\x61ggregation_query\x18\x03 \x01(\x0b\x32%.google.datastore.v1.AggregationQueryH\x00\x12\x32\n\tgql_query\x18\x07 \x01(\x0b\x32\x1d.google.datastore.v1.GqlQueryH\x00\x42\x0c\n\nquery_type\"\xa4\x01\n\x1bRunAggregationQueryResponse\x12:\n\x05\x62\x61tch\x18\x01 \x01(\x0b\x32+.google.datastore.v1.AggregationResultBatch\x12\x34\n\x05query\x18\x02 \x01(\x0b\x32%.google.datastore.v1.AggregationQuery\x12\x13\n\x0btransaction\x18\x05 \x01(\x0c\"\x8d\x01\n\x17\x42\x65ginTransactionRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x44\n\x13transaction_options\x18\n \x01(\x0b\x32\'.google.datastore.v1.TransactionOptions\"/\n\x18\x42\x65ginTransactionResponse\x12\x13\n\x0btransaction\x18\x01 \x01(\x0c\"Y\n\x0fRollbackRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x18\n\x0btransaction\x18\x01 \x01(\x0c\x42\x03\xe0\x41\x02\"\x12\n\x10RollbackResponse\"\xe8\x02\n\rCommitRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12\x35\n\x04mode\x18\x05 \x01(\x0e\x32\'.google.datastore.v1.CommitRequest.Mode\x12\x15\n\x0btransaction\x18\x01 \x01(\x0cH\x00\x12I\n\x16single_use_transaction\x18\n \x01(\x0b\x32\'.google.datastore.v1.TransactionOptionsH\x00\x12\x30\n\tmutations\x18\x06 \x03(\x0b\x32\x1d.google.datastore.v1.Mutation\"F\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x11\n\rTRANSACTIONAL\x10\x01\x12\x15\n\x11NON_TRANSACTIONAL\x10\x02\x42\x16\n\x14transaction_selector\"\x97\x01\n\x0e\x43ommitResponse\x12=\n\x10mutation_results\x18\x03 \x03(\x0b\x32#.google.datastore.v1.MutationResult\x12\x15\n\rindex_updates\x18\x04 \x01(\x05\x12/\n\x0b\x63ommit_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"o\n\x12\x41llocateIdsRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12+\n\x04keys\x18\x01 \x03(\x0b\x32\x18.google.datastore.v1.KeyB\x03\xe0\x41\x02\"=\n\x13\x41llocateIdsResponse\x12&\n\x04keys\x18\x01 \x03(\x0b\x32\x18.google.datastore.v1.Key\"n\n\x11ReserveIdsRequest\x12\x17\n\nproject_id\x18\x08 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x0b\x64\x61tabase_id\x18\t \x01(\t\x12+\n\x04keys\x18\x01 \x03(\x0b\x32\x18.google.datastore.v1.KeyB\x03\xe0\x41\x02\"\x14\n\x12ReserveIdsResponse\"\xba\x02\n\x08Mutation\x12-\n\x06insert\x18\x04 \x01(\x0b\x32\x1b.google.datastore.v1.EntityH\x00\x12-\n\x06update\x18\x05 \x01(\x0b\x32\x1b.google.datastore.v1.EntityH\x00\x12-\n\x06upsert\x18\x06 \x01(\x0b\x32\x1b.google.datastore.v1.EntityH\x00\x12*\n\x06\x64\x65lete\x18\x07 \x01(\x0b\x32\x18.google.datastore.v1.KeyH\x00\x12\x16\n\x0c\x62\x61se_version\x18\x08 \x01(\x03H\x01\x12\x31\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x42\x0b\n\toperationB\x1d\n\x1b\x63onflict_detection_strategy\"\xc5\x01\n\x0eMutationResult\x12%\n\x03key\x18\x03 \x01(\x0b\x32\x18.google.datastore.v1.Key\x12\x0f\n\x07version\x18\x04 \x01(\x03\x12/\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x19\n\x11\x63onflict_detected\x18\x05 \x01(\x08\"\xca\x02\n\x0bReadOptions\x12L\n\x10read_consistency\x18\x01 \x01(\x0e\x32\x30.google.datastore.v1.ReadOptions.ReadConsistencyH\x00\x12\x15\n\x0btransaction\x18\x02 \x01(\x0cH\x00\x12\x42\n\x0fnew_transaction\x18\x03 \x01(\x0b\x32\'.google.datastore.v1.TransactionOptionsH\x00\x12/\n\tread_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\"M\n\x0fReadConsistency\x12 \n\x1cREAD_CONSISTENCY_UNSPECIFIED\x10\x00\x12\n\n\x06STRONG\x10\x01\x12\x0c\n\x08\x45VENTUAL\x10\x02\x42\x12\n\x10\x63onsistency_type\"\x92\x02\n\x12TransactionOptions\x12G\n\nread_write\x18\x01 \x01(\x0b\x32\x31.google.datastore.v1.TransactionOptions.ReadWriteH\x00\x12\x45\n\tread_only\x18\x02 \x01(\x0b\x32\x30.google.datastore.v1.TransactionOptions.ReadOnlyH\x00\x1a)\n\tReadWrite\x12\x1c\n\x14previous_transaction\x18\x01 \x01(\x0c\x1a\x39\n\x08ReadOnly\x12-\n\tread_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x06\n\x04mode2\xe1\r\n\tDatastore\x12\xc0\x01\n\x06Lookup\x12\".google.datastore.v1.LookupRequest\x1a#.google.datastore.v1.LookupResponse\"m\x82\xd3\xe4\x93\x02%\" /v1/projects/{project_id}:lookup:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41\x1cproject_id,read_options,keys\x12\xa9\x01\n\x08RunQuery\x12$.google.datastore.v1.RunQueryRequest\x1a%.google.datastore.v1.RunQueryResponse\"P\x82\xd3\xe4\x93\x02\'\"\"/v1/projects/{project_id}:runQuery:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\x12\xd5\x01\n\x13RunAggregationQuery\x12/.google.datastore.v1.RunAggregationQueryRequest\x1a\x30.google.datastore.v1.RunAggregationQueryResponse\"[\x82\xd3\xe4\x93\x02\x32\"-/v1/projects/{project_id}:runAggregationQuery:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\x12\xd6\x01\n\x10\x42\x65ginTransaction\x12,.google.datastore.v1.BeginTransactionRequest\x1a-.google.datastore.v1.BeginTransactionResponse\"e\x82\xd3\xe4\x93\x02/\"*/v1/projects/{project_id}:beginTransaction:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41\nproject_id\x12\xe6\x01\n\x06\x43ommit\x12\".google.datastore.v1.CommitRequest\x1a#.google.datastore.v1.CommitResponse\"\x92\x01\x82\xd3\xe4\x93\x02%\" /v1/projects/{project_id}:commit:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41%project_id,mode,transaction,mutations\xda\x41\x19project_id,mode,mutations\x12\xc2\x01\n\x08Rollback\x12$.google.datastore.v1.RollbackRequest\x1a%.google.datastore.v1.RollbackResponse\"i\x82\xd3\xe4\x93\x02\'\"\"/v1/projects/{project_id}:rollback:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41\x16project_id,transaction\x12\xc7\x01\n\x0b\x41llocateIds\x12\'.google.datastore.v1.AllocateIdsRequest\x1a(.google.datastore.v1.AllocateIdsResponse\"e\x82\xd3\xe4\x93\x02*\"%/v1/projects/{project_id}:allocateIds:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41\x0fproject_id,keys\x12\xc3\x01\n\nReserveIds\x12&.google.datastore.v1.ReserveIdsRequest\x1a\'.google.datastore.v1.ReserveIdsResponse\"d\x82\xd3\xe4\x93\x02)\"$/v1/projects/{project_id}:reserveIds:\x01*\x8a\xd3\xe4\x93\x02\x1d\x12\x0c\n\nproject_id\x12\r\n\x0b\x64\x61tabase_id\xda\x41\x0fproject_id,keys\x1av\xca\x41\x18\x64\x61tastore.googleapis.com\xd2\x41Xhttps://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/datastoreB\xc0\x01\n\x17\x63om.google.datastore.v1B\x0e\x44\x61tastoreProtoP\x01Z<google.golang.org/genproto/googleapis/datastore/v1;datastore\xaa\x02\x19Google.Cloud.Datastore.V1\xca\x02\x19Google\\Cloud\\Datastore\\V1\xea\x02\x1cGoogle::Cloud::Datastore::V1b\x06proto3"
|
18
|
+
|
19
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
20
|
+
|
21
|
+
begin
|
22
|
+
pool.add_serialized_file(descriptor_data)
|
23
|
+
rescue TypeError => e
|
24
|
+
# Compatibility code: will be removed in the next major version.
|
25
|
+
require 'google/protobuf/descriptor_pb'
|
26
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
27
|
+
parsed.clear_dependency
|
28
|
+
serialized = parsed.class.encode(parsed)
|
29
|
+
file = pool.add_serialized_file(serialized)
|
30
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
31
|
+
imports = [
|
32
|
+
["google.datastore.v1.Key", "google/datastore/v1/entity.proto"],
|
33
|
+
["google.datastore.v1.EntityResult", "google/datastore/v1/query.proto"],
|
34
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
35
|
+
["google.datastore.v1.AggregationResultBatch", "google/datastore/v1/aggregation_result.proto"],
|
36
|
+
]
|
37
|
+
imports.each do |type_name, expected_filename|
|
38
|
+
import_file = pool.lookup(type_name).file_descriptor
|
39
|
+
if import_file.name != expected_filename
|
40
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
153
41
|
end
|
154
42
|
end
|
43
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
44
|
+
warn "This will become an error in the next major version."
|
155
45
|
end
|
156
46
|
|
157
47
|
module Google
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/datastore/v1/entity.proto
|
3
4
|
|
@@ -7,49 +8,33 @@ require 'google/protobuf/struct_pb'
|
|
7
8
|
require 'google/protobuf/timestamp_pb'
|
8
9
|
require 'google/type/latlng_pb'
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
optional :exclude_from_indexes, :bool, 19
|
34
|
-
oneof :value_type do
|
35
|
-
optional :null_value, :enum, 11, "google.protobuf.NullValue"
|
36
|
-
optional :boolean_value, :bool, 1
|
37
|
-
optional :integer_value, :int64, 2
|
38
|
-
optional :double_value, :double, 3
|
39
|
-
optional :timestamp_value, :message, 10, "google.protobuf.Timestamp"
|
40
|
-
optional :key_value, :message, 5, "google.datastore.v1.Key"
|
41
|
-
optional :string_value, :string, 17
|
42
|
-
optional :blob_value, :bytes, 18
|
43
|
-
optional :geo_point_value, :message, 8, "google.type.LatLng"
|
44
|
-
optional :entity_value, :message, 6, "google.datastore.v1.Entity"
|
45
|
-
optional :array_value, :message, 9, "google.datastore.v1.ArrayValue"
|
46
|
-
end
|
47
|
-
end
|
48
|
-
add_message "google.datastore.v1.Entity" do
|
49
|
-
optional :key, :message, 1, "google.datastore.v1.Key"
|
50
|
-
map :properties, :string, :message, 3, "google.datastore.v1.Value"
|
11
|
+
|
12
|
+
descriptor_data = "\n google/datastore/v1/entity.proto\x12\x13google.datastore.v1\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x18google/type/latlng.proto\"L\n\x0bPartitionId\x12\x12\n\nproject_id\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x61tabase_id\x18\x03 \x01(\t\x12\x14\n\x0cnamespace_id\x18\x04 \x01(\t\"\xb7\x01\n\x03Key\x12\x36\n\x0cpartition_id\x18\x01 \x01(\x0b\x32 .google.datastore.v1.PartitionId\x12\x32\n\x04path\x18\x02 \x03(\x0b\x32$.google.datastore.v1.Key.PathElement\x1a\x44\n\x0bPathElement\x12\x0c\n\x04kind\x18\x01 \x01(\t\x12\x0c\n\x02id\x18\x02 \x01(\x03H\x00\x12\x0e\n\x04name\x18\x03 \x01(\tH\x00\x42\t\n\x07id_type\"8\n\nArrayValue\x12*\n\x06values\x18\x01 \x03(\x0b\x32\x1a.google.datastore.v1.Value\"\xf1\x03\n\x05Value\x12\x30\n\nnull_value\x18\x0b \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x12\x17\n\rboolean_value\x18\x01 \x01(\x08H\x00\x12\x17\n\rinteger_value\x18\x02 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x03 \x01(\x01H\x00\x12\x35\n\x0ftimestamp_value\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x12-\n\tkey_value\x18\x05 \x01(\x0b\x32\x18.google.datastore.v1.KeyH\x00\x12\x16\n\x0cstring_value\x18\x11 \x01(\tH\x00\x12\x14\n\nblob_value\x18\x12 \x01(\x0cH\x00\x12.\n\x0fgeo_point_value\x18\x08 \x01(\x0b\x32\x13.google.type.LatLngH\x00\x12\x33\n\x0c\x65ntity_value\x18\x06 \x01(\x0b\x32\x1b.google.datastore.v1.EntityH\x00\x12\x36\n\x0b\x61rray_value\x18\t \x01(\x0b\x32\x1f.google.datastore.v1.ArrayValueH\x00\x12\x0f\n\x07meaning\x18\x0e \x01(\x05\x12\x1c\n\x14\x65xclude_from_indexes\x18\x13 \x01(\x08\x42\x0c\n\nvalue_type\"\xbf\x01\n\x06\x45ntity\x12%\n\x03key\x18\x01 \x01(\x0b\x32\x18.google.datastore.v1.Key\x12?\n\nproperties\x18\x03 \x03(\x0b\x32+.google.datastore.v1.Entity.PropertiesEntry\x1aM\n\x0fPropertiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.datastore.v1.Value:\x02\x38\x01\x42\xbd\x01\n\x17\x63om.google.datastore.v1B\x0b\x45ntityProtoP\x01Z<google.golang.org/genproto/googleapis/datastore/v1;datastore\xaa\x02\x19Google.Cloud.Datastore.V1\xca\x02\x19Google\\Cloud\\Datastore\\V1\xea\x02\x1cGoogle::Cloud::Datastore::V1b\x06proto3"
|
13
|
+
|
14
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
15
|
+
|
16
|
+
begin
|
17
|
+
pool.add_serialized_file(descriptor_data)
|
18
|
+
rescue TypeError => e
|
19
|
+
# Compatibility code: will be removed in the next major version.
|
20
|
+
require 'google/protobuf/descriptor_pb'
|
21
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
22
|
+
parsed.clear_dependency
|
23
|
+
serialized = parsed.class.encode(parsed)
|
24
|
+
file = pool.add_serialized_file(serialized)
|
25
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
26
|
+
imports = [
|
27
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
28
|
+
["google.type.LatLng", "google/type/latlng.proto"],
|
29
|
+
]
|
30
|
+
imports.each do |type_name, expected_filename|
|
31
|
+
import_file = pool.lookup(type_name).file_descriptor
|
32
|
+
if import_file.name != expected_filename
|
33
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
51
34
|
end
|
52
35
|
end
|
36
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
37
|
+
warn "This will become an error in the next major version."
|
53
38
|
end
|
54
39
|
|
55
40
|
module Google
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/datastore/v1/query.proto
|
3
4
|
|
@@ -8,127 +9,34 @@ require 'google/datastore/v1/entity_pb'
|
|
8
9
|
require 'google/protobuf/timestamp_pb'
|
9
10
|
require 'google/protobuf/wrappers_pb'
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
optional :limit, :message, 12, "google.protobuf.Int32Value"
|
36
|
-
end
|
37
|
-
add_message "google.datastore.v1.AggregationQuery" do
|
38
|
-
repeated :aggregations, :message, 3, "google.datastore.v1.AggregationQuery.Aggregation"
|
39
|
-
oneof :query_type do
|
40
|
-
optional :nested_query, :message, 1, "google.datastore.v1.Query"
|
41
|
-
end
|
42
|
-
end
|
43
|
-
add_message "google.datastore.v1.AggregationQuery.Aggregation" do
|
44
|
-
optional :alias, :string, 7
|
45
|
-
oneof :operator do
|
46
|
-
optional :count, :message, 1, "google.datastore.v1.AggregationQuery.Aggregation.Count"
|
47
|
-
end
|
48
|
-
end
|
49
|
-
add_message "google.datastore.v1.AggregationQuery.Aggregation.Count" do
|
50
|
-
optional :up_to, :message, 1, "google.protobuf.Int64Value"
|
51
|
-
end
|
52
|
-
add_message "google.datastore.v1.KindExpression" do
|
53
|
-
optional :name, :string, 1
|
54
|
-
end
|
55
|
-
add_message "google.datastore.v1.PropertyReference" do
|
56
|
-
optional :name, :string, 2
|
57
|
-
end
|
58
|
-
add_message "google.datastore.v1.Projection" do
|
59
|
-
optional :property, :message, 1, "google.datastore.v1.PropertyReference"
|
60
|
-
end
|
61
|
-
add_message "google.datastore.v1.PropertyOrder" do
|
62
|
-
optional :property, :message, 1, "google.datastore.v1.PropertyReference"
|
63
|
-
optional :direction, :enum, 2, "google.datastore.v1.PropertyOrder.Direction"
|
64
|
-
end
|
65
|
-
add_enum "google.datastore.v1.PropertyOrder.Direction" do
|
66
|
-
value :DIRECTION_UNSPECIFIED, 0
|
67
|
-
value :ASCENDING, 1
|
68
|
-
value :DESCENDING, 2
|
69
|
-
end
|
70
|
-
add_message "google.datastore.v1.Filter" do
|
71
|
-
oneof :filter_type do
|
72
|
-
optional :composite_filter, :message, 1, "google.datastore.v1.CompositeFilter"
|
73
|
-
optional :property_filter, :message, 2, "google.datastore.v1.PropertyFilter"
|
74
|
-
end
|
75
|
-
end
|
76
|
-
add_message "google.datastore.v1.CompositeFilter" do
|
77
|
-
optional :op, :enum, 1, "google.datastore.v1.CompositeFilter.Operator"
|
78
|
-
repeated :filters, :message, 2, "google.datastore.v1.Filter"
|
79
|
-
end
|
80
|
-
add_enum "google.datastore.v1.CompositeFilter.Operator" do
|
81
|
-
value :OPERATOR_UNSPECIFIED, 0
|
82
|
-
value :AND, 1
|
83
|
-
value :OR, 2
|
84
|
-
end
|
85
|
-
add_message "google.datastore.v1.PropertyFilter" do
|
86
|
-
optional :property, :message, 1, "google.datastore.v1.PropertyReference"
|
87
|
-
optional :op, :enum, 2, "google.datastore.v1.PropertyFilter.Operator"
|
88
|
-
optional :value, :message, 3, "google.datastore.v1.Value"
|
89
|
-
end
|
90
|
-
add_enum "google.datastore.v1.PropertyFilter.Operator" do
|
91
|
-
value :OPERATOR_UNSPECIFIED, 0
|
92
|
-
value :LESS_THAN, 1
|
93
|
-
value :LESS_THAN_OR_EQUAL, 2
|
94
|
-
value :GREATER_THAN, 3
|
95
|
-
value :GREATER_THAN_OR_EQUAL, 4
|
96
|
-
value :EQUAL, 5
|
97
|
-
value :IN, 6
|
98
|
-
value :NOT_EQUAL, 9
|
99
|
-
value :HAS_ANCESTOR, 11
|
100
|
-
value :NOT_IN, 13
|
101
|
-
end
|
102
|
-
add_message "google.datastore.v1.GqlQuery" do
|
103
|
-
optional :query_string, :string, 1
|
104
|
-
optional :allow_literals, :bool, 2
|
105
|
-
map :named_bindings, :string, :message, 5, "google.datastore.v1.GqlQueryParameter"
|
106
|
-
repeated :positional_bindings, :message, 4, "google.datastore.v1.GqlQueryParameter"
|
107
|
-
end
|
108
|
-
add_message "google.datastore.v1.GqlQueryParameter" do
|
109
|
-
oneof :parameter_type do
|
110
|
-
optional :value, :message, 2, "google.datastore.v1.Value"
|
111
|
-
optional :cursor, :bytes, 3
|
112
|
-
end
|
113
|
-
end
|
114
|
-
add_message "google.datastore.v1.QueryResultBatch" do
|
115
|
-
optional :skipped_results, :int32, 6
|
116
|
-
optional :skipped_cursor, :bytes, 3
|
117
|
-
optional :entity_result_type, :enum, 1, "google.datastore.v1.EntityResult.ResultType"
|
118
|
-
repeated :entity_results, :message, 2, "google.datastore.v1.EntityResult"
|
119
|
-
optional :end_cursor, :bytes, 4
|
120
|
-
optional :more_results, :enum, 5, "google.datastore.v1.QueryResultBatch.MoreResultsType"
|
121
|
-
optional :snapshot_version, :int64, 7
|
122
|
-
optional :read_time, :message, 8, "google.protobuf.Timestamp"
|
123
|
-
end
|
124
|
-
add_enum "google.datastore.v1.QueryResultBatch.MoreResultsType" do
|
125
|
-
value :MORE_RESULTS_TYPE_UNSPECIFIED, 0
|
126
|
-
value :NOT_FINISHED, 1
|
127
|
-
value :MORE_RESULTS_AFTER_LIMIT, 2
|
128
|
-
value :MORE_RESULTS_AFTER_CURSOR, 4
|
129
|
-
value :NO_MORE_RESULTS, 3
|
12
|
+
|
13
|
+
descriptor_data = "\n\x1fgoogle/datastore/v1/query.proto\x12\x13google.datastore.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a google/datastore/v1/entity.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x91\x02\n\x0c\x45ntityResult\x12+\n\x06\x65ntity\x18\x01 \x01(\x0b\x32\x1b.google.datastore.v1.Entity\x12\x0f\n\x07version\x18\x04 \x01(\x03\x12/\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06\x63ursor\x18\x03 \x01(\x0c\"Q\n\nResultType\x12\x1b\n\x17RESULT_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04\x46ULL\x10\x01\x12\x0e\n\nPROJECTION\x10\x02\x12\x0c\n\x08KEY_ONLY\x10\x03\"\xf2\x02\n\x05Query\x12\x33\n\nprojection\x18\x02 \x03(\x0b\x32\x1f.google.datastore.v1.Projection\x12\x31\n\x04kind\x18\x03 \x03(\x0b\x32#.google.datastore.v1.KindExpression\x12+\n\x06\x66ilter\x18\x04 \x01(\x0b\x32\x1b.google.datastore.v1.Filter\x12\x31\n\x05order\x18\x05 \x03(\x0b\x32\".google.datastore.v1.PropertyOrder\x12;\n\x0b\x64istinct_on\x18\x06 \x03(\x0b\x32&.google.datastore.v1.PropertyReference\x12\x14\n\x0cstart_cursor\x18\x07 \x01(\x0c\x12\x12\n\nend_cursor\x18\x08 \x01(\x0c\x12\x0e\n\x06offset\x18\n \x01(\x05\x12*\n\x05limit\x18\x0c \x01(\x0b\x32\x1b.google.protobuf.Int32Value\"\xe4\x04\n\x10\x41ggregationQuery\x12\x32\n\x0cnested_query\x18\x01 \x01(\x0b\x32\x1a.google.datastore.v1.QueryH\x00\x12L\n\x0c\x61ggregations\x18\x03 \x03(\x0b\x32\x31.google.datastore.v1.AggregationQuery.AggregationB\x03\xe0\x41\x01\x1a\xbf\x03\n\x0b\x41ggregation\x12H\n\x05\x63ount\x18\x01 \x01(\x0b\x32\x37.google.datastore.v1.AggregationQuery.Aggregation.CountH\x00\x12\x44\n\x03sum\x18\x02 \x01(\x0b\x32\x35.google.datastore.v1.AggregationQuery.Aggregation.SumH\x00\x12\x44\n\x03\x61vg\x18\x03 \x01(\x0b\x32\x35.google.datastore.v1.AggregationQuery.Aggregation.AvgH\x00\x12\x12\n\x05\x61lias\x18\x07 \x01(\tB\x03\xe0\x41\x01\x1a\x38\n\x05\x43ount\x12/\n\x05up_to\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x03\xe0\x41\x01\x1a?\n\x03Sum\x12\x38\n\x08property\x18\x01 \x01(\x0b\x32&.google.datastore.v1.PropertyReference\x1a?\n\x03\x41vg\x12\x38\n\x08property\x18\x01 \x01(\x0b\x32&.google.datastore.v1.PropertyReferenceB\n\n\x08operatorB\x0c\n\nquery_type\"\x1e\n\x0eKindExpression\x12\x0c\n\x04name\x18\x01 \x01(\t\"!\n\x11PropertyReference\x12\x0c\n\x04name\x18\x02 \x01(\t\"F\n\nProjection\x12\x38\n\x08property\x18\x01 \x01(\x0b\x32&.google.datastore.v1.PropertyReference\"\xd1\x01\n\rPropertyOrder\x12\x38\n\x08property\x18\x01 \x01(\x0b\x32&.google.datastore.v1.PropertyReference\x12?\n\tdirection\x18\x02 \x01(\x0e\x32,.google.datastore.v1.PropertyOrder.Direction\"E\n\tDirection\x12\x19\n\x15\x44IRECTION_UNSPECIFIED\x10\x00\x12\r\n\tASCENDING\x10\x01\x12\x0e\n\nDESCENDING\x10\x02\"\x99\x01\n\x06\x46ilter\x12@\n\x10\x63omposite_filter\x18\x01 \x01(\x0b\x32$.google.datastore.v1.CompositeFilterH\x00\x12>\n\x0fproperty_filter\x18\x02 \x01(\x0b\x32#.google.datastore.v1.PropertyFilterH\x00\x42\r\n\x0b\x66ilter_type\"\xb1\x01\n\x0f\x43ompositeFilter\x12\x39\n\x02op\x18\x01 \x01(\x0e\x32-.google.datastore.v1.CompositeFilter.Operator\x12,\n\x07\x66ilters\x18\x02 \x03(\x0b\x32\x1b.google.datastore.v1.Filter\"5\n\x08Operator\x12\x18\n\x14OPERATOR_UNSPECIFIED\x10\x00\x12\x07\n\x03\x41ND\x10\x01\x12\x06\n\x02OR\x10\x02\"\xea\x02\n\x0ePropertyFilter\x12\x38\n\x08property\x18\x01 \x01(\x0b\x32&.google.datastore.v1.PropertyReference\x12\x38\n\x02op\x18\x02 \x01(\x0e\x32,.google.datastore.v1.PropertyFilter.Operator\x12)\n\x05value\x18\x03 \x01(\x0b\x32\x1a.google.datastore.v1.Value\"\xb8\x01\n\x08Operator\x12\x18\n\x14OPERATOR_UNSPECIFIED\x10\x00\x12\r\n\tLESS_THAN\x10\x01\x12\x16\n\x12LESS_THAN_OR_EQUAL\x10\x02\x12\x10\n\x0cGREATER_THAN\x10\x03\x12\x19\n\x15GREATER_THAN_OR_EQUAL\x10\x04\x12\t\n\x05\x45QUAL\x10\x05\x12\x06\n\x02IN\x10\x06\x12\r\n\tNOT_EQUAL\x10\t\x12\x10\n\x0cHAS_ANCESTOR\x10\x0b\x12\n\n\x06NOT_IN\x10\r\"\xa5\x02\n\x08GqlQuery\x12\x14\n\x0cquery_string\x18\x01 \x01(\t\x12\x16\n\x0e\x61llow_literals\x18\x02 \x01(\x08\x12H\n\x0enamed_bindings\x18\x05 \x03(\x0b\x32\x30.google.datastore.v1.GqlQuery.NamedBindingsEntry\x12\x43\n\x13positional_bindings\x18\x04 \x03(\x0b\x32&.google.datastore.v1.GqlQueryParameter\x1a\\\n\x12NamedBindingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.google.datastore.v1.GqlQueryParameter:\x02\x38\x01\"d\n\x11GqlQueryParameter\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1a.google.datastore.v1.ValueH\x00\x12\x10\n\x06\x63ursor\x18\x03 \x01(\x0cH\x00\x42\x10\n\x0eparameter_type\"\x8d\x04\n\x10QueryResultBatch\x12\x17\n\x0fskipped_results\x18\x06 \x01(\x05\x12\x16\n\x0eskipped_cursor\x18\x03 \x01(\x0c\x12H\n\x12\x65ntity_result_type\x18\x01 \x01(\x0e\x32,.google.datastore.v1.EntityResult.ResultType\x12\x39\n\x0e\x65ntity_results\x18\x02 \x03(\x0b\x32!.google.datastore.v1.EntityResult\x12\x12\n\nend_cursor\x18\x04 \x01(\x0c\x12K\n\x0cmore_results\x18\x05 \x01(\x0e\x32\x35.google.datastore.v1.QueryResultBatch.MoreResultsType\x12\x18\n\x10snapshot_version\x18\x07 \x01(\x03\x12-\n\tread_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x98\x01\n\x0fMoreResultsType\x12!\n\x1dMORE_RESULTS_TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cNOT_FINISHED\x10\x01\x12\x1c\n\x18MORE_RESULTS_AFTER_LIMIT\x10\x02\x12\x1d\n\x19MORE_RESULTS_AFTER_CURSOR\x10\x04\x12\x13\n\x0fNO_MORE_RESULTS\x10\x03\x42\xbc\x01\n\x17\x63om.google.datastore.v1B\nQueryProtoP\x01Z<google.golang.org/genproto/googleapis/datastore/v1;datastore\xaa\x02\x19Google.Cloud.Datastore.V1\xca\x02\x19Google\\Cloud\\Datastore\\V1\xea\x02\x1cGoogle::Cloud::Datastore::V1b\x06proto3"
|
14
|
+
|
15
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
16
|
+
|
17
|
+
begin
|
18
|
+
pool.add_serialized_file(descriptor_data)
|
19
|
+
rescue TypeError => e
|
20
|
+
# Compatibility code: will be removed in the next major version.
|
21
|
+
require 'google/protobuf/descriptor_pb'
|
22
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
23
|
+
parsed.clear_dependency
|
24
|
+
serialized = parsed.class.encode(parsed)
|
25
|
+
file = pool.add_serialized_file(serialized)
|
26
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
27
|
+
imports = [
|
28
|
+
["google.datastore.v1.Entity", "google/datastore/v1/entity.proto"],
|
29
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
30
|
+
["google.protobuf.Int32Value", "google/protobuf/wrappers.proto"],
|
31
|
+
]
|
32
|
+
imports.each do |type_name, expected_filename|
|
33
|
+
import_file = pool.lookup(type_name).file_descriptor
|
34
|
+
if import_file.name != expected_filename
|
35
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
130
36
|
end
|
131
37
|
end
|
38
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
39
|
+
warn "This will become an error in the next major version."
|
132
40
|
end
|
133
41
|
|
134
42
|
module Google
|
@@ -141,6 +49,8 @@ module Google
|
|
141
49
|
AggregationQuery = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.AggregationQuery").msgclass
|
142
50
|
AggregationQuery::Aggregation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.AggregationQuery.Aggregation").msgclass
|
143
51
|
AggregationQuery::Aggregation::Count = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.AggregationQuery.Aggregation.Count").msgclass
|
52
|
+
AggregationQuery::Aggregation::Sum = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.AggregationQuery.Aggregation.Sum").msgclass
|
53
|
+
AggregationQuery::Aggregation::Avg = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.AggregationQuery.Aggregation.Avg").msgclass
|
144
54
|
KindExpression = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.KindExpression").msgclass
|
145
55
|
PropertyReference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.PropertyReference").msgclass
|
146
56
|
Projection = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.datastore.v1.Projection").msgclass
|
@@ -83,7 +83,7 @@ module Google
|
|
83
83
|
# long-running operation pattern.
|
84
84
|
# @!attribute [rw] new_issue_uri
|
85
85
|
# @return [::String]
|
86
|
-
# Link to a
|
86
|
+
# Link to a *public* URI where users can report issues. Example:
|
87
87
|
# https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
88
88
|
# @!attribute [rw] documentation_uri
|
89
89
|
# @return [::String]
|
@@ -209,9 +209,57 @@ module Google
|
|
209
209
|
# @!attribute [rw] common
|
210
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
211
211
|
# Some settings.
|
212
|
+
# @!attribute [rw] renamed_services
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
214
|
+
# Map from original service names to renamed versions.
|
215
|
+
# This is used when the default generated types
|
216
|
+
# would cause a naming conflict. (Neither name is
|
217
|
+
# fully-qualified.)
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
219
|
+
# @!attribute [rw] renamed_resources
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
221
|
+
# Map from full resource types to the effective short name
|
222
|
+
# for the resource. This is used when otherwise resource
|
223
|
+
# named from different services would cause naming collisions.
|
224
|
+
# Example entry:
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
226
|
+
# @!attribute [rw] ignored_resources
|
227
|
+
# @return [::Array<::String>]
|
228
|
+
# List of full resource types to ignore during generation.
|
229
|
+
# This is typically used for API-specific Location resources,
|
230
|
+
# which should be handled by the generator as if they were actually
|
231
|
+
# the common Location resources.
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
234
|
+
# @return [::Array<::String>]
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
238
|
+
# @return [::Array<::String>]
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
212
242
|
class DotnetSettings
|
213
243
|
include ::Google::Protobuf::MessageExts
|
214
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
|
246
|
+
# @!attribute [rw] key
|
247
|
+
# @return [::String]
|
248
|
+
# @!attribute [rw] value
|
249
|
+
# @return [::String]
|
250
|
+
class RenamedServicesEntry
|
251
|
+
include ::Google::Protobuf::MessageExts
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
253
|
+
end
|
254
|
+
|
255
|
+
# @!attribute [rw] key
|
256
|
+
# @return [::String]
|
257
|
+
# @!attribute [rw] value
|
258
|
+
# @return [::String]
|
259
|
+
class RenamedResourcesEntry
|
260
|
+
include ::Google::Protobuf::MessageExts
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
262
|
+
end
|
215
263
|
end
|
216
264
|
|
217
265
|
# Settings for Ruby client libraries.
|
@@ -305,6 +353,15 @@ module Google
|
|
305
353
|
|
306
354
|
# Street View Org.
|
307
355
|
STREET_VIEW = 4
|
356
|
+
|
357
|
+
# Shopping Org.
|
358
|
+
SHOPPING = 5
|
359
|
+
|
360
|
+
# Geo Org.
|
361
|
+
GEO = 6
|
362
|
+
|
363
|
+
# Generative AI - https://developers.generativeai.google
|
364
|
+
GENERATIVE_AI = 7
|
308
365
|
end
|
309
366
|
|
310
367
|
# To where should client libraries be published?
|
@@ -451,9 +451,12 @@ module Google
|
|
451
451
|
# {::Google::Cloud::Datastore::V1::RunQueryResponse#transaction RunQueryResponse.transaction}.
|
452
452
|
# @!attribute [rw] read_time
|
453
453
|
# @return [::Google::Protobuf::Timestamp]
|
454
|
-
# Reads entities as they were at the given time. This
|
455
|
-
#
|
456
|
-
#
|
454
|
+
# Reads entities as they were at the given time. This value is only
|
455
|
+
# supported for Cloud Firestore in Datastore mode.
|
456
|
+
#
|
457
|
+
# This must be a microsecond precision timestamp within the past one hour,
|
458
|
+
# or if Point-in-Time Recovery is enabled, can additionally be a whole
|
459
|
+
# minute timestamp within the past 7 days.
|
457
460
|
class ReadOptions
|
458
461
|
include ::Google::Protobuf::MessageExts
|
459
462
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -501,7 +504,10 @@ module Google
|
|
501
504
|
# @!attribute [rw] read_time
|
502
505
|
# @return [::Google::Protobuf::Timestamp]
|
503
506
|
# Reads entities at the given time.
|
504
|
-
#
|
507
|
+
#
|
508
|
+
# This must be a microsecond precision timestamp within the past one hour,
|
509
|
+
# or if Point-in-Time Recovery is enabled, can additionally be a whole
|
510
|
+
# minute timestamp within the past 7 days.
|
505
511
|
class ReadOnly
|
506
512
|
include ::Google::Protobuf::MessageExts
|
507
513
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -199,9 +199,7 @@ module Google
|
|
199
199
|
|
200
200
|
# A Datastore data object.
|
201
201
|
#
|
202
|
-
#
|
203
|
-
# corresponds to a limit of 1 megabyte for the serialized form of this
|
204
|
-
# message.
|
202
|
+
# Must not exceed 1 MiB - 4 bytes.
|
205
203
|
# @!attribute [rw] key
|
206
204
|
# @return [::Google::Cloud::Datastore::V1::Key]
|
207
205
|
# The entity's key.
|
@@ -148,6 +148,12 @@ module Google
|
|
148
148
|
# @!attribute [rw] count
|
149
149
|
# @return [::Google::Cloud::Datastore::V1::AggregationQuery::Aggregation::Count]
|
150
150
|
# Count aggregator.
|
151
|
+
# @!attribute [rw] sum
|
152
|
+
# @return [::Google::Cloud::Datastore::V1::AggregationQuery::Aggregation::Sum]
|
153
|
+
# Sum aggregator.
|
154
|
+
# @!attribute [rw] avg
|
155
|
+
# @return [::Google::Cloud::Datastore::V1::AggregationQuery::Aggregation::Avg]
|
156
|
+
# Average aggregator.
|
151
157
|
# @!attribute [rw] alias
|
152
158
|
# @return [::String]
|
153
159
|
# Optional. Optional name of the property to store the result of the
|
@@ -219,6 +225,54 @@ module Google
|
|
219
225
|
include ::Google::Protobuf::MessageExts
|
220
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
221
227
|
end
|
228
|
+
|
229
|
+
# Sum of the values of the requested property.
|
230
|
+
#
|
231
|
+
# * Only numeric values will be aggregated. All non-numeric values
|
232
|
+
# including `NULL` are skipped.
|
233
|
+
#
|
234
|
+
# * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
|
235
|
+
# follows IEEE-754 standards.
|
236
|
+
#
|
237
|
+
# * If the aggregated value set is empty, returns 0.
|
238
|
+
#
|
239
|
+
# * Returns a 64-bit integer if all aggregated numbers are integers and the
|
240
|
+
# sum result does not overflow. Otherwise, the result is returned as a
|
241
|
+
# double. Note that even if all the aggregated values are integers, the
|
242
|
+
# result is returned as a double if it cannot fit within a 64-bit signed
|
243
|
+
# integer. When this occurs, the returned value will lose precision.
|
244
|
+
#
|
245
|
+
# * When underflow occurs, floating-point aggregation is non-deterministic.
|
246
|
+
# This means that running the same query repeatedly without any changes to
|
247
|
+
# the underlying values could produce slightly different results each
|
248
|
+
# time. In those cases, values should be stored as integers over
|
249
|
+
# floating-point numbers.
|
250
|
+
# @!attribute [rw] property
|
251
|
+
# @return [::Google::Cloud::Datastore::V1::PropertyReference]
|
252
|
+
# The property to aggregate on.
|
253
|
+
class Sum
|
254
|
+
include ::Google::Protobuf::MessageExts
|
255
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
256
|
+
end
|
257
|
+
|
258
|
+
# Average of the values of the requested property.
|
259
|
+
#
|
260
|
+
# * Only numeric values will be aggregated. All non-numeric values
|
261
|
+
# including `NULL` are skipped.
|
262
|
+
#
|
263
|
+
# * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
|
264
|
+
# follows IEEE-754 standards.
|
265
|
+
#
|
266
|
+
# * If the aggregated value set is empty, returns `NULL`.
|
267
|
+
#
|
268
|
+
# * Always returns the result as a double.
|
269
|
+
# @!attribute [rw] property
|
270
|
+
# @return [::Google::Cloud::Datastore::V1::PropertyReference]
|
271
|
+
# The property to aggregate on.
|
272
|
+
class Avg
|
273
|
+
include ::Google::Protobuf::MessageExts
|
274
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
275
|
+
end
|
222
276
|
end
|
223
277
|
end
|
224
278
|
|
@@ -368,8 +422,9 @@ module Google
|
|
368
422
|
#
|
369
423
|
# Requires:
|
370
424
|
#
|
371
|
-
# * That `value` is a non-empty `ArrayValue
|
372
|
-
#
|
425
|
+
# * That `value` is a non-empty `ArrayValue`, subject to disjunction
|
426
|
+
# limits.
|
427
|
+
# * No `NOT_IN` is in the same query.
|
373
428
|
IN = 6
|
374
429
|
|
375
430
|
# The given `property` is not equal to the given `value`.
|
@@ -385,7 +440,7 @@ module Google
|
|
385
440
|
# Requires:
|
386
441
|
#
|
387
442
|
# * That `value` is an entity key.
|
388
|
-
# *
|
443
|
+
# * All evaluated disjunctions must have the same `HAS_ANCESTOR` filter.
|
389
444
|
HAS_ANCESTOR = 11
|
390
445
|
|
391
446
|
# The value of the `property` is not in the given array.
|
@@ -393,7 +448,7 @@ module Google
|
|
393
448
|
# Requires:
|
394
449
|
#
|
395
450
|
# * That `value` is a non-empty `ArrayValue` with at most 10 values.
|
396
|
-
# * No other `IN`, `NOT_IN`, `NOT_EQUAL` is in the same query.
|
451
|
+
# * No other `OR`, `IN`, `NOT_IN`, `NOT_EQUAL` is in the same query.
|
397
452
|
# * That `field` comes first in the `order_by`.
|
398
453
|
NOT_IN = 13
|
399
454
|
end
|
@@ -87,7 +87,7 @@ module Google
|
|
87
87
|
# `NullValue` is a singleton enumeration to represent the null value for the
|
88
88
|
# `Value` type union.
|
89
89
|
#
|
90
|
-
#
|
90
|
+
# The JSON representation for `NullValue` is JSON `null`.
|
91
91
|
module NullValue
|
92
92
|
# Null value.
|
93
93
|
NULL_VALUE = 0
|
@@ -69,7 +69,6 @@ module Google
|
|
69
69
|
# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
|
-
#
|
73
72
|
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
73
|
#
|
75
74
|
# Instant now = Instant.now();
|
@@ -78,7 +77,6 @@ module Google
|
|
78
77
|
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
78
|
# .setNanos(now.getNano()).build();
|
80
79
|
#
|
81
|
-
#
|
82
80
|
# Example 6: Compute Timestamp from current time in Python.
|
83
81
|
#
|
84
82
|
# timestamp = Timestamp()
|
@@ -108,7 +106,7 @@ module Google
|
|
108
106
|
# [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
109
107
|
# the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
110
108
|
# the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
111
|
-
# http://
|
109
|
+
# http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
112
110
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
113
111
|
# @!attribute [rw] seconds
|
114
112
|
# @return [::Integer]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-datastore-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.19.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.19.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|