google-apis-firestore_v1beta1 0.35.0 → 0.36.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8714797673984203dd879ad580f89d538479a73bc9e4bf9799f59ceb5ca681c
|
4
|
+
data.tar.gz: 28940a8aff529abfc45e27e53128ca2c8e8875feaf626785e4f96d1969859a6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4dd6130365e23d40287c191723eeab0b5e2dda9c25055512bfd0dfec0df3fbe350aa322823f82334e73cefe041046114d2319b4c87ebe03e987f86b018179ed
|
7
|
+
data.tar.gz: e3c9609411aac601506cde4ec3700907ea6a2043ed7b072f75f2413d70156e494b6cc4b36c84fa275f9eb3f67642e1f6cd4f4690e596ba56087902c1261fc81e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1beta1
|
2
2
|
|
3
|
+
### v0.36.0 (2024-02-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240131
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.35.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240117
|
@@ -1951,27 +1951,6 @@ module Google
|
|
1951
1951
|
end
|
1952
1952
|
end
|
1953
1953
|
|
1954
|
-
# Plan for the query.
|
1955
|
-
class QueryPlan
|
1956
|
-
include Google::Apis::Core::Hashable
|
1957
|
-
|
1958
|
-
# Planning phase information for the query. It will include: ` "indexes_used": [
|
1959
|
-
# `"query_scope": "Collection", "properties": "(foo ASC, __name__ ASC)"`, `"
|
1960
|
-
# query_scope": "Collection", "properties": "(bar ASC, __name__ ASC)"` ] `
|
1961
|
-
# Corresponds to the JSON property `planInfo`
|
1962
|
-
# @return [Hash<String,Object>]
|
1963
|
-
attr_accessor :plan_info
|
1964
|
-
|
1965
|
-
def initialize(**args)
|
1966
|
-
update!(**args)
|
1967
|
-
end
|
1968
|
-
|
1969
|
-
# Update properties of this object
|
1970
|
-
def update!(**args)
|
1971
|
-
@plan_info = args[:plan_info] if args.key?(:plan_info)
|
1972
|
-
end
|
1973
|
-
end
|
1974
|
-
|
1975
1954
|
# A target specified by a query.
|
1976
1955
|
class QueryTarget
|
1977
1956
|
include Google::Apis::Core::Hashable
|
@@ -2045,35 +2024,6 @@ module Google
|
|
2045
2024
|
end
|
2046
2025
|
end
|
2047
2026
|
|
2048
|
-
# Planning and execution statistics for the query.
|
2049
|
-
class ResultSetStats
|
2050
|
-
include Google::Apis::Core::Hashable
|
2051
|
-
|
2052
|
-
# Plan for the query.
|
2053
|
-
# Corresponds to the JSON property `queryPlan`
|
2054
|
-
# @return [Google::Apis::FirestoreV1beta1::QueryPlan]
|
2055
|
-
attr_accessor :query_plan
|
2056
|
-
|
2057
|
-
# Aggregated statistics from the execution of the query. This will only be
|
2058
|
-
# present when the request specifies `PROFILE` mode. For example, a query will
|
2059
|
-
# return the statistics including: ` "results_returned": "20", "
|
2060
|
-
# documents_scanned": "20", "indexes_entries_scanned": "10050", "
|
2061
|
-
# total_execution_time": "100.7 msecs" `
|
2062
|
-
# Corresponds to the JSON property `queryStats`
|
2063
|
-
# @return [Hash<String,Object>]
|
2064
|
-
attr_accessor :query_stats
|
2065
|
-
|
2066
|
-
def initialize(**args)
|
2067
|
-
update!(**args)
|
2068
|
-
end
|
2069
|
-
|
2070
|
-
# Update properties of this object
|
2071
|
-
def update!(**args)
|
2072
|
-
@query_plan = args[:query_plan] if args.key?(:query_plan)
|
2073
|
-
@query_stats = args[:query_stats] if args.key?(:query_stats)
|
2074
|
-
end
|
2075
|
-
end
|
2076
|
-
|
2077
2027
|
# The request for Firestore.Rollback.
|
2078
2028
|
class RollbackRequest
|
2079
2029
|
include Google::Apis::Core::Hashable
|
@@ -2098,13 +2048,6 @@ module Google
|
|
2098
2048
|
class RunAggregationQueryRequest
|
2099
2049
|
include Google::Apis::Core::Hashable
|
2100
2050
|
|
2101
|
-
# Optional. The mode in which the query request is processed. This field is
|
2102
|
-
# optional, and when not provided, it defaults to `NORMAL` mode where no
|
2103
|
-
# additional statistics will be returned with the query results.
|
2104
|
-
# Corresponds to the JSON property `mode`
|
2105
|
-
# @return [String]
|
2106
|
-
attr_accessor :mode
|
2107
|
-
|
2108
2051
|
# Options for creating a new transaction.
|
2109
2052
|
# Corresponds to the JSON property `newTransaction`
|
2110
2053
|
# @return [Google::Apis::FirestoreV1beta1::TransactionOptions]
|
@@ -2135,7 +2078,6 @@ module Google
|
|
2135
2078
|
|
2136
2079
|
# Update properties of this object
|
2137
2080
|
def update!(**args)
|
2138
|
-
@mode = args[:mode] if args.key?(:mode)
|
2139
2081
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
2140
2082
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2141
2083
|
@structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
|
@@ -2163,11 +2105,6 @@ module Google
|
|
2163
2105
|
# @return [Google::Apis::FirestoreV1beta1::AggregationResult]
|
2164
2106
|
attr_accessor :result
|
2165
2107
|
|
2166
|
-
# Planning and execution statistics for the query.
|
2167
|
-
# Corresponds to the JSON property `stats`
|
2168
|
-
# @return [Google::Apis::FirestoreV1beta1::ResultSetStats]
|
2169
|
-
attr_accessor :stats
|
2170
|
-
|
2171
2108
|
# The transaction that was started as part of this request. Only present on the
|
2172
2109
|
# first response when the request requested to start a new transaction.
|
2173
2110
|
# Corresponds to the JSON property `transaction`
|
@@ -2183,7 +2120,6 @@ module Google
|
|
2183
2120
|
def update!(**args)
|
2184
2121
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2185
2122
|
@result = args[:result] if args.key?(:result)
|
2186
|
-
@stats = args[:stats] if args.key?(:stats)
|
2187
2123
|
@transaction = args[:transaction] if args.key?(:transaction)
|
2188
2124
|
end
|
2189
2125
|
end
|
@@ -2192,13 +2128,6 @@ module Google
|
|
2192
2128
|
class RunQueryRequest
|
2193
2129
|
include Google::Apis::Core::Hashable
|
2194
2130
|
|
2195
|
-
# Optional. The mode in which the query request is processed. This field is
|
2196
|
-
# optional, and when not provided, it defaults to `NORMAL` mode where no
|
2197
|
-
# additional statistics will be returned with the query results.
|
2198
|
-
# Corresponds to the JSON property `mode`
|
2199
|
-
# @return [String]
|
2200
|
-
attr_accessor :mode
|
2201
|
-
|
2202
2131
|
# Options for creating a new transaction.
|
2203
2132
|
# Corresponds to the JSON property `newTransaction`
|
2204
2133
|
# @return [Google::Apis::FirestoreV1beta1::TransactionOptions]
|
@@ -2230,7 +2159,6 @@ module Google
|
|
2230
2159
|
|
2231
2160
|
# Update properties of this object
|
2232
2161
|
def update!(**args)
|
2233
|
-
@mode = args[:mode] if args.key?(:mode)
|
2234
2162
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
2235
2163
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2236
2164
|
@structured_query = args[:structured_query] if args.key?(:structured_query)
|
@@ -2269,11 +2197,6 @@ module Google
|
|
2269
2197
|
# @return [Fixnum]
|
2270
2198
|
attr_accessor :skipped_results
|
2271
2199
|
|
2272
|
-
# Planning and execution statistics for the query.
|
2273
|
-
# Corresponds to the JSON property `stats`
|
2274
|
-
# @return [Google::Apis::FirestoreV1beta1::ResultSetStats]
|
2275
|
-
attr_accessor :stats
|
2276
|
-
|
2277
2200
|
# The transaction that was started as part of this request. Can only be set in
|
2278
2201
|
# the first response, and only if RunQueryRequest.new_transaction was set in the
|
2279
2202
|
# request. If set, no other fields will be set in this response.
|
@@ -2292,7 +2215,6 @@ module Google
|
|
2292
2215
|
@done = args[:done] if args.key?(:done)
|
2293
2216
|
@read_time = args[:read_time] if args.key?(:read_time)
|
2294
2217
|
@skipped_results = args[:skipped_results] if args.key?(:skipped_results)
|
2295
|
-
@stats = args[:stats] if args.key?(:stats)
|
2296
2218
|
@transaction = args[:transaction] if args.key?(:transaction)
|
2297
2219
|
end
|
2298
2220
|
end
|
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240131"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -382,12 +382,6 @@ module Google
|
|
382
382
|
include Google::Apis::Core::JsonObjectSupport
|
383
383
|
end
|
384
384
|
|
385
|
-
class QueryPlan
|
386
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
-
|
388
|
-
include Google::Apis::Core::JsonObjectSupport
|
389
|
-
end
|
390
|
-
|
391
385
|
class QueryTarget
|
392
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
387
|
|
@@ -406,12 +400,6 @@ module Google
|
|
406
400
|
include Google::Apis::Core::JsonObjectSupport
|
407
401
|
end
|
408
402
|
|
409
|
-
class ResultSetStats
|
410
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
-
|
412
|
-
include Google::Apis::Core::JsonObjectSupport
|
413
|
-
end
|
414
|
-
|
415
403
|
class RollbackRequest
|
416
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
405
|
|
@@ -1082,13 +1070,6 @@ module Google
|
|
1082
1070
|
end
|
1083
1071
|
end
|
1084
1072
|
|
1085
|
-
class QueryPlan
|
1086
|
-
# @private
|
1087
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1088
|
-
hash :plan_info, as: 'planInfo'
|
1089
|
-
end
|
1090
|
-
end
|
1091
|
-
|
1092
1073
|
class QueryTarget
|
1093
1074
|
# @private
|
1094
1075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1112,15 +1093,6 @@ module Google
|
|
1112
1093
|
end
|
1113
1094
|
end
|
1114
1095
|
|
1115
|
-
class ResultSetStats
|
1116
|
-
# @private
|
1117
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1118
|
-
property :query_plan, as: 'queryPlan', class: Google::Apis::FirestoreV1beta1::QueryPlan, decorator: Google::Apis::FirestoreV1beta1::QueryPlan::Representation
|
1119
|
-
|
1120
|
-
hash :query_stats, as: 'queryStats'
|
1121
|
-
end
|
1122
|
-
end
|
1123
|
-
|
1124
1096
|
class RollbackRequest
|
1125
1097
|
# @private
|
1126
1098
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1131,7 +1103,6 @@ module Google
|
|
1131
1103
|
class RunAggregationQueryRequest
|
1132
1104
|
# @private
|
1133
1105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1134
|
-
property :mode, as: 'mode'
|
1135
1106
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1beta1::TransactionOptions, decorator: Google::Apis::FirestoreV1beta1::TransactionOptions::Representation
|
1136
1107
|
|
1137
1108
|
property :read_time, as: 'readTime'
|
@@ -1147,8 +1118,6 @@ module Google
|
|
1147
1118
|
property :read_time, as: 'readTime'
|
1148
1119
|
property :result, as: 'result', class: Google::Apis::FirestoreV1beta1::AggregationResult, decorator: Google::Apis::FirestoreV1beta1::AggregationResult::Representation
|
1149
1120
|
|
1150
|
-
property :stats, as: 'stats', class: Google::Apis::FirestoreV1beta1::ResultSetStats, decorator: Google::Apis::FirestoreV1beta1::ResultSetStats::Representation
|
1151
|
-
|
1152
1121
|
property :transaction, :base64 => true, as: 'transaction'
|
1153
1122
|
end
|
1154
1123
|
end
|
@@ -1156,7 +1125,6 @@ module Google
|
|
1156
1125
|
class RunQueryRequest
|
1157
1126
|
# @private
|
1158
1127
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1159
|
-
property :mode, as: 'mode'
|
1160
1128
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1beta1::TransactionOptions, decorator: Google::Apis::FirestoreV1beta1::TransactionOptions::Representation
|
1161
1129
|
|
1162
1130
|
property :read_time, as: 'readTime'
|
@@ -1174,8 +1142,6 @@ module Google
|
|
1174
1142
|
property :done, as: 'done'
|
1175
1143
|
property :read_time, as: 'readTime'
|
1176
1144
|
property :skipped_results, as: 'skippedResults'
|
1177
|
-
property :stats, as: 'stats', class: Google::Apis::FirestoreV1beta1::ResultSetStats, decorator: Google::Apis::FirestoreV1beta1::ResultSetStats::Representation
|
1178
|
-
|
1179
1145
|
property :transaction, :base64 => true, as: 'transaction'
|
1180
1146
|
end
|
1181
1147
|
end
|
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.36.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-02-11 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.36.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: []
|