google-apis-firestore_v1beta1 0.12.0 → 0.15.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: fe8bc758aad394a106b3a6fedb2b6f5d491c1f81c3c1386aadf1aa76de9372eb
4
- data.tar.gz: d1608ef6e175d8f7a88106e3e45249c8218f1d0044dc8fefdcdc951af92f8ccb
3
+ metadata.gz: d5ad7df8bf4a701960f4825cec2dbb52602ff4e653693b8a3788ad60701b939d
4
+ data.tar.gz: eb58ab4b7d0fd8f6dc2e52fb8de3bc783382c27c3c3c7fbb2befaece1564ea27
5
5
  SHA512:
6
- metadata.gz: 41b1f454a2ba2e1729d7cf8bcf6ffe4b7e3c8f1ba8a4ba87bd9ca03814ebc8f98c0dde556e57d563d9879fb7944cea026ae0a622d097fe8520938e10417c99e7
7
- data.tar.gz: 06f5862f99e8cf3c582752e7d2b506b39c8804872016ddc2ddf4135035642f62b2ce5076fb29eb16c0c167318633d50e2a23e418d5513d1792ae589306799b08
6
+ metadata.gz: dceea397ebc9b08c9f0ad39bbdd8561126dfa316f56a089c72f63339e20e9d3833a8177063347631f178c5e4f88006c94a2d81b61b5a5a965c61d6fd0902b33d
7
+ data.tar.gz: 7d6a6b3dbcc41a152f7a6897b9c923c09b0d7744c89c0d3a19cec89886168e3d431b7d47f55e37474b967513a62307928f98741ec431def9de9308f9c4d7055e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.15.0 (2022-05-07)
4
+
5
+ * Regenerated from discovery document revision 20220428
6
+
7
+ ### v0.14.0 (2022-04-09)
8
+
9
+ * Regenerated from discovery document revision 20220402
10
+
11
+ ### v0.13.0 (2022-03-30)
12
+
13
+ * Regenerated from discovery document revision 20220319
14
+
3
15
  ### v0.12.0 (2022-03-19)
4
16
 
5
17
  * Regenerated from discovery document revision 20220305
@@ -313,7 +313,7 @@ module Google
313
313
  class CompositeFilter
314
314
  include Google::Apis::Core::Hashable
315
315
 
316
- # The list of filters to combine. Must contain at least one filter.
316
+ # The list of filters to combine. Requires: * At least one filter is present.
317
317
  # Corresponds to the JSON property `filters`
318
318
  # @return [Array<Google::Apis::FirestoreV1beta1::Filter>]
319
319
  attr_accessor :filters
@@ -598,8 +598,7 @@ module Google
598
598
  # A generic empty message that you can re-use to avoid defining duplicated empty
599
599
  # messages in your APIs. A typical example is to use it as the request or the
600
600
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
601
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
602
- # `Empty` is empty JSON object ````.
601
+ # protobuf.Empty) returns (google.protobuf.Empty); `
603
602
  class Empty
604
603
  include Google::Apis::Core::Hashable
605
604
 
@@ -1269,6 +1268,12 @@ module Google
1269
1268
  # @return [String]
1270
1269
  attr_accessor :page_token
1271
1270
 
1271
+ # Reads documents as they were at the given time. This may not be older than 270
1272
+ # seconds.
1273
+ # Corresponds to the JSON property `readTime`
1274
+ # @return [String]
1275
+ attr_accessor :read_time
1276
+
1272
1277
  def initialize(**args)
1273
1278
  update!(**args)
1274
1279
  end
@@ -1277,6 +1282,7 @@ module Google
1277
1282
  def update!(**args)
1278
1283
  @page_size = args[:page_size] if args.key?(:page_size)
1279
1284
  @page_token = args[:page_token] if args.key?(:page_token)
1285
+ @read_time = args[:read_time] if args.key?(:read_time)
1280
1286
  end
1281
1287
  end
1282
1288
 
@@ -1497,6 +1503,12 @@ module Google
1497
1503
  # @return [Fixnum]
1498
1504
  attr_accessor :partition_count
1499
1505
 
1506
+ # Reads documents as they were at the given time. This may not be older than 270
1507
+ # seconds.
1508
+ # Corresponds to the JSON property `readTime`
1509
+ # @return [String]
1510
+ attr_accessor :read_time
1511
+
1500
1512
  # A Firestore query.
1501
1513
  # Corresponds to the JSON property `structuredQuery`
1502
1514
  # @return [Google::Apis::FirestoreV1beta1::StructuredQuery]
@@ -1511,6 +1523,7 @@ module Google
1511
1523
  @page_size = args[:page_size] if args.key?(:page_size)
1512
1524
  @page_token = args[:page_token] if args.key?(:page_token)
1513
1525
  @partition_count = args[:partition_count] if args.key?(:partition_count)
1526
+ @read_time = args[:read_time] if args.key?(:read_time)
1514
1527
  @structured_query = args[:structured_query] if args.key?(:structured_query)
1515
1528
  end
1516
1529
  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.12.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220305"
25
+ REVISION = "20220428"
26
26
  end
27
27
  end
28
28
  end
@@ -797,6 +797,7 @@ module Google
797
797
  class Representation < Google::Apis::Core::JsonRepresentation
798
798
  property :page_size, as: 'pageSize'
799
799
  property :page_token, as: 'pageToken'
800
+ property :read_time, as: 'readTime'
800
801
  end
801
802
  end
802
803
 
@@ -866,6 +867,7 @@ module Google
866
867
  property :page_size, as: 'pageSize'
867
868
  property :page_token, as: 'pageToken'
868
869
  property :partition_count, :numeric_string => true, as: 'partitionCount'
870
+ property :read_time, as: 'readTime'
869
871
  property :structured_query, as: 'structuredQuery', class: Google::Apis::FirestoreV1beta1::StructuredQuery, decorator: Google::Apis::FirestoreV1beta1::StructuredQuery::Representation
870
872
 
871
873
  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.12.0
4
+ version: 0.15.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: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-05-09 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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.15.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: []