google-apis-firestore_v1 0.30.0 → 0.31.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: 8eba1049564a84a181ad74b387ea673d94ae63e2fcd72db165742f8092c14080
4
- data.tar.gz: d385e45f249a69d70de4340baf181295c1ef0cf1059b202dd1dfdf3ef985f2a5
3
+ metadata.gz: 4224111df8971548652ce2fdfeecad2c43b559bfaff1b9528f117a381e370b37
4
+ data.tar.gz: 901ceb84c144a5194efbc6dcb3b9db9f4ea32a515ed82be6e4755431dca7ce69
5
5
  SHA512:
6
- metadata.gz: bdaff76ddbad8fa52ad886afa1d24f5792ee92497c32c6bbcca946de9dac97ece2832ce165274a329df28cfdb5039d9ff342256e67057bd2210f34c8eb882940
7
- data.tar.gz: 224d48cf491bd819767538bd9295e4ed31e6189e817878a2a444af6fd7f011fe63e00951cebe868f49dfaf3ee91a1d203e51462d8fa440e4310a470504b665cc
6
+ metadata.gz: adc31b6113a7c8e2a85e8be793fdf96d04eeebfded8764a883133aca0fa4c91b04b8e1f7020d56115f679484d7fcde6b79d104e304682029d9022aaa077310d6
7
+ data.tar.gz: c4efdf83fb74c5ce6e9e404c0a7145b2cca10c7dc5631917132a1af3d5ffc58388b7093aa29c0a02145df0ec29cb996529263d69dbabdb96c3bd66dcf14845d2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.31.0 (2023-01-15)
4
+
5
+ * Regenerated from discovery document revision 20230110
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.30.0 (2022-12-15)
4
9
 
5
10
  * Regenerated from discovery document revision 20221210
@@ -988,6 +988,15 @@ module Google
988
988
  # @return [Array<String>]
989
989
  attr_accessor :collection_ids
990
990
 
991
+ # An empty list represents all namespaces. This is the preferred usage for
992
+ # databases that don't use namespaces. An empty string element represents the
993
+ # default namespace. This should be used if the database has data in non-default
994
+ # namespaces, but doesn't want to include them. Each namespace in this list must
995
+ # be unique.
996
+ # Corresponds to the JSON property `namespaceIds`
997
+ # @return [Array<String>]
998
+ attr_accessor :namespace_ids
999
+
991
1000
  # The output URI. Currently only supports Google Cloud Storage URIs of the form:
992
1001
  # `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name of the
993
1002
  # Google Cloud Storage bucket and `NAMESPACE_PATH` is an optional Google Cloud
@@ -1006,6 +1015,7 @@ module Google
1006
1015
  # Update properties of this object
1007
1016
  def update!(**args)
1008
1017
  @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
1018
+ @namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids)
1009
1019
  @output_uri_prefix = args[:output_uri_prefix] if args.key?(:output_uri_prefix)
1010
1020
  end
1011
1021
  end
@@ -1228,6 +1238,15 @@ module Google
1228
1238
  # @return [String]
1229
1239
  attr_accessor :input_uri_prefix
1230
1240
 
1241
+ # An empty list represents all namespaces. This is the preferred usage for
1242
+ # databases that don't use namespaces. An empty string element represents the
1243
+ # default namespace. This should be used if the database has data in non-default
1244
+ # namespaces, but doesn't want to include them. Each namespace in this list must
1245
+ # be unique.
1246
+ # Corresponds to the JSON property `namespaceIds`
1247
+ # @return [Array<String>]
1248
+ attr_accessor :namespace_ids
1249
+
1231
1250
  def initialize(**args)
1232
1251
  update!(**args)
1233
1252
  end
@@ -1236,6 +1255,7 @@ module Google
1236
1255
  def update!(**args)
1237
1256
  @collection_ids = args[:collection_ids] if args.key?(:collection_ids)
1238
1257
  @input_uri_prefix = args[:input_uri_prefix] if args.key?(:input_uri_prefix)
1258
+ @namespace_ids = args[:namespace_ids] if args.key?(:namespace_ids)
1239
1259
  end
1240
1260
  end
1241
1261
 
@@ -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.30.0"
19
+ GEM_VERSION = "0.31.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.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221210"
25
+ REVISION = "20230110"
26
26
  end
27
27
  end
28
28
  end
@@ -828,6 +828,7 @@ module Google
828
828
  # @private
829
829
  class Representation < Google::Apis::Core::JsonRepresentation
830
830
  collection :collection_ids, as: 'collectionIds'
831
+ collection :namespace_ids, as: 'namespaceIds'
831
832
  property :output_uri_prefix, as: 'outputUriPrefix'
832
833
  end
833
834
  end
@@ -888,6 +889,7 @@ module Google
888
889
  class Representation < Google::Apis::Core::JsonRepresentation
889
890
  collection :collection_ids, as: 'collectionIds'
890
891
  property :input_uri_prefix, as: 'inputUriPrefix'
892
+ collection :namespace_ids, as: 'namespaceIds'
891
893
  end
892
894
  end
893
895
 
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.30.0
4
+ version: 0.31.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-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-15 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.31.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: []
@@ -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 V1