google-apis-firestore_v1 0.28.0 → 0.29.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: 56754b1259d90ecbc12eae2441505aaabf0aabbddc39c7cbd8ecb1d2c7851e41
4
- data.tar.gz: e87dffa8f484e736ae95702a9d9704e5feb66f82ef4bd173474d30986e101b12
3
+ metadata.gz: ef54838ef632922a9329bb1631550cd26a01bdd927ff458229284657e81810e8
4
+ data.tar.gz: 07ee97b9393f9c5855ea66c91f59084697b3599405aba34cc01eee0d94137cbb
5
5
  SHA512:
6
- metadata.gz: 7a55df4a172bf30a5924ce4c277f640ae39bf5b075e67b48f1e7291d1fec3c297df1886e1c014274e90c3b0863508abd851d46fcfb95bccf0a5a2449126747e6
7
- data.tar.gz: 2d0c4b0f9f1715769f528db02013ac2a50ee49f9557f135331f0d46c9abc3e41d19a6bbc480cc00f43a97ecfa1091bc529068f04e76d3ff4e932c0f721b5fe20
6
+ metadata.gz: 875c68e281c57ab21903e3aaf9d08a3ae220f70c88493d744cac24ba6f2d06f6e1c475d46ed09f37e5cf8d68bfd8fe4ec1eae48d1e41f952746c047dc8c7a68f
7
+ data.tar.gz: cc71211fb81f6b51eb941e33196faac1617d84133f7ceb70a9b5e30205b3ede62d43b0a8163df5526b294cc48e3841801a6e899a5405adb4f6ded5aa70a82325
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.29.0 (2022-11-04)
4
+
5
+ * Regenerated from discovery document revision 20221029
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.28.0 (2022-09-28)
4
9
 
5
10
  * Regenerated from discovery document revision 20220915
@@ -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
 
@@ -1244,6 +1264,11 @@ module Google
1244
1264
  class GoogleFirestoreAdminV1Index
1245
1265
  include Google::Apis::Core::Hashable
1246
1266
 
1267
+ # The API scope supported by this index.
1268
+ # Corresponds to the JSON property `apiScope`
1269
+ # @return [String]
1270
+ attr_accessor :api_scope
1271
+
1247
1272
  # The fields supported by this index. For composite indexes, this requires a
1248
1273
  # minimum of 2 and a maximum of 100 fields. The last field entry is always for
1249
1274
  # the field path `__name__`. If, on creation, `__name__` was not specified as
@@ -1285,6 +1310,7 @@ module Google
1285
1310
 
1286
1311
  # Update properties of this object
1287
1312
  def update!(**args)
1313
+ @api_scope = args[:api_scope] if args.key?(:api_scope)
1288
1314
  @fields = args[:fields] if args.key?(:fields)
1289
1315
  @name = args[:name] if args.key?(:name)
1290
1316
  @query_scope = args[:query_scope] if args.key?(:query_scope)
@@ -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.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220915"
25
+ REVISION = "20221029"
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,12 +889,14 @@ 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
 
894
896
  class GoogleFirestoreAdminV1Index
895
897
  # @private
896
898
  class Representation < Google::Apis::Core::JsonRepresentation
899
+ property :api_scope, as: 'apiScope'
897
900
  collection :fields, as: 'fields', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexField, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexField::Representation
898
901
 
899
902
  property :name, as: 'name'
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.28.0
4
+ version: 0.29.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-03 00:00:00.000000000 Z
11
+ date: 2022-11-07 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.0
19
+ version: 0.9.1
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.0
29
+ version: 0.9.1
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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.29.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: []