google-apis-datastore_v1beta3 0.30.0 → 0.32.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: 17ba7afb2969373f122cf332d363e07470de955c1be0596a4f39c0a0bb67493d
4
- data.tar.gz: 4fa9a4af70b5e18abaa9f810fc11243eadb1646a74501a5935387a36eeb99b16
3
+ metadata.gz: 80a68b9a779c7753e6a5a9669ccbd9308e959554f1768593d190804cbeacb0a5
4
+ data.tar.gz: 2289e26e7a31bad715ae0c5ca9928f58d1327f4284a2ac78cb982df4792af06a
5
5
  SHA512:
6
- metadata.gz: 829becab9fce85cebb5b3b787db21a8287bb6b17efd293325be208b47737a78d6f6e38d825b751d41040a758ef24162292d5a9148b414832f96de9322a4907bd
7
- data.tar.gz: 5b8f2c8b0097c55bc8b6eee0426bd204e574f3587bfcae5df253501fe49c6fc7f57b98491c6968df2a56130a921d15452992056668adc4906fc8654d77d2e24e
6
+ metadata.gz: 4008b5aa4e15cbc96ab1b5e6f8b71e5e6d14b5b5bf28a3693d0ec03e8613a73d60498b2c1df9a7860cdbe25fffc278a24d003807f8d3ef28a75cc95530820e73
7
+ data.tar.gz: 87c0634b4f8b13c023a0a265fdd2a1e97e2fa5aa216e1312e6d769831b357c126c6b7a1e374ae8d0e473f4f8f7df0abbdc16352975a38bc74fa8a43a21c9a82a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-datastore_v1beta3
2
2
 
3
+ ### v0.32.0 (2024-03-24)
4
+
5
+ * Regenerated from discovery document revision 20240317
6
+
7
+ ### v0.31.0 (2024-02-23)
8
+
9
+ * Regenerated from discovery document revision 20240215
10
+ * Regenerated using generator version 0.14.0
11
+
3
12
  ### v0.30.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
 
@@ -494,6 +494,73 @@ module Google
494
494
  end
495
495
  end
496
496
 
497
+ # Execution statistics for the query.
498
+ class ExecutionStats
499
+ include Google::Apis::Core::Hashable
500
+
501
+ # Debugging statistics from the execution of the query. Note that the debugging
502
+ # stats are subject to change as Firestore evolves. It could include: ` "
503
+ # indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details"
504
+ # : ` "documents_billable": "20", "index_entries_billable": "1000", "
505
+ # min_query_cost": "0" ` `
506
+ # Corresponds to the JSON property `debugStats`
507
+ # @return [Hash<String,Object>]
508
+ attr_accessor :debug_stats
509
+
510
+ # Total time to execute the query in the backend.
511
+ # Corresponds to the JSON property `executionDuration`
512
+ # @return [String]
513
+ attr_accessor :execution_duration
514
+
515
+ # Total billable read operations.
516
+ # Corresponds to the JSON property `readOperations`
517
+ # @return [Fixnum]
518
+ attr_accessor :read_operations
519
+
520
+ # Total number of results returned, including documents, projections,
521
+ # aggregation results, keys.
522
+ # Corresponds to the JSON property `resultsReturned`
523
+ # @return [Fixnum]
524
+ attr_accessor :results_returned
525
+
526
+ def initialize(**args)
527
+ update!(**args)
528
+ end
529
+
530
+ # Update properties of this object
531
+ def update!(**args)
532
+ @debug_stats = args[:debug_stats] if args.key?(:debug_stats)
533
+ @execution_duration = args[:execution_duration] if args.key?(:execution_duration)
534
+ @read_operations = args[:read_operations] if args.key?(:read_operations)
535
+ @results_returned = args[:results_returned] if args.key?(:results_returned)
536
+ end
537
+ end
538
+
539
+ # Explain metrics for the query.
540
+ class ExplainMetrics
541
+ include Google::Apis::Core::Hashable
542
+
543
+ # Execution statistics for the query.
544
+ # Corresponds to the JSON property `executionStats`
545
+ # @return [Google::Apis::DatastoreV1beta3::ExecutionStats]
546
+ attr_accessor :execution_stats
547
+
548
+ # Planning phase information for the query.
549
+ # Corresponds to the JSON property `planSummary`
550
+ # @return [Google::Apis::DatastoreV1beta3::PlanSummary]
551
+ attr_accessor :plan_summary
552
+
553
+ def initialize(**args)
554
+ update!(**args)
555
+ end
556
+
557
+ # Update properties of this object
558
+ def update!(**args)
559
+ @execution_stats = args[:execution_stats] if args.key?(:execution_stats)
560
+ @plan_summary = args[:plan_summary] if args.key?(:plan_summary)
561
+ end
562
+ end
563
+
497
564
  # Explain options for the query.
