google-apis-datastore_v1 0.35.0 → 0.37.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: 07063e5ba6a5c4331f9d395f89386b19495c68a32d5b74324f9414ee2f284e69
4
- data.tar.gz: 2000b971db7bfc246b5d1655ca9387879ecafd5a2e31d626c6fa3a0a948235e6
3
+ metadata.gz: 3c07043cc9f904f59fb22d7ffcd7aaf45263282db0a248745da43eb9b7c7825b
4
+ data.tar.gz: cafd8e29e105379561e0e5d30d2871a945e41674a29bcfeb1b8b0d85142a8d86
5
5
  SHA512:
6
- metadata.gz: 7d81283c6cc78d1f63b8197bab8ea36cad7afb959cd68a2abc6b9ad93dd97c26ec790ec93f39734cc10a1ca632993d8ebe9f24ff0bc070a888e5c88b92b597f4
7
- data.tar.gz: d6a8b4e37c8d1ea2fe8a7a4c331c902deb071d2e3bc94d8691390079548442574228f64c91e7a6509f245b29bdcf5f33df49217f5e6bd78357d3cca4c2284012
6
+ metadata.gz: 7b972004199f31fc1e51e0391083a9a733164d142887db6c6fd628c6c4ada8de475beacbb43876f20d625e3a5838567f464cfa60c8256c8e1ee319003eb1ce9e
7
+ data.tar.gz: 24889dd35b04a98256154d513277af5bf271dc553f3f70e011a146970b1ad5352e8cb444efd52ddb244680b1783eecb9f91662367d56bb5def175692d74d1a72
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-datastore_v1
2
2
 
3
+ ### v0.37.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240317
6
+ * Regenerated using generator version 0.14.0
7
+
8
+ ### v0.36.0 (2024-02-23)
9
+
10
+ * Regenerated from discovery document revision 20240215
11
+
3
12
  ### v0.35.0 (2024-02-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20240208
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/datastore/) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -539,6 +539,73 @@ module Google
539
539
  end
540
540
  end
541
541
 
542
+ # Execution statistics for the query.
543
+ class ExecutionStats
544
+ include Google::Apis::Core::Hashable
545
+
546
+ # Debugging statistics from the execution of the query. Note that the debugging
547
+ # stats are subject to change as Firestore evolves. It could include: ` "
548
+ # indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details"
549
+ # : ` "documents_billable": "20", "index_entries_billable": "1000", "
550
+ # min_query_cost": "0" ` `
551
+ # Corresponds to the JSON property `debugStats`
552
+ # @return [Hash<String,Object>]
553
+ attr_accessor :debug_stats
554
+
555
+ # Total time to execute the query in the backend.
556
+ # Corresponds to the JSON property `executionDuration`
557
+ # @return [String]
558
+ attr_accessor :execution_duration
559
+
560
+ # Total billable read operations.
561
+ # Corresponds to the JSON property `readOperations`
562
+ # @return [Fixnum]
563
+ attr_accessor :read_operations
564
+
565
+ # Total number of results returned, including documents, projections,
566
+ # aggregation results, keys.
567
+ # Corresponds to the JSON property `resultsReturned`
568
+ # @return [Fixnum]
569
+ attr_accessor :results_returned
570
+
571
+ def initialize(**args)
572
+ update!(**args)
573
+ end
574
+
575
+ # Update properties of this object
576
+ def update!(**args)
577
+ @debug_stats = args[:debug_stats] if args.key?(:debug_stats)
578
+ @execution_duration = args[:execution_duration] if args.key?(:execution_duration)
579
+ @read_operations = args[:read_operations] if args.key?(:read_operations)
580
+ @results_returned = args[:results_returned] if args.key?(:results_returned)
581
+ end
582
+ end
583
+
584
+ # Explain metrics for the query.
585
+ class ExplainMetrics
586
+ include Google::Apis::Core::Hashable
587
+
588
+ # Execution statistics for the query.
589
+ # Corresponds to the JSON property `executionStats`
590
+ # @return [Google::Apis::DatastoreV1::ExecutionStats]
591
+ attr_accessor :execution_stats
592
+
593
+ # Planning phase information for the query.
594
+ # Corresponds to the JSON property `planSummary`
595
+ # @return [Google::Apis::DatastoreV1::PlanSummary]
596
+ attr_accessor :plan_summary
597
+
598
+ def initialize(**args)
599
+ update!(**args)
600
+ end
601
+
602
+ # Update properties of this object
603
+ def update!(**args)
604
+ @execution_stats = args[:execution_stats] if args.key?(:execution_stats)
605
+ @plan_summary = args[:plan_summary] if args.key?(:plan_summary)
606
+ end
607
+ end
608
+
542
609
  # Explain options for the query.
