google-apis-firestore_v1 0.62.0 → 0.64.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: b576326435612aed0848a1d3eadab517c30e04173bc1d6811057ec75401e2e85
4
- data.tar.gz: a8876f209fff58c2d85bfec74978693c7a7b6324adaf1f8b8fe0f6629071dfcd
3
+ metadata.gz: 28a6c296849b8cb47ea74c00ea548841d79a639b0b86318252e2df480b1e7ea3
4
+ data.tar.gz: 9f229c8da59eb9e1fcaff2c221019516c6d94bd8b65a76ff7a325862cd82c954
5
5
  SHA512:
6
- metadata.gz: a2ed773c6078cab1cfb82fbc020b9d08528d1ad28fa4ce4851f8d6f79bf3e383dcd6c7e2d595548630a2c2f764d6c100aa68a6b60fcf9a6c2be09c282ebc1be6
7
- data.tar.gz: 516944531f1b9e707b74251b1a1f67bde4d4fd1dc7f66bc6c62eaf83cc635073888ad62c0251d47ed71a11b62eb1a7793ad03a48af64064f962a633b9a78e313
6
+ metadata.gz: ffaf940574d370de8039581022087fd0201416fb1ec4236f71405322a7755c87496bb9fbc0e665818edc9666e97d2e4a57842b86ef806f50201a5bea99c04b93
7
+ data.tar.gz: f5e4554d41e0acfbe5ebda0305ffa9831708b2ff0d13f5b1c59caa4460684e587637438356f2e03f265d5e2254554d8a00011064da9882b1f48e65e31bf52d7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.64.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240324
6
+
7
+ ### v0.63.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240317
10
+
3
11
  ### v0.62.0 (2024-03-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20240307
@@ -826,6 +826,48 @@ module Google
826
826
  end
827
827
  end
828
828
 
829
+ # Execution statistics for the query.
830
+ class ExecutionStats
831
+ include Google::Apis::Core::Hashable
832
+
833
+ # Debugging statistics from the execution of the query. Note that the debugging
834
+ # stats are subject to change as Firestore evolves. It could include: ` "
835
+ # indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details"
836
+ # : ` "documents_billable": "20", "index_entries_billable": "1000", "
837
+ # min_query_cost": "0" ` `
838
+ # Corresponds to the JSON property `debugStats`
839
+ # @return [Hash<String,Object>]
840
+ attr_accessor :debug_stats
841
+
842
+ # Total time to execute the query in the backend.
843
+ # Corresponds to the JSON property `executionDuration`
844
+ # @return [String]
845
+ attr_accessor :execution_duration
846
+
847
+ # Total billable read operations.
848
+ # Corresponds to the JSON property `readOperations`
849
+ # @return [Fixnum]
850
+ attr_accessor :read_operations
851
+
852
+ # Total number of results returned, including documents, projections,
853
+ # aggregation results, keys.
854
+ # Corresponds to the JSON property `resultsReturned`
855
+ # @return [Fixnum]
856
+ attr_accessor :results_returned
857
+
858
+ def initialize(**args)
859
+ update!(**args)
860
+ end
861
+
862
+ # Update properties of this object
863
+ def update!(**args)
864
+ @debug_stats = args[:debug_stats] if args.key?(:debug_stats)
865
+ @execution_duration = args[:execution_duration] if args.key?(:execution_duration)
866
+ @read_operations = args[:read_operations] if args.key?(:read_operations)
867
+ @results_returned = args[:results_returned] if args.key?(:results_returned)
868
+ end
869
+ end
870
+
829
871
  # A digest of all the documents that match a given target.
830
872
  class ExistenceFilter
831
873
  include Google::Apis::Core::Hashable
@@ -869,6 +911,54 @@ module Google
869
911
  end
870
912
  end
871
913
 