498
565
  class ExplainOptions
499
566
  include Google::Apis::Core::Hashable
@@ -1340,6 +1407,12 @@ module Google
1340
1407
  # @return [Array<Google::Apis::DatastoreV1beta3::Key>]
1341
1408
  attr_accessor :keys
1342
1409
 
1410
+ # The set of arbitrarily nested property paths used to restrict an operation to
1411
+ # only a subset of properties in an entity.
1412
+ # Corresponds to the JSON property `propertyMask`
1413
+ # @return [Google::Apis::DatastoreV1beta3::PropertyMask]
1414
+ attr_accessor :property_mask
1415
+
1343
1416
  # The options shared by read requests.
1344
1417
  # Corresponds to the JSON property `readOptions`
1345
1418
  # @return [Google::Apis::DatastoreV1beta3::ReadOptions]
@@ -1352,6 +1425,7 @@ module Google
1352
1425
  # Update properties of this object
1353
1426
  def update!(**args)
1354
1427
  @keys = args[:keys] if args.key?(:keys)
1428
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
1355
1429
  @read_options = args[:read_options] if args.key?(:read_options)
1356
1430
  end
1357
1431
  end
@@ -1420,6 +1494,12 @@ module Google
1420
1494
  # @return [Google::Apis::DatastoreV1beta3::Entity]
1421
1495
  attr_accessor :insert
1422
1496
 
1497
+ # The set of arbitrarily nested property paths used to restrict an operation to
1498
+ # only a subset of properties in an entity.
1499
+ # Corresponds to the JSON property `propertyMask`
1500
+ # @return [Google::Apis::DatastoreV1beta3::PropertyMask]
1501
+ attr_accessor :property_mask
1502
+
1423
1503
  # A Datastore data object. Must not exceed 1 MiB - 4 bytes.
1424
1504
  # Corresponds to the JSON property `update`
1425
1505
  # @return [Google::Apis::DatastoreV1beta3::Entity]
@@ -1445,6 +1525,7 @@ module Google
1445
1525
  @base_version = args[:base_version] if args.key?(:base_version)
1446
1526
  @delete = args[:delete] if args.key?(:delete)
1447
1527
  @insert = args[:insert] if args.key?(:insert)
1528
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
1448
1529
  @update = args[:update] if args.key?(:update)
1449
1530
  @update_time = args[:update_time] if args.key?(:update_time)
1450
1531
  @upsert = args[:upsert] if args.key?(:upsert)
@@ -1578,6 +1659,27 @@ module Google
1578
1659
  end
1579
1660
  end
1580
1661
 
1662
+ # Planning phase information for the query.
1663
+ class PlanSummary
1664
+ include Google::Apis::Core::Hashable
1665
+
1666
+ # The indexes selected for the query. For example: [ `"query_scope": "Collection"
1667
+ # , "properties": "(foo ASC, __name__ ASC)"`, `"query_scope": "Collection", "
1668
+ # properties": "(bar ASC, __name__ ASC)"` ]
1669
+ # Corresponds to the JSON property `indexesUsed`
1670
+ # @return [Array<Hash<String,Object>>]
1671
+ attr_accessor :indexes_used
1672
+
1673
+ def initialize(**args)
1674
+ update!(**args)
1675
+ end
1676
+
1677
+ # Update properties of this object
1678
+ def update!(**args)
1679
+ @indexes_used = args[:indexes_used] if args.key?(:indexes_used)
1680
+ end
1681
+ end
1682
+
1581
1683
  # A representation of a property in a projection.
1582
1684
  class Projection
1583
1685
  include Google::Apis::Core::Hashable
@@ -1629,6 +1731,31 @@ module Google
1629
1731
  end
1630
1732
  end
1631
1733
 
1734
+ # The set of arbitrarily nested property paths used to restrict an operation to
1735
+ # only a subset of properties in an entity.
1736
+ class PropertyMask
1737
+ include Google::Apis::Core::Hashable
1738
+
1739
+ # The paths to the properties covered by this mask. A path is a list of property
1740
+ # names separated by dots (`.`), for example `foo.bar` means the property `bar`
1741
+ # inside the entity property `foo` inside the entity associated with this path.
1742
+ # If a property name contains a dot `.` or a backslash `\`, then that name must
1743
+ # be escaped. A path must not be empty, and may not reference a value inside an
1744
+ # array value.
1745
+ # Corresponds to the JSON property `paths`
1746
+ # @return [Array<String>]
1747
+ attr_accessor :paths
1748
+
1749
+ def initialize(**args)
1750
+ update!(**args)
1751
+ end
1752
+
1753
+ # Update properties of this object
1754
+ def update!(**args)
1755
+ @paths = args[:paths] if args.key?(:paths)
1756
+ end
1757
+ end
1758
+
1632
1759
  # The desired order for a specific property.
