google-apis-firestore_v1beta1 0.22.0 → 0.24.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: 1f41c5f8cb2c4352501f3979b11a74771fff7ce61dc33efc40b5e6a55121b104
4
- data.tar.gz: 2467620fc50ab37f19d50be286dfd5d15a369d0e5fe5ad6c3f2bed88f0aa6c04
3
+ metadata.gz: d8ba687051a8226f1ef1aaaa0deb4a607c4781d43e13c0e065b9e7aa287c6287
4
+ data.tar.gz: 79ec87d5b4c7b0720339d88144e651fad2cd4b68c9d6aaf3613f899274a9b354
5
5
  SHA512:
6
- metadata.gz: 0cf6e7869ca48623402f927fc4ec4634c9743841602cfbea6848f856df88fd3c12b1c999ba6fc1f85056fab575cf70b0073726521e44aea43dfa0a15150fed4c
7
- data.tar.gz: aeb0863420c8645f3ac937812322feded589bd443b8aa255f98be3c9e37c157fcb64d1b5d83c7af98fee36f39bfc10056ae03cd59a1e0877a6292539c04136ce
6
+ metadata.gz: 42052b1e3e1de9231ed89923993a6566d6e0fc46c764bb7a5bf1d3131d6c42eba3ec8208c1ba54453a6589708604d4c9f037d031c8d1b1ff30c1ecaff3e91880
7
+ data.tar.gz: '0728aba3b63351f6ebee658a7f59902c2e0475929791137e4dc595435c3526c7be4f832d6284444278f6a3d667d0f076839f134e0ff405c7e097a7823b168750'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.24.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230214
6
+ * Regenerated using generator version 0.12.0
7
+
8
+ ### v0.23.0 (2022-12-19)
9
+
10
+ * Regenerated from discovery document revision 20221210
11
+
3
12
  ### v0.22.0 (2022-10-28)
4
13
 
5
14
  * Regenerated using generator version 0.11.0
@@ -1401,7 +1401,8 @@ module Google
1401
1401
  # @return [Array<Google::Apis::FirestoreV1beta1::Document>]
1402
1402
  attr_accessor :documents
1403
1403
 
1404
- # The next page token.
1404
+ # A token to retrieve the next page of documents. If this field is omitted,
1405
+ # there are no subsequent pages.
1405
1406
  # Corresponds to the JSON property `nextPageToken`
1406
1407
  # @return [String]
1407
1408
  attr_accessor :next_page_token
@@ -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.22.0"
19
+ GEM_VERSION = "0.24.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220915"
25
+ REVISION = "20230214"
26
26
  end
27
27
  end
28
28
  end
@@ -405,28 +405,35 @@ module Google
405
405
  # databases/my-database/documents` or `projects/my-project/databases/my-database/
406
406
  # documents/chatrooms/my-chatroom`
407
407
  # @param [String] collection_id
408
- # Required. The collection ID, relative to `parent`, to list. For example: `
409
- # chatrooms` or `messages`.
408
+ # Optional. The collection ID, relative to `parent`, to list. For example: `
409
+ # chatrooms` or `messages`. This is optional, and when not provided, Firestore
410
+ # will list documents from all collections under the provided `parent`.
410
411
  # @param [Array<String>, String] mask_field_paths
411
412
  # The list of field paths in the mask. See Document.fields for a field path
412
413
  # syntax reference.
413
414
  # @param [String] order_by
414
- # The order to sort results by. For example: `priority desc, name`.
415
+ # Optional. The optional ordering of the documents to return. For example: `
416
+ # priority desc, __name__ desc`. This mirrors the `ORDER BY` used in Firestore
417
+ # queries but in a string representation. When absent, documents are ordered
418
+ # based on `__name__ ASC`.
415
419
  # @param [Fixnum] page_size
416
- # The maximum number of documents to return.
420
+ # Optional. The maximum number of documents to return in a single response.
421
+ # Firestore may return fewer than this value.
417
422
  # @param [String] page_token
418
- # The `next_page_token` value returned from a previous List request, if any.
423
+ # Optional. A page token, received from a previous `ListDocuments` response.
424
+ # Provide this to retrieve the subsequent page. When paginating, all other
425
+ # parameters (with the exception of `page_size`) must match the values set in
426
+ # the request that generated the page token.
419
427
  # @param [String] read_time
420
- # Reads documents as they were at the given time. This may not be older than 270
421
- # seconds.
428
+ # Perform the read at the provided time. This may not be older than 270 seconds.
422
429
  # @param [Boolean] show_missing