914
+ # Explain metrics for the query.
915
+ class ExplainMetrics
916
+ include Google::Apis::Core::Hashable
917
+
918
+ # Execution statistics for the query.
919
+ # Corresponds to the JSON property `executionStats`
920
+ # @return [Google::Apis::FirestoreV1::ExecutionStats]
921
+ attr_accessor :execution_stats
922
+
923
+ # Planning phase information for the query.
924
+ # Corresponds to the JSON property `planSummary`
925
+ # @return [Google::Apis::FirestoreV1::PlanSummary]
926
+ attr_accessor :plan_summary
927
+
928
+ def initialize(**args)
929
+ update!(**args)
930
+ end
931
+
932
+ # Update properties of this object
933
+ def update!(**args)
934
+ @execution_stats = args[:execution_stats] if args.key?(:execution_stats)
935
+ @plan_summary = args[:plan_summary] if args.key?(:plan_summary)
936
+ end
937
+ end
938
+
939
+ # Explain options for the query.
940
+ class ExplainOptions
941
+ include Google::Apis::Core::Hashable
942
+
943
+ # Optional. Whether to execute this query. When false (the default), the query
944
+ # will be planned, returning only metrics from the planning stages. When true,
945
+ # the query will be planned and executed, returning the full query results along
946
+ # with both planning and execution stage metrics.
947
+ # Corresponds to the JSON property `analyze`
948
+ # @return [Boolean]
949
+ attr_accessor :analyze
950
+ alias_method :analyze?, :analyze
951
+
952
+ def initialize(**args)
953
+ update!(**args)
954
+ end
955
+
956
+ # Update properties of this object
957
+ def update!(**args)
958
+ @analyze = args[:analyze] if args.key?(:analyze)
959
+ end
960
+ end
961
+
872
962
  # A filter on a specific field.
873
963
  class FieldFilter
874
964
  include Google::Apis::Core::Hashable
@@ -1007,6 +1097,44 @@ module Google
1007
1097
  end
1008
1098
  end
1009
1099
 
1100
+ # Nearest Neighbors search config.
1101
+ class FindNearest
1102
+ include Google::Apis::Core::Hashable
1103
+
1104
+ # Required. The Distance Measure to use, required.
1105
+ # Corresponds to the JSON property `distanceMeasure`
1106
+ # @return [String]
1107
+ attr_accessor :distance_measure
1108
+
1109
+ # Required. The number of nearest neighbors to return. Must be a positive
1110
+ # integer of no more than 1000.
1111
+ # Corresponds to the JSON property `limit`
1112
+ # @return [Fixnum]
1113
+ attr_accessor :limit
1114
+
1115
+ # A message that can hold any of the supported value types.
1116
+ # Corresponds to the JSON property `queryVector`
1117
+ # @return [Google::Apis::FirestoreV1::Value]
1118
+ attr_accessor :query_vector
1119
+
1120
+ # A reference to a field in a document, ex: `stats.operations`.
1121
+ # Corresponds to the JSON property `vectorField`
1122
+ # @return [Google::Apis::FirestoreV1::FieldReference]
1123
+ attr_accessor :vector_field
1124
+
1125
+ def initialize(**args)
1126
+ update!(**args)
1127
+ end
1128
+
1129
+ # Update properties of this object
1130
+ def update!(**args)
1131
+ @distance_measure = args[:distance_measure] if args.key?(:distance_measure)
1132
+ @limit = args[:limit] if args.key?(:limit)
1133
+ @query_vector = args[:query_vector] if args.key?(:query_vector)
1134
+ @vector_field = args[:vector_field] if args.key?(:vector_field)
1135
+ end
1136
+ end
1137
+
1010
1138
  # A Backup of a Cloud Firestore Database. The backup contains all documents and
1011
1139
  # index configurations for the given database at a specific point in time.
1012
1140
  class GoogleFirestoreAdminV1Backup
@@ -1079,7 +1207,7 @@ module Google
1079
1207
  # @return [String]
1080
1208
  attr_accessor :create_time
1081
1209
 
1082
- # Represent a recurring schedule that runs at a specific time every day. The
1210
+ # Represents a recurring schedule that runs at a specific time every day. The
1083
1211
  # time zone is UTC.
1084
1212
  # Corresponds to the JSON property `dailyRecurrence`
1085
1213
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DailyRecurrence]
@@ -1175,7 +1303,7 @@ module Google
1175
1303
  end
1176
1304
  end
1177
1305
 
1178
- # Represent a recurring schedule that runs at a specific time every day. The
1306
+ # Represents a recurring schedule that runs at a specific time every day. The
1179
1307
  # time zone is UTC.
1180
1308
  class GoogleFirestoreAdminV1DailyRecurrence
1181
1309
  include Google::Apis::Core::Hashable
@@ -2871,6 +2999,27 @@ module Google
2871
2999
  end
2872
3000
  end
2873
3001
 