543
610
  class ExplainOptions
544
611
  include Google::Apis::Core::Hashable
@@ -1675,6 +1742,12 @@ module Google
1675
1742
  # @return [Array<Google::Apis::DatastoreV1::Key>]
1676
1743
  attr_accessor :keys
1677
1744
 
1745
+ # The set of arbitrarily nested property paths used to restrict an operation to
1746
+ # only a subset of properties in an entity.
1747
+ # Corresponds to the JSON property `propertyMask`
1748
+ # @return [Google::Apis::DatastoreV1::PropertyMask]
1749
+ attr_accessor :property_mask
1750
+
1678
1751
  # The options shared by read requests.
1679
1752
  # Corresponds to the JSON property `readOptions`
1680
1753
  # @return [Google::Apis::DatastoreV1::ReadOptions]
@@ -1688,6 +1761,7 @@ module Google
1688
1761
  def update!(**args)
1689
1762
  @database_id = args[:database_id] if args.key?(:database_id)
1690
1763
  @keys = args[:keys] if args.key?(:keys)
1764
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
1691
1765
  @read_options = args[:read_options] if args.key?(:read_options)
1692
1766
  end
1693
1767
  end
@@ -1765,6 +1839,12 @@ module Google
1765
1839
  # @return [Google::Apis::DatastoreV1::Entity]
1766
1840
  attr_accessor :insert
1767
1841
 
1842
+ # The set of arbitrarily nested property paths used to restrict an operation to
1843
+ # only a subset of properties in an entity.
1844
+ # Corresponds to the JSON property `propertyMask`
1845
+ # @return [Google::Apis::DatastoreV1::PropertyMask]
1846
+ attr_accessor :property_mask
1847
+
1768
1848
  # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
1769
1849
  # Corresponds to the JSON property `update`
1770
1850
  # @return [Google::Apis::DatastoreV1::Entity]
@@ -1790,6 +1870,7 @@ module Google
1790
1870
  @base_version = args[:base_version] if args.key?(:base_version)
1791
1871
  @delete = args[:delete] if args.key?(:delete)
1792
1872
  @insert = args[:insert] if args.key?(:insert)
1873
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
1793
1874
  @update = args[:update] if args.key?(:update)
1794
1875
  @update_time = args[:update_time] if args.key?(:update_time)
1795
1876
  @upsert = args[:upsert] if args.key?(:upsert)
@@ -1929,6 +2010,27 @@ module Google
1929
2010
  end
1930
2011
  end
1931
2012
 
2013
+ # Planning phase information for the query.
2014
+ class PlanSummary
2015
+ include Google::Apis::Core::Hashable
2016
+
2017
+ # The indexes selected for the query. For example: [ `"query_scope": "Collection"
2018
+ # , "properties": "(foo ASC, __name__ ASC)"`, `"query_scope": "Collection", "
2019
+ # properties": "(bar ASC, __name__ ASC)"` ]
2020
+ # Corresponds to the JSON property `indexesUsed`
2021
+ # @return [Array<Hash<String,Object>>]
2022
+ attr_accessor :indexes_used
2023
+
2024
+ def initialize(**args)
2025
+ update!(**args)
2026
+ end
2027
+
2028
+ # Update properties of this object
2029
+ def update!(**args)
2030
+ @indexes_used = args[:indexes_used] if args.key?(:indexes_used)
2031
+ end
2032
+ end
2033
+
1932
2034
  # A representation of a property in a projection.
1933
2035
  class Projection
1934
2036
  include Google::Apis::Core::Hashable
@@ -1980,6 +2082,31 @@ module Google
1980
2082
  end
1981
2083
  end
1982
2084
 
2085
+ # The set of arbitrarily nested property paths used to restrict an operation to
2086
+ # only a subset of properties in an entity.
2087
+ class PropertyMask
2088
+ include Google::Apis::Core::Hashable
2089
+
2090
+ # The paths to the properties covered by this mask. A path is a list of property
2091
+ # names separated by dots (`.`), for example `foo.bar` means the property `bar`
2092
+ # inside the entity property `foo` inside the entity associated with this path.
2093
+ # If a property name contains a dot `.` or a backslash `\`, then that name must
2094
+ # be escaped. A path must not be empty, and may not reference a value inside an
2095
+ # array value.
2096
+ # Corresponds to the JSON property `paths`
2097
+ # @return [Array<String>]
2098
+ attr_accessor :paths
2099
+
2100
+ def initialize(**args)
2101
+ update!(**args)
2102
+ end
2103
+
2104
+ # Update properties of this object
2105
+ def update!(**args)
2106
+ @paths = args[:paths] if args.key?(:paths)
2107
+ end
2108
+ end
2109
+
1983
2110
  # The desired order for a specific property.
