google-apis-firestore_v1 0.59.0 → 0.60.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/firestore_v1/classes.rb +0 -35
- data/lib/google/apis/firestore_v1/gem_version.rb +3 -3
- data/lib/google/apis/firestore_v1/representations.rb +0 -17
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a6c845ba4f8587ac523ba8413efcb0409e4de9963a89c81bf2f5270ac835cab
|
4
|
+
data.tar.gz: 6b070b74940909c7d3e8366428e98cb791e38f7ed2a53312d06319396e1704bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1bccb83b7bab52893070cdfb351cd93ba04e1236fbed148fd84fafe74204c4722b237368f392044e9c1f0bcaa6096f0195321f88262b97f978c0a90c305c0e1
|
7
|
+
data.tar.gz: 61ebfd55343db1f73fc16fa47c8e80c83ada7c131d539991a78129b230735d0cdbf122601e72e53438a7660e43f56e1bf40d4b7c4fc1538a96b481f774ff7cfa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
+
### v0.60.0 (2024-02-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240215
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
3
8
|
### v0.59.0 (2024-02-18)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240208
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/firestore) may provide guid
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -869,29 +869,6 @@ module Google
|
|
869
869
|
end
|
870
870
|
end
|
871
871
|
|
872
|
-
# Explain options for the query.
|
873
|
-
class ExplainOptions
|
874
|
-
include Google::Apis::Core::Hashable
|
875
|
-
|
876
|
-
# Optional. Whether to execute this query. When false (the default), the query
|
877
|
-
# will be planned, returning only metrics from the planning stages. When true,
|
878
|
-
# the query will be planned and executed, returning the full query results along
|
879
|
-
# with both planning and execution stage metrics.
|
880
|
-
# Corresponds to the JSON property `analyze`
|
881
|
-
# @return [Boolean]
|
882
|
-
attr_accessor :analyze
|
883
|
-
alias_method :analyze?, :analyze
|
884
|
-
|
885
|
-
def initialize(**args)
|
886
|
-
update!(**args)
|
887
|
-
end
|
888
|
-
|
889
|
-
# Update properties of this object
|
890
|
-
def update!(**args)
|
891
|
-
@analyze = args[:analyze] if args.key?(:analyze)
|
892
|
-
end
|
893
|
-
end
|
894
|
-
|
895
872
|
# A filter on a specific field.
|
896
873
|
class FieldFilter
|
897
874
|
include Google::Apis::Core::Hashable
|
@@ -3040,11 +3017,6 @@ module Google
|
|
3040
3017
|
class RunAggregationQueryRequest
|
3041
3018
|
include Google::Apis::Core::Hashable
|
3042
3019
|
|
3043
|
-
# Explain options for the query.
|
3044
|
-
# Corresponds to the JSON property `explainOptions`
|
3045
|
-
# @return [Google::Apis::FirestoreV1::ExplainOptions]
|
3046
|
-
attr_accessor :explain_options
|
3047
|
-
|
3048
3020
|
# Options for creating a new transaction.
|
3049
3021
|
# Corresponds to the JSON property `newTransaction`
|
3050
3022
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
@@ -3075,7 +3047,6 @@ module Google
|
|
3075
3047
|
|
3076
3048
|
# Update properties of this object
|
3077
3049
|
def update!(**args)
|
3078
|
-
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
3079
3050
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
3080
3051
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3081
3052
|
@structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
|
@@ -3126,11 +3097,6 @@ module Google
|
|
3126
3097
|
class RunQueryRequest
|
3127
3098
|
include Google::Apis::Core::Hashable
|
3128
3099
|
|
3129
|
-
# Explain options for the query.
|
3130
|
-
# Corresponds to the JSON property `explainOptions`
|
3131
|
-
# @return [Google::Apis::FirestoreV1::ExplainOptions]
|
3132
|
-
attr_accessor :explain_options
|
3133
|
-
|
3134
3100
|
# Options for creating a new transaction.
|
3135
3101
|
# Corresponds to the JSON property `newTransaction`
|
3136
3102
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
@@ -3162,7 +3128,6 @@ module Google
|
|
3162
3128
|
|
3163
3129
|
# Update properties of this object
|
3164
3130
|
def update!(**args)
|
3165
|
-
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
3166
3131
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
3167
3132
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3168
3133
|
@structured_query = args[:structured_query] if args.key?(:structured_query)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1
|
18
18
|
# Version of the google-apis-firestore_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240215"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -184,12 +184,6 @@ module Google
|
|
184
184
|
include Google::Apis::Core::JsonObjectSupport
|
185
185
|
end
|
186
186
|
|
187
|
-
class ExplainOptions
|
188
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
-
|
190
|
-
include Google::Apis::Core::JsonObjectSupport
|
191
|
-
end
|
192
|
-
|
193
187
|
class FieldFilter
|
194
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
189
|
|
@@ -899,13 +893,6 @@ module Google
|
|
899
893
|
end
|
900
894
|
end
|
901
895
|
|
902
|
-
class ExplainOptions
|
903
|
-
# @private
|
904
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
905
|
-
property :analyze, as: 'analyze'
|
906
|
-
end
|
907
|
-
end
|
908
|
-
|
909
896
|
class FieldFilter
|
910
897
|
# @private
|
911
898
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1509,8 +1496,6 @@ module Google
|
|
1509
1496
|
class RunAggregationQueryRequest
|
1510
1497
|
# @private
|
1511
1498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1512
|
-
property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
|
1513
|
-
|
1514
1499
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
|
1515
1500
|
|
1516
1501
|
property :read_time, as: 'readTime'
|
@@ -1533,8 +1518,6 @@ module Google
|
|
1533
1518
|
class RunQueryRequest
|
1534
1519
|
# @private
|
1535
1520
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1536
|
-
property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
|
1537
|
-
|
1538
1521
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
|
1539
1522
|
|
1540
1523
|
property :read_time, as: 'readTime'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.60.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-02-
|
11
|
+
date: 2024-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.14.0
|
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.14.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.60.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
requirements:
|
69
69
|
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
|
-
version: '2.
|
71
|
+
version: '2.7'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - ">="
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.6
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Firestore API V1
|