423
- # If the list should show missing documents. A missing document is a document
424
- # that does not exist but has sub-documents. These documents will be returned
425
- # with a key but will not have fields, Document.create_time, or Document.
426
- # update_time set. Requests with `show_missing` may not specify `where` or `
427
- # order_by`.
430
+ # If the list should show missing documents. A document is missing if it does
431
+ # not exist, but there are sub-documents nested underneath it. When true, such
432
+ # missing documents will be returned with a key but will not have fields, `
433
+ # create_time`, or `update_time` set. Requests with `show_missing` may not
434
+ # specify `where` or `order_by`.
428
435
  # @param [String] transaction
429
- # Reads documents in a transaction.
436
+ # Perform the read as part of an already active transaction.
430
437
  # @param [String] fields
431
438
  # Selector specifying which fields to include in a partial response.
432
439
  # @param [String] quota_user
@@ -505,28 +512,35 @@ module Google
505
512
  # databases/my-database/documents` or `projects/my-project/databases/my-database/
506
513
  # documents/chatrooms/my-chatroom`
507
514
  # @param [String] collection_id
508
- # Required. The collection ID, relative to `parent`, to list. For example: `
509
- # chatrooms` or `messages`.
515
+ # Optional. The collection ID, relative to `parent`, to list. For example: `
516
+ # chatrooms` or `messages`. This is optional, and when not provided, Firestore
517
+ # will list documents from all collections under the provided `parent`.
510
518
  # @param [Array<String>, String] mask_field_paths
511
519
  # The list of field paths in the mask. See Document.fields for a field path
512
520
  # syntax reference.
513
521
  # @param [String] order_by
514
- # The order to sort results by. For example: `priority desc, name`.
522
+ # Optional. The optional ordering of the documents to return. For example: `
523
+ # priority desc, __name__ desc`. This mirrors the `ORDER BY` used in Firestore
524
+ # queries but in a string representation. When absent, documents are ordered
525
+ # based on `__name__ ASC`.
515
526
  # @param [Fixnum] page_size
516
- # The maximum number of documents to return.
527
+ # Optional. The maximum number of documents to return in a single response.
528
+ # Firestore may return fewer than this value.
517
529
  # @param [String] page_token
518
- # The `next_page_token` value returned from a previous List request, if any.
530
+ # Optional. A page token, received from a previous `ListDocuments` response.
531
+ # Provide this to retrieve the subsequent page. When paginating, all other
532
+ # parameters (with the exception of `page_size`) must match the values set in
533
+ # the request that generated the page token.
519
534
  # @param [String] read_time
520
- # Reads documents as they were at the given time. This may not be older than 270
521
- # seconds.
535
+ # Perform the read at the provided time. This may not be older than 270 seconds.
522
536
  # @param [Boolean] show_missing
523
- # If the list should show missing documents. A missing document is a document
524
- # that does not exist but has sub-documents. These documents will be returned
525
- # with a key but will not have fields, Document.create_time, or Document.
526
- # update_time set. Requests with `show_missing` may not specify `where` or `
527
- # order_by`.
537
+ # If the list should show missing documents. A document is missing if it does
538
+ # not exist, but there are sub-documents nested underneath it. When true, such
539
+ # missing documents will be returned with a key but will not have fields, `
540
+ # create_time`, or `update_time` set. Requests with `show_missing` may not
541
+ # specify `where` or `order_by`.
528
542
  # @param [String] transaction
529
- # Reads documents in a transaction.
543
+ # Perform the read as part of an already active transaction.
530
544
  # @param [String] fields
531
545
  # Selector specifying which fields to include in a partial response.
532
546
  # @param [String] quota_user
@@ -562,7 +576,7 @@ module Google
562
576
  execute_or_queue_command(command, &block)
563
577
  end
564
578
 
565
- # Listens to changes.
579
+ # Listens to changes. This method is only available via the gRPC API (not REST).
566
580
  # @param [String] database
567
581
  # Required. The database name. In the format: `projects/`project_id`/databases/`
568
582
  # database_id``.
@@ -795,7 +809,8 @@ module Google
795
809
  execute_or_queue_command(command, &block)
796
810
  end
797
811
 
798
- # Streams batches of document updates and deletes, in order.
812
+ # Streams batches of document updates and deletes, in order. This method is only
813
+ # available via the gRPC API (not REST).
799
814
  # @param [String] database
800
815
  # Required. The database name. In the format: `projects/`project_id`/databases/`
801
816
  # database_id``. This is only required in the first message.
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.22.0
4
+ version: 0.24.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-10-31 00:00:00.000000000 Z
11
+ date: 2023-02-26 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.9.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.24.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Firestore API V1beta1