1984
2111
  class PropertyOrder
1985
2112
  include Google::Apis::Core::Hashable
@@ -2415,6 +2542,11 @@ module Google
2415
2542
  # @return [Google::Apis::DatastoreV1::AggregationResultBatch]
2416
2543
  attr_accessor :batch
2417
2544
 
2545
+ # Explain metrics for the query.
2546
+ # Corresponds to the JSON property `explainMetrics`
2547
+ # @return [Google::Apis::DatastoreV1::ExplainMetrics]
2548
+ attr_accessor :explain_metrics
2549
+
2418
2550
  # Datastore query for running an aggregation over a Query.
2419
2551
  # Corresponds to the JSON property `query`
2420
2552
  # @return [Google::Apis::DatastoreV1::AggregationQuery]
@@ -2435,6 +2567,7 @@ module Google
2435
2567
  # Update properties of this object
2436
2568
  def update!(**args)
2437
2569
  @batch = args[:batch] if args.key?(:batch)
2570
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
2438
2571
  @query = args[:query] if args.key?(:query)
2439
2572
  @transaction = args[:transaction] if args.key?(:transaction)
2440
2573
  end
@@ -2474,6 +2607,12 @@ module Google
2474
2607
  # @return [Google::Apis::DatastoreV1::PartitionId]
2475
2608
  attr_accessor :partition_id
2476
2609
 
2610
+ # The set of arbitrarily nested property paths used to restrict an operation to
2611
+ # only a subset of properties in an entity.
2612
+ # Corresponds to the JSON property `propertyMask`
2613
+ # @return [Google::Apis::DatastoreV1::PropertyMask]
2614
+ attr_accessor :property_mask
2615
+
2477
2616
  # A query for entities.
2478
2617
  # Corresponds to the JSON property `query`
2479
2618
  # @return [Google::Apis::DatastoreV1::Query]
@@ -2494,6 +2633,7 @@ module Google
2494
2633
  @explain_options = args[:explain_options] if args.key?(:explain_options)
2495
2634
  @gql_query = args[:gql_query] if args.key?(:gql_query)
2496
2635
  @partition_id = args[:partition_id] if args.key?(:partition_id)
2636
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
2497
2637
  @query = args[:query] if args.key?(:query)
2498
2638
  @read_options = args[:read_options] if args.key?(:read_options)
2499
2639
  end
@@ -2508,6 +2648,11 @@ module Google
2508
2648
  # @return [Google::Apis::DatastoreV1::QueryResultBatch]
2509
2649
  attr_accessor :batch
2510
2650
 
2651
+ # Explain metrics for the query.
2652
+ # Corresponds to the JSON property `explainMetrics`
2653
+ # @return [Google::Apis::DatastoreV1::ExplainMetrics]
2654
+ attr_accessor :explain_metrics
2655
+
2511
2656
  # A query for entities.
2512
2657
  # Corresponds to the JSON property `query`
2513
2658
  # @return [Google::Apis::DatastoreV1::Query]
@@ -2528,6 +2673,7 @@ module Google
2528
2673
  # Update properties of this object
2529
2674
  def update!(**args)
2530
2675
  @batch = args[:batch] if args.key?(:batch)
2676
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
2531
2677
  @query = args[:query] if args.key?(:query)
2532
2678
  @transaction = args[:transaction] if args.key?(:transaction)
2533
2679
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastoreV1
18
18
  # Version of the google-apis-datastore_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240208"
25
+ REVISION = "20240317"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,18 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class ExecutionStats
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
133
+ class ExplainMetrics
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
127
139
  class ExplainOptions
128
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
141
 
@@ -352,6 +364,12 @@ module Google
352
364
  include Google::Apis::Core::JsonObjectSupport
353
365
  end
354
366
 
367
+ class PlanSummary
368
+ class Representation < Google::Apis::Core::JsonRepresentation; end
369
+
370
+ include Google::Apis::Core::JsonObjectSupport
371
+ end
372
+
355
373
  class Projection
356
374
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
375
 
@@ -364,6 +382,12 @@ module Google
364
382
  include Google::Apis::Core::JsonObjectSupport
365
383
  end
366
384
 
385
+ class PropertyMask
386
+ class Representation < Google::Apis::Core::JsonRepresentation; end
387
+
388
+ include Google::Apis::Core::JsonObjectSupport
389
+ end
390
+
367
391
  class PropertyOrder
368
392
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
393
 
@@ -635,6 +659,26 @@ module Google
635
659
  end
636
660
  end
637
661
 
