google-apis-firestore_v1beta1 0.38.0 → 0.40.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12bdc0a4c14d231096efc1b0223236886c62a3e9975eeebfaa44413d4b45ec80
|
4
|
+
data.tar.gz: d9c94ea7478dfedbb3cb84c900827f97a36644db29d58e521bf0514481cf24d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99b1076cfd60cdc8cf69cfe3473151047514499bf12990066bb1c535d83bdba4c21e29bde47a43a6ef5169d4795ba991e4533c68f5a4ec91a8bb5133e7e34c04
|
7
|
+
data.tar.gz: c6d2ace28b969403c7217b74c1dd70726ad7bb4d03854156e40af7646135e9271111dbe67dc381dacf5f8d8787cf563c4ecfc1b9b5d21881f06899cb712fcb13
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1beta1
|
2
2
|
|
3
|
+
### v0.40.0 (2024-03-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240324
|
6
|
+
|
7
|
+
### v0.39.0 (2024-03-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240317
|
10
|
+
|
3
11
|
### v0.38.0 (2024-02-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240215
|
@@ -826,6 +826,48 @@ module Google
|
|
826
826
|
end
|
827
827
|
end
|
828
828
|
|
829
|
+
# Execution statistics for the query.
|
830
|
+
class ExecutionStats
|
831
|
+
include Google::Apis::Core::Hashable
|
832
|
+
|
833
|
+
# Debugging statistics from the execution of the query. Note that the debugging
|
834
|
+
# stats are subject to change as Firestore evolves. It could include: ` "
|
835
|
+
# indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details"
|
836
|
+
# : ` "documents_billable": "20", "index_entries_billable": "1000", "
|
837
|
+
# min_query_cost": "0" ` `
|
838
|
+
# Corresponds to the JSON property `debugStats`
|
839
|
+
# @return [Hash<String,Object>]
|
840
|
+
attr_accessor :debug_stats
|
841
|
+
|
842
|
+
# Total time to execute the query in the backend.
|
843
|
+
# Corresponds to the JSON property `executionDuration`
|
844
|
+
# @return [String]
|
845
|
+
attr_accessor :execution_duration
|
846
|
+
|
847
|
+
# Total billable read operations.
|
848
|
+
# Corresponds to the JSON property `readOperations`
|
849
|
+
# @return [Fixnum]
|
850
|
+
attr_accessor :read_operations
|
851
|
+
|
852
|
+
# Total number of results returned, including documents, projections,
|
853
|
+
# aggregation results, keys.
|
854
|
+
# Corresponds to the JSON property `resultsReturned`
|
855
|
+
# @return [Fixnum]
|
856
|
+
attr_accessor :results_returned
|
857
|
+
|
858
|
+
def initialize(**args)
|
859
|
+
update!(**args)
|
860
|
+
end
|
861
|
+
|
862
|
+
# Update properties of this object
|
863
|
+
def update!(**args)
|
864
|
+
@debug_stats = args[:debug_stats] if args.key?(:debug_stats)
|
865
|
+
@execution_duration = args[:execution_duration] if args.key?(:execution_duration)
|
866
|
+
@read_operations = args[:read_operations] if args.key?(:read_operations)
|
867
|
+
@results_returned = args[:results_returned] if args.key?(:results_returned)
|
868
|
+
end
|
869
|
+
end
|
870
|
+
|
829
871
|
# A digest of all the documents that match a given target.
|
830
872
|
class ExistenceFilter
|
831
873
|
include Google::Apis::Core::Hashable
|
@@ -869,6 +911,54 @@ module Google
|
|
869
911
|
end
|
870
912
|
end
|
871
913
|
|
914
|
+
# Explain metrics for the query.
|
915
|
+
class ExplainMetrics
|
916
|
+
include Google::Apis::Core::Hashable
|
917
|
+
|
918
|
+
# Execution statistics for the query.
|
919
|
+
# Corresponds to the JSON property `executionStats`
|
920
|
+
# @return [Google::Apis::FirestoreV1beta1::ExecutionStats]
|
921
|
+
attr_accessor :execution_stats
|
922
|
+
|
923
|
+
# Planning phase information for the query.
|
924
|
+
# Corresponds to the JSON property `planSummary`
|
925
|
+
# @return [Google::Apis::FirestoreV1beta1::PlanSummary]
|
926
|
+
attr_accessor :plan_summary
|
927
|
+
|
928
|
+
def initialize(**args)
|
929
|
+
update!(**args)
|
930
|
+
end
|
931
|
+
|
932
|
+
# Update properties of this object
|
933
|
+
def update!(**args)
|
934
|
+
@execution_stats = args[:execution_stats] if args.key?(:execution_stats)
|
935
|
+
@plan_summary = args[:plan_summary] if args.key?(:plan_summary)
|
936
|
+
end
|
937
|
+
end
|
938
|
+
|
939
|
+
# Explain options for the query.
|
940
|
+
class ExplainOptions
|
941
|
+
include Google::Apis::Core::Hashable
|
942
|
+
|
943
|
+
# Optional. Whether to execute this query. When false (the default), the query
|
944
|
+
# will be planned, returning only metrics from the planning stages. When true,
|
945
|
+
# the query will be planned and executed, returning the full query results along
|
946
|
+
# with both planning and execution stage metrics.
|
947
|
+
# Corresponds to the JSON property `analyze`
|
948
|
+
# @return [Boolean]
|
949
|
+
attr_accessor :analyze
|
950
|
+
alias_method :analyze?, :analyze
|
951
|
+
|
952
|
+
def initialize(**args)
|
953
|
+
update!(**args)
|
954
|
+
end
|
955
|
+
|
956
|
+
# Update properties of this object
|
957
|
+
def update!(**args)
|
958
|
+
@analyze = args[:analyze] if args.key?(:analyze)
|
959
|
+
end
|
960
|
+
end
|
961
|
+
|
872
962
|
# A filter on a specific field.
|
873
963
|
class FieldFilter
|
874
964
|
include Google::Apis::Core::Hashable
|
@@ -1007,6 +1097,44 @@ module Google
|
|
1007
1097
|
end
|
1008
1098
|
end
|
1009
1099
|
|
1100
|
+
# Nearest Neighbors search config.
|
1101
|
+
class FindNearest
|
1102
|
+
include Google::Apis::Core::Hashable
|
1103
|
+
|
1104
|
+
# Required. The Distance Measure to use, required.
|
1105
|
+
# Corresponds to the JSON property `distanceMeasure`
|
1106
|
+
# @return [String]
|
1107
|
+
attr_accessor :distance_measure
|
1108
|
+
|
1109
|
+
# Required. The number of nearest neighbors to return. Must be a positive
|
1110
|
+
# integer of no more than 1000.
|
1111
|
+
# Corresponds to the JSON property `limit`
|
1112
|
+
# @return [Fixnum]
|
1113
|
+
attr_accessor :limit
|
1114
|
+
|
1115
|
+
# A message that can hold any of the supported value types.
|
1116
|
+
# Corresponds to the JSON property `queryVector`
|
1117
|
+
# @return [Google::Apis::FirestoreV1beta1::Value]
|
1118
|
+
attr_accessor :query_vector
|
1119
|
+
|
1120
|
+
# A reference to a field in a document, ex: `stats.operations`.
|
1121
|
+
# Corresponds to the JSON property `vectorField`
|
1122
|
+
# @return [Google::Apis::FirestoreV1beta1::FieldReference]
|
1123
|
+
attr_accessor :vector_field
|
1124
|
+
|
1125
|
+
def initialize(**args)
|
1126
|
+
update!(**args)
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
# Update properties of this object
|
1130
|
+
def update!(**args)
|
1131
|
+
@distance_measure = args[:distance_measure] if args.key?(:distance_measure)
|
1132
|
+
@limit = args[:limit] if args.key?(:limit)
|
1133
|
+
@query_vector = args[:query_vector] if args.key?(:query_vector)
|
1134
|
+
@vector_field = args[:vector_field] if args.key?(:vector_field)
|
1135
|
+
end
|
1136
|
+
end
|
1137
|
+
|
1010
1138
|
# Metadata related to the create database operation.
|
1011
1139
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
1012
1140
|
include Google::Apis::Core::Hashable
|
@@ -1903,6 +2031,27 @@ module Google
|
|
1903
2031
|
end
|
1904
2032
|
end
|
1905
2033
|
|
2034
|
+
# Planning phase information for the query.
|
2035
|
+
class PlanSummary
|
2036
|
+
include Google::Apis::Core::Hashable
|
2037
|
+
|
2038
|
+
# The indexes selected for the query. For example: [ `"query_scope": "Collection"
|
2039
|
+
# , "properties": "(foo ASC, __name__ ASC)"`, `"query_scope": "Collection", "
|
2040
|
+
# properties": "(bar ASC, __name__ ASC)"` ]
|
2041
|
+
# Corresponds to the JSON property `indexesUsed`
|
2042
|
+
# @return [Array<Hash<String,Object>>]
|
2043
|
+
attr_accessor :indexes_used
|
2044
|
+
|
2045
|
+
def initialize(**args)
|
2046
|
+
update!(**args)
|
2047
|
+
end
|
2048
|
+
|
2049
|
+
# Update properties of this object
|
2050
|
+
def update!(**args)
|
2051
|
+
@indexes_used = args[:indexes_used] if args.key?(:indexes_used)
|
2052
|
+
end
|
2053
|
+
end
|
2054
|
+
|
1906
2055
|
# A precondition on a document, used for conditional operations.
|
1907
2056
|
class Precondition
|
1908
2057
|
include Google::Apis::Core::Hashable
|
@@ -2048,6 +2197,11 @@ module Google
|
|
2048
2197
|
class RunAggregationQueryRequest
|
2049
2198
|
include Google::Apis::Core::Hashable
|
2050
2199
|
|
2200
|
+
# Explain options for the query.
|
2201
|
+
# Corresponds to the JSON property `explainOptions`
|
2202
|
+
# @return [Google::Apis::FirestoreV1beta1::ExplainOptions]
|
2203
|
+
attr_accessor :explain_options
|
2204
|
+
|
2051
2205
|
# Options for creating a new transaction.
|
2052
2206
|
# Corresponds to the JSON property `newTransaction`
|
2053
2207
|
# @return [Google::Apis::FirestoreV1beta1::TransactionOptions]
|
@@ -2078,6 +2232,7 @@ module Google
|
|
2078
2232
|
|
2079
2233
|
# Update properties of this object
|
2080
2234
|
def update!(**args)
|
2235
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2081
2236
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
2082
2237
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2083
2238
|
@structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
|
@@ -2089,6 +2244,11 @@ module Google
|
|
2089
2244
|
class RunAggregationQueryResponse
|
2090
2245
|
include Google::Apis::Core::Hashable
|
2091
2246
|
|
2247
|
+
# Explain metrics for the query.
|
2248
|
+
# Corresponds to the JSON property `explainMetrics`
|
2249
|
+
# @return [Google::Apis::FirestoreV1beta1::ExplainMetrics]
|
2250
|
+
attr_accessor :explain_metrics
|
2251
|
+
|
2092
2252
|
# The time at which the aggregate result was computed. This is always
|
2093
2253
|
# monotonically increasing; in this case, the previous AggregationResult in the
|
2094
2254
|
# result stream are guaranteed not to have changed between their `read_time` and
|
@@ -2118,6 +2278,7 @@ module Google
|
|
2118
2278
|
|
2119
2279
|
# Update properties of this object
|
2120
2280
|
def update!(**args)
|
2281
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2121
2282
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2122
2283
|
@result = args[:result] if args.key?(:result)
|
2123
2284
|
@transaction = args[:transaction] if args.key?(:transaction)
|
@@ -2128,6 +2289,11 @@ module Google
|
|
2128
2289
|
class RunQueryRequest
|
2129
2290
|
include Google::Apis::Core::Hashable
|
2130
2291
|
|
2292
|
+
# Explain options for the query.
|
2293
|
+
# Corresponds to the JSON property `explainOptions`
|
2294
|
+
# @return [Google::Apis::FirestoreV1beta1::ExplainOptions]
|
2295
|
+
attr_accessor :explain_options
|
2296
|
+
|
2131
2297
|
# Options for creating a new transaction.
|
2132
2298
|
# Corresponds to the JSON property `newTransaction`
|
2133
2299
|
# @return [Google::Apis::FirestoreV1beta1::TransactionOptions]
|
@@ -2159,6 +2325,7 @@ module Google
|
|
2159
2325
|
|
2160
2326
|
# Update properties of this object
|
2161
2327
|
def update!(**args)
|
2328
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2162
2329
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
2163
2330
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2164
2331
|
@structured_query = args[:structured_query] if args.key?(:structured_query)
|
@@ -2182,6 +2349,11 @@ module Google
|
|
2182
2349
|
attr_accessor :done
|
2183
2350
|
alias_method :done?, :done
|
2184
2351
|
|
2352
|
+
# Explain metrics for the query.
|
2353
|
+
# Corresponds to the JSON property `explainMetrics`
|
2354
|
+
# @return [Google::Apis::FirestoreV1beta1::ExplainMetrics]
|
2355
|
+
attr_accessor :explain_metrics
|
2356
|
+
|
2185
2357
|
# The time at which the document was read. This may be monotonically increasing;
|
2186
2358
|
# in this case, the previous documents in the result stream are guaranteed not
|
2187
2359
|
# to have changed between their `read_time` and this one. If the query returns
|
@@ -2213,6 +2385,7 @@ module Google
|
|
2213
2385
|
def update!(**args)
|
2214
2386
|
@document = args[:document] if args.key?(:document)
|
2215
2387
|
@done = args[:done] if args.key?(:done)
|
2388
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2216
2389
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2217
2390
|
@skipped_results = args[:skipped_results] if args.key?(:skipped_results)
|
2218
2391
|
@transaction = args[:transaction] if args.key?(:transaction)
|
@@ -2296,6 +2469,11 @@ module Google
|
|
2296
2469
|
# @return [Google::Apis::FirestoreV1beta1::Cursor]
|
2297
2470
|
attr_accessor :end_at
|
2298
2471
|
|
2472
|
+
# Nearest Neighbors search config.
|
2473
|
+
# Corresponds to the JSON property `findNearest`
|
2474
|
+
# @return [Google::Apis::FirestoreV1beta1::FindNearest]
|
2475
|
+
attr_accessor :find_nearest
|
2476
|
+
|
2299
2477
|
# The collections to query.
|
2300
2478
|
# Corresponds to the JSON property `from`
|
2301
2479
|
# @return [Array<Google::Apis::FirestoreV1beta1::CollectionSelector>]
|
@@ -2354,6 +2532,7 @@ module Google
|
|
2354
2532
|
# Update properties of this object
|
2355
2533
|
def update!(**args)
|
2356
2534
|
@end_at = args[:end_at] if args.key?(:end_at)
|
2535
|
+
@find_nearest = args[:find_nearest] if args.key?(:find_nearest)
|
2357
2536
|
@from = args[:from] if args.key?(:from)
|
2358
2537
|
@limit = args[:limit] if args.key?(:limit)
|
2359
2538
|
@offset = args[:offset] if args.key?(:offset)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1beta1
|
18
18
|
# Version of the google-apis-firestore_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240324"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,12 +178,30 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class ExecutionStats
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class ExistenceFilter
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class ExplainMetrics
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
199
|
+
class ExplainOptions
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
187
205
|
class FieldFilter
|
188
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
207
|
|
@@ -208,6 +226,12 @@ module Google
|
|
208
226
|
include Google::Apis::Core::JsonObjectSupport
|
209
227
|
end
|
210
228
|
|
229
|
+
class FindNearest
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
211
235
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
212
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
237
|
|
@@ -370,6 +394,12 @@ module Google
|
|
370
394
|
include Google::Apis::Core::JsonObjectSupport
|
371
395
|
end
|
372
396
|
|
397
|
+
class PlanSummary
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
373
403
|
class Precondition
|
374
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
405
|
|
@@ -739,6 +769,16 @@ module Google
|
|
739
769
|
end
|
740
770
|
end
|
741
771
|
|
772
|
+
class ExecutionStats
|
773
|
+
# @private
|
774
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
775
|
+
hash :debug_stats, as: 'debugStats'
|
776
|
+
property :execution_duration, as: 'executionDuration'
|
777
|
+
property :read_operations, :numeric_string => true, as: 'readOperations'
|
778
|
+
property :results_returned, :numeric_string => true, as: 'resultsReturned'
|
779
|
+
end
|
780
|
+
end
|
781
|
+
|
742
782
|
class ExistenceFilter
|
743
783
|
# @private
|
744
784
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -749,6 +789,23 @@ module Google
|
|
749
789
|
end
|
750
790
|
end
|
751
791
|
|
792
|
+
class ExplainMetrics
|
793
|
+
# @private
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
795
|
+
property :execution_stats, as: 'executionStats', class: Google::Apis::FirestoreV1beta1::ExecutionStats, decorator: Google::Apis::FirestoreV1beta1::ExecutionStats::Representation
|
796
|
+
|
797
|
+
property :plan_summary, as: 'planSummary', class: Google::Apis::FirestoreV1beta1::PlanSummary, decorator: Google::Apis::FirestoreV1beta1::PlanSummary::Representation
|
798
|
+
|
799
|
+
end
|
800
|
+
end
|
801
|
+
|
802
|
+
class ExplainOptions
|
803
|
+
# @private
|
804
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
805
|
+
property :analyze, as: 'analyze'
|
806
|
+
end
|
807
|
+
end
|
808
|
+
|
752
809
|
class FieldFilter
|
753
810
|
# @private
|
754
811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -797,6 +854,18 @@ module Google
|
|
797
854
|
end
|
798
855
|
end
|
799
856
|
|
857
|
+
class FindNearest
|
858
|
+
# @private
|
859
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
860
|
+
property :distance_measure, as: 'distanceMeasure'
|
861
|
+
property :limit, as: 'limit'
|
862
|
+
property :query_vector, as: 'queryVector', class: Google::Apis::FirestoreV1beta1::Value, decorator: Google::Apis::FirestoreV1beta1::Value::Representation
|
863
|
+
|
864
|
+
property :vector_field, as: 'vectorField', class: Google::Apis::FirestoreV1beta1::FieldReference, decorator: Google::Apis::FirestoreV1beta1::FieldReference::Representation
|
865
|
+
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
800
869
|
class GoogleFirestoreAdminV1CreateDatabaseMetadata
|
801
870
|
# @private
|
802
871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1054,6 +1123,13 @@ module Google
|
|
1054
1123
|
end
|
1055
1124
|
end
|
1056
1125
|
|
1126
|
+
class PlanSummary
|
1127
|
+
# @private
|
1128
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1129
|
+
collection :indexes_used, as: 'indexesUsed'
|
1130
|
+
end
|
1131
|
+
end
|
1132
|
+
|
1057
1133
|
class Precondition
|
1058
1134
|
# @private
|
1059
1135
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1103,6 +1179,8 @@ module Google
|
|
1103
1179
|
class RunAggregationQueryRequest
|
1104
1180
|
# @private
|
1105
1181
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1182
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1beta1::ExplainOptions, decorator: Google::Apis::FirestoreV1beta1::ExplainOptions::Representation
|
1183
|
+
|
1106
1184
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1beta1::TransactionOptions, decorator: Google::Apis::FirestoreV1beta1::TransactionOptions::Representation
|
1107
1185
|
|
1108
1186
|
property :read_time, as: 'readTime'
|
@@ -1115,6 +1193,8 @@ module Google
|
|
1115
1193
|
class RunAggregationQueryResponse
|
1116
1194
|
# @private
|
1117
1195
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1196
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::FirestoreV1beta1::ExplainMetrics, decorator: Google::Apis::FirestoreV1beta1::ExplainMetrics::Representation
|
1197
|
+
|
1118
1198
|
property :read_time, as: 'readTime'
|
1119
1199
|
property :result, as: 'result', class: Google::Apis::FirestoreV1beta1::AggregationResult, decorator: Google::Apis::FirestoreV1beta1::AggregationResult::Representation
|
1120
1200
|
|
@@ -1125,6 +1205,8 @@ module Google
|
|
1125
1205
|
class RunQueryRequest
|
1126
1206
|
# @private
|
1127
1207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1208
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1beta1::ExplainOptions, decorator: Google::Apis::FirestoreV1beta1::ExplainOptions::Representation
|
1209
|
+
|
1128
1210
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1beta1::TransactionOptions, decorator: Google::Apis::FirestoreV1beta1::TransactionOptions::Representation
|
1129
1211
|
|
1130
1212
|
property :read_time, as: 'readTime'
|
@@ -1140,6 +1222,8 @@ module Google
|
|
1140
1222
|
property :document, as: 'document', class: Google::Apis::FirestoreV1beta1::Document, decorator: Google::Apis::FirestoreV1beta1::Document::Representation
|
1141
1223
|
|
1142
1224
|
property :done, as: 'done'
|
1225
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::FirestoreV1beta1::ExplainMetrics, decorator: Google::Apis::FirestoreV1beta1::ExplainMetrics::Representation
|
1226
|
+
|
1143
1227
|
property :read_time, as: 'readTime'
|
1144
1228
|
property :skipped_results, as: 'skippedResults'
|
1145
1229
|
property :transaction, :base64 => true, as: 'transaction'
|
@@ -1170,6 +1254,8 @@ module Google
|
|
1170
1254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1171
1255
|
property :end_at, as: 'endAt', class: Google::Apis::FirestoreV1beta1::Cursor, decorator: Google::Apis::FirestoreV1beta1::Cursor::Representation
|
1172
1256
|
|
1257
|
+
property :find_nearest, as: 'findNearest', class: Google::Apis::FirestoreV1beta1::FindNearest, decorator: Google::Apis::FirestoreV1beta1::FindNearest::Representation
|
1258
|
+
|
1173
1259
|
collection :from, as: 'from', class: Google::Apis::FirestoreV1beta1::CollectionSelector, decorator: Google::Apis::FirestoreV1beta1::CollectionSelector::Representation
|
1174
1260
|
|
1175
1261
|
property :limit, as: 'limit'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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: 2024-
|
11
|
+
date: 2024-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|