1633
1760
  class PropertyOrder
1634
1761
  include Google::Apis::Core::Hashable
@@ -2042,6 +2169,11 @@ module Google
2042
2169
  # @return [Google::Apis::DatastoreV1beta3::AggregationResultBatch]
2043
2170
  attr_accessor :batch
2044
2171
 
2172
+ # Explain metrics for the query.
2173
+ # Corresponds to the JSON property `explainMetrics`
2174
+ # @return [Google::Apis::DatastoreV1beta3::ExplainMetrics]
2175
+ attr_accessor :explain_metrics
2176
+
2045
2177
  # Datastore query for running an aggregation over a Query.
2046
2178
  # Corresponds to the JSON property `query`
2047
2179
  # @return [Google::Apis::DatastoreV1beta3::AggregationQuery]
@@ -2054,6 +2186,7 @@ module Google
2054
2186
  # Update properties of this object
2055
2187
  def update!(**args)
2056
2188
  @batch = args[:batch] if args.key?(:batch)
2189
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
2057
2190
  @query = args[:query] if args.key?(:query)
2058
2191
  end
2059
2192
  end
@@ -2086,6 +2219,12 @@ module Google
2086
2219
  # @return [Google::Apis::DatastoreV1beta3::PartitionId]
2087
2220
  attr_accessor :partition_id
2088
2221
 
2222
+ # The set of arbitrarily nested property paths used to restrict an operation to
2223
+ # only a subset of properties in an entity.
2224
+ # Corresponds to the JSON property `propertyMask`
2225
+ # @return [Google::Apis::DatastoreV1beta3::PropertyMask]
2226
+ attr_accessor :property_mask
2227
+
2089
2228
  # A query for entities.
2090
2229
  # Corresponds to the JSON property `query`
2091
2230
  # @return [Google::Apis::DatastoreV1beta3::Query]
@@ -2105,6 +2244,7 @@ module Google
2105
2244
  @explain_options = args[:explain_options] if args.key?(:explain_options)
2106
2245
  @gql_query = args[:gql_query] if args.key?(:gql_query)
2107
2246
  @partition_id = args[:partition_id] if args.key?(:partition_id)
2247
+ @property_mask = args[:property_mask] if args.key?(:property_mask)
2108
2248
  @query = args[:query] if args.key?(:query)
2109
2249
  @read_options = args[:read_options] if args.key?(:read_options)
2110
2250
  end
@@ -2119,6 +2259,11 @@ module Google
2119
2259
  # @return [Google::Apis::DatastoreV1beta3::QueryResultBatch]
2120
2260
  attr_accessor :batch
2121
2261
 
2262
+ # Explain metrics for the query.
2263
+ # Corresponds to the JSON property `explainMetrics`
2264
+ # @return [Google::Apis::DatastoreV1beta3::ExplainMetrics]
2265
+ attr_accessor :explain_metrics
2266
+
2122
2267
  # A query for entities.
2123
2268
  # Corresponds to the JSON property `query`
2124
2269
  # @return [Google::Apis::DatastoreV1beta3::Query]
@@ -2131,6 +2276,7 @@ module Google
2131
2276
  # Update properties of this object
2132
2277
  def update!(**args)
2133
2278
  @batch = args[:batch] if args.key?(:batch)
2279
+ @explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
2134
2280
  @query = args[:query] if args.key?(:query)
2135
2281
  end
2136
2282
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastoreV1beta3
18
18
  # Version of the google-apis-datastore_v1beta3 gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.32.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
@@ -118,6 +118,18 @@ module Google
118
118
  include Google::Apis::Core::JsonObjectSupport
119
119
  end
120
120
 
121
+ class ExecutionStats
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
127
+ class ExplainMetrics
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
121
133
  class ExplainOptions
122
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
123
135
 
@@ -304,6 +316,12 @@ module Google
304
316
  include Google::Apis::Core::JsonObjectSupport
305
317
  end
306
318
 
319
+ class PlanSummary
320
+ class Representation < Google::Apis::Core::JsonRepresentation; end
321
+
322
+ include Google::Apis::Core::JsonObjectSupport
323
+ end
324
+
307
325
  class Projection
308
326
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
327
 
@@ -316,6 +334,12 @@ module Google
316
334
  include Google::Apis::Core::JsonObjectSupport
317
335
  end
318
336
 
337
+ class PropertyMask
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
319
343
  class PropertyOrder
320
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
321
345
 
@@ -570,6 +594,26 @@ module Google
570
594
  end
571
595
  end
572
596
 