662
+ class ExecutionStats
663
+ # @private
664
+ class Representation < Google::Apis::Core::JsonRepresentation
665
+ hash :debug_stats, as: 'debugStats'
666
+ property :execution_duration, as: 'executionDuration'
667
+ property :read_operations, :numeric_string => true, as: 'readOperations'
668
+ property :results_returned, :numeric_string => true, as: 'resultsReturned'
669
+ end
670
+ end
671
+
672
+ class ExplainMetrics
673
+ # @private
674
+ class Representation < Google::Apis::Core::JsonRepresentation
675
+ property :execution_stats, as: 'executionStats', class: Google::Apis::DatastoreV1::ExecutionStats, decorator: Google::Apis::DatastoreV1::ExecutionStats::Representation
676
+
677
+ property :plan_summary, as: 'planSummary', class: Google::Apis::DatastoreV1::PlanSummary, decorator: Google::Apis::DatastoreV1::PlanSummary::Representation
678
+
679
+ end
680
+ end
681
+
638
682
  class ExplainOptions
639
683
  # @private
640
684
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -954,6 +998,8 @@ module Google
954
998
  property :database_id, as: 'databaseId'
955
999
  collection :keys, as: 'keys', class: Google::Apis::DatastoreV1::Key, decorator: Google::Apis::DatastoreV1::Key::Representation
956
1000
 
1001
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
1002
+
957
1003
  property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1::ReadOptions, decorator: Google::Apis::DatastoreV1::ReadOptions::Representation
958
1004
 
959
1005
  end
@@ -981,6 +1027,8 @@ module Google
981
1027
 
982
1028
  property :insert, as: 'insert', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
983
1029
 
1030
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
1031
+
984
1032
  property :update, as: 'update', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
985
1033
 
986
1034
  property :update_time, as: 'updateTime'
@@ -1019,6 +1067,13 @@ module Google
1019
1067
  end
1020
1068
  end
1021
1069
 
1070
+ class PlanSummary
1071
+ # @private
1072
+ class Representation < Google::Apis::Core::JsonRepresentation
1073
+ collection :indexes_used, as: 'indexesUsed'
1074
+ end
1075
+ end
1076
+
1022
1077
  class Projection
1023
1078
  # @private
1024
1079
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1038,6 +1093,13 @@ module Google
1038
1093
  end
1039
1094
  end
1040
1095
 
1096
+ class PropertyMask
1097
+ # @private
1098
+ class Representation < Google::Apis::Core::JsonRepresentation
1099
+ collection :paths, as: 'paths'
1100
+ end
1101
+ end
1102
+
1041
1103
  class PropertyOrder
1042
1104
  # @private
1043
1105
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1165,6 +1227,8 @@ module Google
1165
1227
  class Representation < Google::Apis::Core::JsonRepresentation
1166
1228
  property :batch, as: 'batch', class: Google::Apis::DatastoreV1::AggregationResultBatch, decorator: Google::Apis::DatastoreV1::AggregationResultBatch::Representation
1167
1229
 
1230
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1::ExplainMetrics, decorator: Google::Apis::DatastoreV1::ExplainMetrics::Representation
1231
+
1168
1232
  property :query, as: 'query', class: Google::Apis::DatastoreV1::AggregationQuery, decorator: Google::Apis::DatastoreV1::AggregationQuery::Representation
1169
1233
 
1170
1234
  property :transaction, :base64 => true, as: 'transaction'
@@ -1181,6 +1245,8 @@ module Google
1181
1245
 
1182
1246
  property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1::PartitionId, decorator: Google::Apis::DatastoreV1::PartitionId::Representation
1183
1247
 
1248
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
1249
+
1184
1250
  property :query, as: 'query', class: Google::Apis::DatastoreV1::Query, decorator: Google::Apis::DatastoreV1::Query::Representation
1185
1251
 
1186
1252
  property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1::ReadOptions, decorator: Google::Apis::DatastoreV1::ReadOptions::Representation
@@ -1193,6 +1259,8 @@ module Google
1193
1259
  class Representation < Google::Apis::Core::JsonRepresentation
1194
1260
  property :batch, as: 'batch', class: Google::Apis::DatastoreV1::QueryResultBatch, decorator: Google::Apis::DatastoreV1::QueryResultBatch::Representation
1195
1261
 
1262
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1::ExplainMetrics, decorator: Google::Apis::DatastoreV1::ExplainMetrics::Representation
1263
+
1196
1264
  property :query, as: 'query', class: Google::Apis::DatastoreV1::Query, decorator: Google::Apis::DatastoreV1::Query::Representation
1197
1265
 
1198
1266
  property :transaction, :base64 => true, as: 'transaction'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.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-02-18 00:00:00.000000000 Z
11
+ date: 2024-03-24 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.12.0
19
+ version: 0.14.0
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.12.0
29
+ version: 0.14.0
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-datastore_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Datastore API V1