google-apis-firestore_v1beta1 0.32.0 → 0.33.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: 5cb34314f8dbedb53e463d542946ae33295865404e786ecbea9939b51f138fbc
4
- data.tar.gz: 9e68d45702174e6d2fe59220eaef767fb785dbd78de79d55e0d58369030c7340
3
+ metadata.gz: aae0a232d8df396c19747bd0ac8281cf3f1fd9410248df8048d2bfa7d434a836
4
+ data.tar.gz: f39e0fc8f076b8a5daef6db65d65c2a03122841f9425ec05ba0a045396d45360
5
5
  SHA512:
6
- metadata.gz: 9b19acb596c18d89b4123bbe66bc2cda31a867630cdc2082bc455700b898791551389d1986cddf52e5b0de50b7848649527460e3fe266b928d3148ab74d13fe0
7
- data.tar.gz: 586f51599ac78bad382d44152897e4f13008d3e6d18d5b14ca7132f0c12c59fcd85c06d7abb4b5cd4d340b9c8cd80ece040980c611821a304112b7d97e980f65
6
+ metadata.gz: 6e0ce11834d12fce8a486a61f54684b85f8442d3936d59d200bde2c40da5e82791443f2b6b3d69d7a499f9b16632ecb6cab0a49e6c230462052356a7fdc63fe6
7
+ data.tar.gz: 0e5530f782c77ec5a24f7ff153cb4d1232c3eac7f33159741b2f9c3c7908ba211a2d909c862a9619083a258d73792bcd15cda0b3c885591b6bd8dd21a987aec1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firestore_v1beta1
2
2
 
3
+ ### v0.33.0 (2023-09-10)
4
+
5
+ * Regenerated from discovery document revision 20230905
6
+
3
7
  ### v0.32.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230806
@@ -588,20 +588,7 @@ module Google
588
588
  # @return [String]
589
589
  attr_accessor :create_time
590
590
 
591
- # The document's fields. The map keys represent field names. A simple field name
592
- # contains only characters `a` to `z`, `A` to `Z`, `0` to `9`, or `_`, and must
593
- # not start with `0` to `9`. For example, `foo_bar_17`. Field names matching the
594
- # regular expression `__.*__` are reserved. Reserved field names are forbidden
595
- # except in certain documented contexts. The map keys, represented as UTF-8,
596
- # must not exceed 1,500 bytes and cannot be empty. Field paths may be used in
597
- # other contexts to refer to structured fields defined here. For `map_value`,
598
- # the field path is represented by the simple or quoted field names of the
599
- # containing fields, delimited by `.`. For example, the structured field `"foo" :
600
- # ` map_value: ` "x&y" : ` string_value: "hello" ```` would be represented by
601
- # the field path `foo.x&y`. Within a field path, a quoted field name starts and
602
- # ends with `` ` `` and may contain any character. Some characters, including ``
603
- # ` ``, must be escaped using a `\`. For example, `` `x&y` `` represents `x&y`
604
- # and `` `bak\`tik` `` represents `` bak`tik ``.
591
+ #
605
592
  # Corresponds to the JSON property `fields`
606
593
  # @return [Hash<String,Google::Apis::FirestoreV1beta1::Value>]
607
594
  attr_accessor :fields
@@ -903,8 +890,9 @@ module Google
903
890
  class FieldReference
904
891
  include Google::Apis::Core::Hashable
905
892
 
906
- # The relative path of the document being referenced. Requires: * Conform to
907
- # document field name limitations.
893
+ # A reference to a field in a document. Requires: * MUST be a dot-delimited (`.`)
894
+ # string of segments, where each segment conforms to document field name
895
+ # limitations.
908
896
  # Corresponds to the JSON property `fieldPath`
909
897
  # @return [String]
910
898
  attr_accessor :field_path
@@ -1005,6 +993,32 @@ module Google
1005
993
  end
1006
994
  end
1007
995
 
996
+ # Metadata related to the create database operation.
997
+ class GoogleFirestoreAdminV1CreateDatabaseMetadata
998
+ include Google::Apis::Core::Hashable
999
+
1000
+ def initialize(**args)
1001
+ update!(**args)
1002
+ end
1003
+
1004
+ # Update properties of this object
1005
+ def update!(**args)
1006
+ end
1007
+ end
1008
+
1009
+ # Metadata related to the delete database operation.
1010
+ class GoogleFirestoreAdminV1DeleteDatabaseMetadata
1011
+ include Google::Apis::Core::Hashable
1012
+
1013
+ def initialize(**args)
1014
+ update!(**args)
1015
+ end
1016
+
1017
+ # Update properties of this object
1018
+ def update!(**args)
1019
+ end
1020
+ end
1021
+
1008
1022
  # Describes the progress of the operation. Unit of work is generic and must be
1009
1023
  # interpreted based on where Progress is used.
1010
1024
  class GoogleFirestoreAdminV1Progress
@@ -2403,7 +2417,17 @@ module Google
2403
2417
  attr_accessor :resume_token
2404
2418
 
2405
2419
  # The target ID that identifies the target on the stream. Must be a positive
2406
- # number and non-zero.
2420
+ # number and non-zero. If `target_id` is 0 (or unspecified), the server will
2421
+ # assign an ID for this target and return that in a `TargetChange::ADD` event.
2422
+ # Once a target with `target_id=0` is added, all subsequent targets must also
2423
+ # have `target_id=0`. If an `AddTarget` request with `target_id != 0` is sent to
2424
+ # the server after a target with `target_id=0` is added, the server will
2425
+ # immediately send a response with a `TargetChange::Remove` event. Note that if
2426
+ # the client sends multiple `AddTarget` requests without an ID, the order of IDs
2427
+ # returned in `TargetChage.target_ids` are undefined. Therefore, clients should
2428
+ # provide a target ID instead of relying on the server to assign one. If `
2429
+ # target_id` is non-zero, there must not be an existing active target on this
2430
+ # stream with the same ID.
2407
2431
  # Corresponds to the JSON property `targetId`
2408
2432
  # @return [Fixnum]
2409
2433
  attr_accessor :target_id
@@ -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.32.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230806"
25
+ REVISION = "20230905"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,18 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class GoogleFirestoreAdminV1CreateDatabaseMetadata
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class GoogleFirestoreAdminV1DeleteDatabaseMetadata
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class GoogleFirestoreAdminV1Progress
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -785,6 +797,18 @@ module Google
785
797
  end
786
798
  end
787
799
 
800
+ class GoogleFirestoreAdminV1CreateDatabaseMetadata
801
+ # @private
802
+ class Representation < Google::Apis::Core::JsonRepresentation
803
+ end
804
+ end
805
+
806
+ class GoogleFirestoreAdminV1DeleteDatabaseMetadata
807
+ # @private
808
+ class Representation < Google::Apis::Core::JsonRepresentation
809
+ end
810
+ end
811
+
788
812
  class GoogleFirestoreAdminV1Progress
789
813
  # @private
790
814
  class Representation < Google::Apis::Core::JsonRepresentation
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.32.0
4
+ version: 0.33.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: 2023-08-13 00:00:00.000000000 Z
11
+ date: 2023-09-10 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.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1beta1/v0.33.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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Firestore API V1beta1