597
+ class ExecutionStats
598
+ # @private
599
+ class Representation < Google::Apis::Core::JsonRepresentation
600
+ hash :debug_stats, as: 'debugStats'
601
+ property :execution_duration, as: 'executionDuration'
602
+ property :read_operations, :numeric_string => true, as: 'readOperations'
603
+ property :results_returned, :numeric_string => true, as: 'resultsReturned'
604
+ end
605
+ end
606
+
607
+ class ExplainMetrics
608
+ # @private
609
+ class Representation < Google::Apis::Core::JsonRepresentation
610
+ property :execution_stats, as: 'executionStats', class: Google::Apis::DatastoreV1beta3::ExecutionStats, decorator: Google::Apis::DatastoreV1beta3::ExecutionStats::Representation
611
+
612
+ property :plan_summary, as: 'planSummary', class: Google::Apis::DatastoreV1beta3::PlanSummary, decorator: Google::Apis::DatastoreV1beta3::PlanSummary::Representation
613
+
614
+ end
615
+ end
616
+
573
617
  class ExplainOptions
574
618
  # @private
575
619
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -817,6 +861,8 @@ module Google
817
861
  class Representation < Google::Apis::Core::JsonRepresentation
818
862
  collection :keys, as: 'keys', class: Google::Apis::DatastoreV1beta3::Key, decorator: Google::Apis::DatastoreV1beta3::Key::Representation
819
863
 
864
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
865
+
820
866
  property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1beta3::ReadOptions, decorator: Google::Apis::DatastoreV1beta3::ReadOptions::Representation
821
867
 
822
868
  end
@@ -843,6 +889,8 @@ module Google
843
889
 
844
890
  property :insert, as: 'insert', class: Google::Apis::DatastoreV1beta3::Entity, decorator: Google::Apis::DatastoreV1beta3::Entity::Representation
845
891
 
892
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
893
+
846
894
  property :update, as: 'update', class: Google::Apis::DatastoreV1beta3::Entity, decorator: Google::Apis::DatastoreV1beta3::Entity::Representation
847
895
 
848
896
  property :update_time, as: 'updateTime'
@@ -880,6 +928,13 @@ module Google
880
928
  end
881
929
  end
882
930
 
931
+ class PlanSummary
932
+ # @private
933
+ class Representation < Google::Apis::Core::JsonRepresentation
934
+ collection :indexes_used, as: 'indexesUsed'
935
+ end
936
+ end
937
+
883
938
  class Projection
884
939
  # @private
885
940
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -899,6 +954,13 @@ module Google
899
954
  end
900
955
  end
901
956
 
957
+ class PropertyMask
958
+ # @private
959
+ class Representation < Google::Apis::Core::JsonRepresentation
960
+ collection :paths, as: 'paths'
961
+ end
962
+ end
963
+
902
964
  class PropertyOrder
903
965
  # @private
904
966
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1022,6 +1084,8 @@ module Google
1022
1084
  class Representation < Google::Apis::Core::JsonRepresentation
1023
1085
  property :batch, as: 'batch', class: Google::Apis::DatastoreV1beta3::AggregationResultBatch, decorator: Google::Apis::DatastoreV1beta3::AggregationResultBatch::Representation
1024
1086
 
1087
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1beta3::ExplainMetrics, decorator: Google::Apis::DatastoreV1beta3::ExplainMetrics::Representation
1088
+
1025
1089
  property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::AggregationQuery, decorator: Google::Apis::DatastoreV1beta3::AggregationQuery::Representation
1026
1090
 
1027
1091
  end
@@ -1036,6 +1100,8 @@ module Google
1036
1100
 
1037
1101
  property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1beta3::PartitionId, decorator: Google::Apis::DatastoreV1beta3::PartitionId::Representation
1038
1102
 
1103
+ property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
1104
+
1039
1105
  property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::Query, decorator: Google::Apis::DatastoreV1beta3::Query::Representation
1040
1106
 
1041
1107
  property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1beta3::ReadOptions, decorator: Google::Apis::DatastoreV1beta3::ReadOptions::Representation
@@ -1048,6 +1114,8 @@ module Google
1048
1114
  class Representation < Google::Apis::Core::JsonRepresentation
1049
1115
  property :batch, as: 'batch', class: Google::Apis::DatastoreV1beta3::QueryResultBatch, decorator: Google::Apis::DatastoreV1beta3::QueryResultBatch::Representation
1050
1116
 
1117
+ property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1beta3::ExplainMetrics, decorator: Google::Apis::DatastoreV1beta3::ExplainMetrics::Representation
1118
+
1051
1119
  property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::Query, decorator: Google::Apis::DatastoreV1beta3::Query::Representation
1052
1120
 
1053
1121
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastore_v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.32.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_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1beta3/v0.32.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastore_v1beta3
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 V1beta3