google-apis-firestore_v1 0.33.0 → 0.34.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: 406a54ace5f37f0929d7d9d593705ac5ee5010fdf894e83d007141ceed96dbd5
4
- data.tar.gz: a3746fb05343ffb5ee888b9f4001fddb24d219f28617b455b89634f86a28edad
3
+ metadata.gz: 01e30481bd7f6e60f6b03a873ad33a4ba10f5fb8e7774fca913c6b992304dc3c
4
+ data.tar.gz: 23984304276e262924f6f3f3b3b4679cc7133ca8e14d243fbe91e95a05e877c5
5
5
  SHA512:
6
- metadata.gz: fd277706819afc96213b9f1b0be66ba7fb1838e41a77bad57d37c84e92fcfe1483afc3a2756b91b25876d92d3b30bb175521ab20aa233193ebf0f51a9742b88a
7
- data.tar.gz: df93b0e7c2221f2d3a8e268232ead3cebf26ddbcff574621b1274c4e133aadf714b8950f3249dfc040e01d65d3f3c843c4a86dfdaf9dc70e9469d8e459090aa8
6
+ metadata.gz: b84fcab18ac67b98b10e4877df149d539c603dfec847bb35aa2e2a4bbe877b2a8745c93cd590275138e5b2c59e3886bf6dd2fff7fb4be841277b0fb2c7a963ef
7
+ data.tar.gz: d615fb65304ae771c7424bc91f3a48333f052160b589f84f01b69ae64be8b0c28b474e030ca95930bd49682afc7562d996976228f8689ff7d899b73cfa1b5640
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.34.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230214
6
+
3
7
  ### v0.33.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -870,6 +870,11 @@ module Google
870
870
  # @return [String]
871
871
  attr_accessor :concurrency_mode
872
872
 
873
+ # Output only. The timestamp at which this database was created.
874
+ # Corresponds to the JSON property `createTime`
875
+ # @return [String]
876
+ attr_accessor :create_time
877
+
873
878
  # This checksum is computed by the server based on the value of other fields,
874
879
  # and may be sent on update and delete requests to ensure the client has an up-
875
880
  # to-date value before proceeding.
@@ -904,6 +909,18 @@ module Google
904
909
  # @return [String]
905
910
  attr_accessor :type
906
911
 
912
+ # Output only. The system-generated UUID4 for this Database.
913
+ # Corresponds to the JSON property `uid`
914
+ # @return [String]
915
+ attr_accessor :uid
916
+
917
+ # Output only. The timestamp at which this database was most recently updated.
918
+ # Note this only includes updates to the database resource and not data
919
+ # contained by the database.
920
+ # Corresponds to the JSON property `updateTime`
921
+ # @return [String]
922
+ attr_accessor :update_time
923
+
907
924
  def initialize(**args)
908
925
  update!(**args)
909
926
  end
@@ -912,11 +929,14 @@ module Google
912
929
  def update!(**args)
913
930
  @app_engine_integration_mode = args[:app_engine_integration_mode] if args.key?(:app_engine_integration_mode)
914
931
  @concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
932
+ @create_time = args[:create_time] if args.key?(:create_time)
915
933
  @etag = args[:etag] if args.key?(:etag)
916
934
  @key_prefix = args[:key_prefix] if args.key?(:key_prefix)
917
935
  @location_id = args[:location_id] if args.key?(:location_id)
918
936
  @name = args[:name] if args.key?(:name)
919
937
  @type = args[:type] if args.key?(:type)
938
+ @uid = args[:uid] if args.key?(:uid)
939
+ @update_time = args[:update_time] if args.key?(:update_time)
920
940
  end
921
941
  end
922
942
 
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.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 = "20230118"
25
+ REVISION = "20230214"
26
26
  end
27
27
  end
28
28
  end
@@ -801,11 +801,14 @@ module Google
801
801
  class Representation < Google::Apis::Core::JsonRepresentation
802
802
  property :app_engine_integration_mode, as: 'appEngineIntegrationMode'
803
803
  property :concurrency_mode, as: 'concurrencyMode'
804
+ property :create_time, as: 'createTime'
804
805
  property :etag, as: 'etag'
805
806
  property :key_prefix, as: 'keyPrefix'
806
807
  property :location_id, as: 'locationId'
807
808
  property :name, as: 'name'
808
809
  property :type, as: 'type'
810
+ property :uid, as: 'uid'
811
+ property :update_time, as: 'updateTime'
809
812
  end
810
813
  end
811
814
 
@@ -1040,7 +1040,7 @@ module Google
1040
1040
  execute_or_queue_command(command, &block)
1041
1041
  end
1042
1042
 
1043
- # Listens to changes.
1043
+ # Listens to changes. This method is only available via the gRPC API (not REST).
1044
1044
  # @param [String] database
1045
1045
  # Required. The database name. In the format: `projects/`project_id`/databases/`
1046
1046
  # database_id``.
@@ -1273,7 +1273,8 @@ module Google
1273
1273
  execute_or_queue_command(command, &block)
1274
1274
  end
1275
1275
 
1276
- # Streams batches of document updates and deletes, in order.
1276
+ # Streams batches of document updates and deletes, in order. This method is only
1277
+ # available via the gRPC API (not REST).
1277
1278
  # @param [String] database
1278
1279
  # Required. The database name. In the format: `projects/`project_id`/databases/`
1279
1280
  # 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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.0
4
+ version: 0.34.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-02-19 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
@@ -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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.34.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: []