3002
+ # Planning phase information for the query.
3003
+ class PlanSummary
3004
+ include Google::Apis::Core::Hashable
3005
+
3006
+ # The indexes selected for the query. For example: [ `"query_scope": "Collection"
3007
+ # , "properties": "(foo ASC, __name__ ASC)"`, `"query_scope": "Collection", "
3008
+ # properties": "(bar ASC, __name__ ASC)"` ]
3009
+ # Corresponds to the JSON property `indexesUsed`
3010
+ # @return [Array<Hash<String,Object>>]
3011
+ attr_accessor :indexes_used
3012
+
3013
+ def initialize(**args)
3014
+ update!(**args)
3015
+ end
3016
+
3017
+ # Update properties of this object
3018
+ def update!(**args)
3019
+ @indexes_used = args[:indexes_used] if args.key?(:indexes_used)
3020
+ end
3021
+ end
3022
+
2874
3023
  # A precondition on a document, used for conditional operations.
2875
3024
  class Precondition
2876
3025
  include Google::Apis::Core::Hashable
@@ -3016,6 +3165,11 @@ module Google
3016
3165
  class RunAggregationQueryRequest
3017
3166
  include Google::Apis::Core::Hashable
3018
3167
 
3168
+ # Explain options for the query.
3169
+ # Corresponds to the JSON property `explainOptions`
3170
+ # @return [Google::Apis::FirestoreV1::ExplainOptions]
3171
+ attr_accessor :explain_options
3172
+
3019
3173
  # Options for creating a new transaction.
3020
3174
  # Corresponds to the JSON property `newTransaction`
3021
3175
  # @return [Google::Apis::FirestoreV1::TransactionOptions]
@@ -3046,6 +3200,7 @@ module Google
3046
3200
 
3047
3201
  # Update properties of this object
3048
3202
  def update!(**args)
3203
+ @explain_options = args[:explain_options] if args.key?(:explain_options)
3049
3204
  @new_transaction = args[:new_transaction] if args.key?(:new_transaction)
3050
3205
  @read_time = args[:read_time] if args.key?(:read_time)
3051
3206
  @structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
@@ -3057,6 +3212,11 @@ module Google
3057
3212
  class RunAggregationQueryResponse
3058
3213
  include Google::Apis::Core::Hashable
3059
3214
 
3215
+ # Explain metrics for the query.
3216
+ # Corresponds to the JSON property `explainMetrics`
3217
+ # @return [Google::Apis::FirestoreV1::ExplainMetrics]
3218
+ attr_accessor :explain_metrics
3219
+
3060
3220
  # The time at which the aggregate result was computed. This is always
3061
3221
  # monotonically increasing; in this case, the previous AggregationResult in the
3062
3222
  # result stream are guaranteed not to have changed between their `read_time` and
@@ -3086,6 +3246,7 @@ module Google
3086
3246
 
3087
3247
  # Update properties of this object
3088
3248
  def update!(**args)
3249
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
3089
3250
  @read_time = args[:read_time] if args.key?(:read_time)
3090
3251
  @result = args[:result] if args.key?(:result)
3091
3252
  @transaction = args[:transaction] if args.key?(:transaction)
@@ -3096,6 +3257,11 @@ module Google
3096
3257
  class RunQueryRequest
3097
3258
  include Google::Apis::Core::Hashable
3098
3259
 
3260
+ # Explain options for the query.
3261
+ # Corresponds to the JSON property `explainOptions`
3262
+ # @return [Google::Apis::FirestoreV1::ExplainOptions]
3263
+ attr_accessor :explain_options
3264
+
3099
3265
  # Options for creating a new transaction.
3100
3266
  # Corresponds to the JSON property `newTransaction`
3101
3267
  # @return [Google::Apis::FirestoreV1::TransactionOptions]
@@ -3127,6 +3293,7 @@ module Google
3127
3293
 
3128
3294
  # Update properties of this object
3129
3295
  def update!(**args)
3296
+ @explain_options = args[:explain_options] if args.key?(:explain_options)
3130
3297
  @new_transaction = args[:new_transaction] if args.key?(:new_transaction)
3131
3298
  @read_time = args[:read_time] if args.key?(:read_time)
3132
3299
  @structured_query = args[:structured_query] if args.key?(:structured_query)
@@ -3150,6 +3317,11 @@ module Google
3150
3317
  attr_accessor :done
3151
3318
  alias_method :done?, :done
3152
3319
 
3320
+ # Explain metrics for the query.
3321
+ # Corresponds to the JSON property `explainMetrics`
3322
+ # @return [Google::Apis::FirestoreV1::ExplainMetrics]
3323
+ attr_accessor :explain_metrics
3324
+
3153
3325
  # The time at which the document was read. This may be monotonically increasing;
3154
3326
  # in this case, the previous documents in the result stream are guaranteed not
3155
3327
  # to have changed between their `read_time` and this one. If the query returns
@@ -3181,6 +3353,7 @@ module Google
3181
3353
  def update!(**args)
3182
3354
  @document = args[:document] if args.key?(:document)
3183
3355
  @done = args[:done] if args.key?(:done)
3356
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
3184
3357
  @read_time = args[:read_time] if args.key?(:read_time)
3185
3358
  @skipped_results = args[:skipped_results] if args.key?(:skipped_results)
3186
3359
  @transaction = args[:transaction] if args.key?(:transaction)
@@ -3264,6 +3437,11 @@ module Google
3264
3437
  # @return [Google::Apis::FirestoreV1::Cursor]
3265
3438
  attr_accessor :end_at
3266
3439
 
3440
+ # Nearest Neighbors search config.
3441
+ # Corresponds to the JSON property `findNearest`
3442
+ # @return [Google::Apis::FirestoreV1::FindNearest]
3443
+ attr_accessor :find_nearest
3444
+
3267
3445
  # The collections to query.
3268
3446
  # Corresponds to the JSON property `from`
3269
3447
  # @return [Array<Google::Apis::FirestoreV1::CollectionSelector>]
@@ -3322,6 +3500,7 @@ module Google
3322
3500
  # Update properties of this object
3323
3501
  def update!(**args)
3324
3502
  @end_at = args[:end_at] if args.key?(:end_at)
3503
+ @find_nearest = args[:find_nearest] if args.key?(:find_nearest)
3325
3504
  @from = args[:from] if args.key?(:from)
3326
3505
  @limit = args[:limit] if args.key?(:limit)
3327
3506
  @offset = args[:offset] if args.key?(:offset)
@@ -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.62.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240307"
25
+ REVISION = "20240324"
26
26
  end
27
27
  end
28
28
  end
@@ -178,12 +178,30 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class ExecutionStats
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class ExistenceFilter
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
184
190
  include Google::Apis::Core::JsonObjectSupport
185
191
  end
186
192
 
193
+ class ExplainMetrics
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class ExplainOptions
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
187
205
  class FieldFilter
188
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
207
 
@@ -208,6 +226,12 @@ module Google
208
226
  include Google::Apis::Core::JsonObjectSupport
209
227
  end
210
228
 
229
+ class FindNearest
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
211
235
  class GoogleFirestoreAdminV1Backup
212
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
237
 
@@ -514,6 +538,12 @@ module Google
514
538
  include Google::Apis::Core::JsonObjectSupport
515
539
  end
516
540
 
541
+ class PlanSummary
542
+ class Representation < Google::Apis::Core::JsonRepresentation; end
543
+
544
+ include Google::Apis::Core::JsonObjectSupport
545
+ end
546
+
517
547
  class Precondition
518
548
  class Representation < Google::Apis::Core::JsonRepresentation; end
519
549
 
@@ -883,6 +913,16 @@ module Google
883
913
  end
884
914
  end
885
915
 
916
+ class ExecutionStats
917
+ # @private
918
+ class Representation < Google::Apis::Core::JsonRepresentation
919
+ hash :debug_stats, as: 'debugStats'
920
+ property :execution_duration, as: 'executionDuration'
921
+ property :read_operations, :numeric_string => true, as: 'readOperations'
922
+ property :results_returned, :numeric_string => true, as: 'resultsReturned'
923
+ end
924
+ end
925
+
886
926
  class ExistenceFilter
887
927
  # @private
888
928
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -893,6 +933,23 @@ module Google
893
933
  end
894
934
  end
895
935
 
936
+ class ExplainMetrics
937
+ # @private
938
+ class Representation < Google::Apis::Core::JsonRepresentation
939
+ property :execution_stats, as: 'executionStats', class: Google::Apis::FirestoreV1::ExecutionStats, decorator: Google::Apis::FirestoreV1::ExecutionStats::Representation
940
+
941
+ property :plan_summary, as: 'planSummary', class: Google::Apis::FirestoreV1::PlanSummary, decorator: Google::Apis::FirestoreV1::PlanSummary::Representation
942
+
943
+ end
944
+ end
945
+
946
+ class ExplainOptions
947
+ # @private
948
+ class Representation < Google::Apis::Core::JsonRepresentation
949
+ property :analyze, as: 'analyze'
950
+ end
951
+ end
952
+
896
953
  class FieldFilter
897
954
  # @private
898
955
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -941,6 +998,18 @@ module Google
941
998
  end
942
999
  end
943
1000
 
1001
+ class FindNearest
1002
+ # @private
1003
+ class Representation < Google::Apis::Core::JsonRepresentation
1004
+ property :distance_measure, as: 'distanceMeasure'
1005
+ property :limit, as: 'limit'
1006
+ property :query_vector, as: 'queryVector', class: Google::Apis::FirestoreV1::Value, decorator: Google::Apis::FirestoreV1::Value::Representation
1007
+
1008
+ property :vector_field, as: 'vectorField', class: Google::Apis::FirestoreV1::FieldReference, decorator: Google::Apis::FirestoreV1::FieldReference::Representation
1009
+
1010
+ end
1011
+ end
1012
+
944
1013
  class GoogleFirestoreAdminV1Backup
945
1014
  # @private
946
1015
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1447,6 +1516,13 @@ module Google
1447
1516
  end
1448
1517
  end
1449
1518
 
1519
+ class PlanSummary
1520
+ # @private
1521
+ class Representation < Google::Apis::Core::JsonRepresentation
1522
+ collection :indexes_used, as: 'indexesUsed'
1523
+ end
1524
+ end
1525
+
1450
1526
  class Precondition
1451
1527
  # @private
1452
1528
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1496,6 +1572,8 @@ module Google
1496
1572
  class RunAggregationQueryRequest
1497
1573
  # @private
1498
1574
  class Representation < Google::Apis::Core::JsonRepresentation
1575
+ property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
1576
+
1499
1577
  property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
1500
1578
 
1501
1579
  property :read_time, as: 'readTime'
@@ -1508,6 +1586,8 @@ module Google
1508
1586
  class RunAggregationQueryResponse
1509
1587
  # @private
1510
1588
  class Representation < Google::Apis::Core::JsonRepresentation
1589
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::FirestoreV1::ExplainMetrics, decorator: Google::Apis::FirestoreV1::ExplainMetrics::Representation
1590
+
1511
1591
  property :read_time, as: 'readTime'
1512
1592
  property :result, as: 'result', class: Google::Apis::FirestoreV1::AggregationResult, decorator: Google::Apis::FirestoreV1::AggregationResult::Representation
1513
1593
 
@@ -1518,6 +1598,8 @@ module Google
1518
1598
  class RunQueryRequest
1519
1599
  # @private
1520
1600
  class Representation < Google::Apis::Core::JsonRepresentation
1601
+ property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
1602
+
1521
1603
  property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
1522
1604
 
1523
1605
  property :read_time, as: 'readTime'
@@ -1533,6 +1615,8 @@ module Google
1533
1615
  property :document, as: 'document', class: Google::Apis::FirestoreV1::Document, decorator: Google::Apis::FirestoreV1::Document::Representation
1534
1616
 
1535
1617
  property :done, as: 'done'
1618
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::FirestoreV1::ExplainMetrics, decorator: Google::Apis::FirestoreV1::ExplainMetrics::Representation
1619
+
1536
1620
  property :read_time, as: 'readTime'
1537
1621
  property :skipped_results, as: 'skippedResults'
1538
1622
  property :transaction, :base64 => true, as: 'transaction'
@@ -1563,6 +1647,8 @@ module Google
1563
1647
  class Representation < Google::Apis::Core::JsonRepresentation
1564
1648
  property :end_at, as: 'endAt', class: Google::Apis::FirestoreV1::Cursor, decorator: Google::Apis::FirestoreV1::Cursor::Representation
1565
1649
 
1650
+ property :find_nearest, as: 'findNearest', class: Google::Apis::FirestoreV1::FindNearest, decorator: Google::Apis::FirestoreV1::FindNearest::Representation
1651
+
1566
1652
  collection :from, as: 'from', class: Google::Apis::FirestoreV1::CollectionSelector, decorator: Google::Apis::FirestoreV1::CollectionSelector::Representation
1567
1653
 
1568
1654
  property :limit, as: 'limit'
@@ -383,8 +383,8 @@ module Google
383
383
 
384
384
  # Deletes a backup schedule.
385
385
  # @param [String] name
386
- # Required. The name of backup schedule. Format `projects/`project`/databases/`
387
- # database`/backupSchedules/`backup_schedule``
386
+ # Required. The name of the backup schedule. Format `projects/`project`/
387
+ # databases/`database`/backupSchedules/`backup_schedule``
388
388
  # @param [String] fields
389
389
  # Selector specifying which fields to include in a partial response.
390
390
  # @param [String] quota_user
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.62.0
4
+ version: 0.64.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-03-31 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.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.64.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: []