google-apis-datastore_v1beta3 0.31.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80a68b9a779c7753e6a5a9669ccbd9308e959554f1768593d190804cbeacb0a5
|
4
|
+
data.tar.gz: 2289e26e7a31bad715ae0c5ca9928f58d1327f4284a2ac78cb982df4792af06a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4008b5aa4e15cbc96ab1b5e6f8b71e5e6d14b5b5bf28a3693d0ec03e8613a73d60498b2c1df9a7860cdbe25fffc278a24d003807f8d3ef28a75cc95530820e73
|
7
|
+
data.tar.gz: 87c0634b4f8b13c023a0a265fdd2a1e97e2fa5aa216e1312e6d769831b357c126c6b7a1e374ae8d0e473f4f8f7df0abbdc16352975a38bc74fa8a43a21c9a82a
|
data/CHANGELOG.md
CHANGED
@@ -494,6 +494,96 @@ 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
|
+
|
564
|
+
# Explain options for the query.
|
565
|
+
class ExplainOptions
|
566
|
+
include Google::Apis::Core::Hashable
|
567
|
+
|
568
|
+
# Optional. Whether to execute this query. When false (the default), the query
|
569
|
+
# will be planned, returning only metrics from the planning stages. When true,
|
570
|
+
# the query will be planned and executed, returning the full query results along
|
571
|
+
# with both planning and execution stage metrics.
|
572
|
+
# Corresponds to the JSON property `analyze`
|
573
|
+
# @return [Boolean]
|
574
|
+
attr_accessor :analyze
|
575
|
+
alias_method :analyze?, :analyze
|
576
|
+
|
577
|
+
def initialize(**args)
|
578
|
+
update!(**args)
|
579
|
+
end
|
580
|
+
|
581
|
+
# Update properties of this object
|
582
|
+
def update!(**args)
|
583
|
+
@analyze = args[:analyze] if args.key?(:analyze)
|
584
|
+
end
|
585
|
+
end
|
586
|
+
|
497
587
|
# A holder for any type of filter.
|
498
588
|
class Filter
|
499
589
|
include Google::Apis::Core::Hashable
|
@@ -1317,6 +1407,12 @@ module Google
|
|
1317
1407
|
# @return [Array<Google::Apis::DatastoreV1beta3::Key>]
|
1318
1408
|
attr_accessor :keys
|
1319
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
|
+
|
1320
1416
|
# The options shared by read requests.
|
1321
1417
|
# Corresponds to the JSON property `readOptions`
|
1322
1418
|
# @return [Google::Apis::DatastoreV1beta3::ReadOptions]
|
@@ -1329,6 +1425,7 @@ module Google
|
|
1329
1425
|
# Update properties of this object
|
1330
1426
|
def update!(**args)
|
1331
1427
|
@keys = args[:keys] if args.key?(:keys)
|
1428
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
1332
1429
|
@read_options = args[:read_options] if args.key?(:read_options)
|
1333
1430
|
end
|
1334
1431
|
end
|
@@ -1397,6 +1494,12 @@ module Google
|
|
1397
1494
|
# @return [Google::Apis::DatastoreV1beta3::Entity]
|
1398
1495
|
attr_accessor :insert
|
1399
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
|
+
|
1400
1503
|
# A Datastore data object. Must not exceed 1 MiB - 4 bytes.
|
1401
1504
|
# Corresponds to the JSON property `update`
|
1402
1505
|
# @return [Google::Apis::DatastoreV1beta3::Entity]
|
@@ -1422,6 +1525,7 @@ module Google
|
|
1422
1525
|
@base_version = args[:base_version] if args.key?(:base_version)
|
1423
1526
|
@delete = args[:delete] if args.key?(:delete)
|
1424
1527
|
@insert = args[:insert] if args.key?(:insert)
|
1528
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
1425
1529
|
@update = args[:update] if args.key?(:update)
|
1426
1530
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1427
1531
|
@upsert = args[:upsert] if args.key?(:upsert)
|
@@ -1555,6 +1659,27 @@ module Google
|
|
1555
1659
|
end
|
1556
1660
|
end
|
1557
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
|
+
|
1558
1683
|
# A representation of a property in a projection.
|
1559
1684
|
class Projection
|
1560
1685
|
include Google::Apis::Core::Hashable
|
@@ -1606,6 +1731,31 @@ module Google
|
|
1606
1731
|
end
|
1607
1732
|
end
|
1608
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
|
+
|
1609
1759
|
# The desired order for a specific property.
|
1610
1760
|
class PropertyOrder
|
1611
1761
|
include Google::Apis::Core::Hashable
|
@@ -1967,6 +2117,11 @@ module Google
|
|
1967
2117
|
# @return [Google::Apis::DatastoreV1beta3::AggregationQuery]
|
1968
2118
|
attr_accessor :aggregation_query
|
1969
2119
|
|
2120
|
+
# Explain options for the query.
|
2121
|
+
# Corresponds to the JSON property `explainOptions`
|
2122
|
+
# @return [Google::Apis::DatastoreV1beta3::ExplainOptions]
|
2123
|
+
attr_accessor :explain_options
|
2124
|
+
|
1970
2125
|
# A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
|
1971
2126
|
# Corresponds to the JSON property `gqlQuery`
|
1972
2127
|
# @return [Google::Apis::DatastoreV1beta3::GqlQuery]
|
@@ -1998,6 +2153,7 @@ module Google
|
|
1998
2153
|
# Update properties of this object
|
1999
2154
|
def update!(**args)
|
2000
2155
|
@aggregation_query = args[:aggregation_query] if args.key?(:aggregation_query)
|
2156
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2001
2157
|
@gql_query = args[:gql_query] if args.key?(:gql_query)
|
2002
2158
|
@partition_id = args[:partition_id] if args.key?(:partition_id)
|
2003
2159
|
@read_options = args[:read_options] if args.key?(:read_options)
|
@@ -2013,6 +2169,11 @@ module Google
|
|
2013
2169
|
# @return [Google::Apis::DatastoreV1beta3::AggregationResultBatch]
|
2014
2170
|
attr_accessor :batch
|
2015
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
|
+
|
2016
2177
|
# Datastore query for running an aggregation over a Query.
|
2017
2178
|
# Corresponds to the JSON property `query`
|
2018
2179
|
# @return [Google::Apis::DatastoreV1beta3::AggregationQuery]
|
@@ -2025,6 +2186,7 @@ module Google
|
|
2025
2186
|
# Update properties of this object
|
2026
2187
|
def update!(**args)
|
2027
2188
|
@batch = args[:batch] if args.key?(:batch)
|
2189
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2028
2190
|
@query = args[:query] if args.key?(:query)
|
2029
2191
|
end
|
2030
2192
|
end
|
@@ -2033,6 +2195,11 @@ module Google
|
|
2033
2195
|
class RunQueryRequest
|
2034
2196
|
include Google::Apis::Core::Hashable
|
2035
2197
|
|
2198
|
+
# Explain options for the query.
|
2199
|
+
# Corresponds to the JSON property `explainOptions`
|
2200
|
+
# @return [Google::Apis::DatastoreV1beta3::ExplainOptions]
|
2201
|
+
attr_accessor :explain_options
|
2202
|
+
|
2036
2203
|
# A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
|
2037
2204
|
# Corresponds to the JSON property `gqlQuery`
|
2038
2205
|
# @return [Google::Apis::DatastoreV1beta3::GqlQuery]
|
@@ -2052,6 +2219,12 @@ module Google
|
|
2052
2219
|
# @return [Google::Apis::DatastoreV1beta3::PartitionId]
|
2053
2220
|
attr_accessor :partition_id
|
2054
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
|
+
|
2055
2228
|
# A query for entities.
|
2056
2229
|
# Corresponds to the JSON property `query`
|
2057
2230
|
# @return [Google::Apis::DatastoreV1beta3::Query]
|
@@ -2068,8 +2241,10 @@ module Google
|
|
2068
2241
|
|
2069
2242
|
# Update properties of this object
|
2070
2243
|
def update!(**args)
|
2244
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2071
2245
|
@gql_query = args[:gql_query] if args.key?(:gql_query)
|
2072
2246
|
@partition_id = args[:partition_id] if args.key?(:partition_id)
|
2247
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
2073
2248
|
@query = args[:query] if args.key?(:query)
|
2074
2249
|
@read_options = args[:read_options] if args.key?(:read_options)
|
2075
2250
|
end
|
@@ -2084,6 +2259,11 @@ module Google
|
|
2084
2259
|
# @return [Google::Apis::DatastoreV1beta3::QueryResultBatch]
|
2085
2260
|
attr_accessor :batch
|
2086
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
|
+
|
2087
2267
|
# A query for entities.
|
2088
2268
|
# Corresponds to the JSON property `query`
|
2089
2269
|
# @return [Google::Apis::DatastoreV1beta3::Query]
|
@@ -2096,6 +2276,7 @@ module Google
|
|
2096
2276
|
# Update properties of this object
|
2097
2277
|
def update!(**args)
|
2098
2278
|
@batch = args[:batch] if args.key?(:batch)
|
2279
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2099
2280
|
@query = args[:query] if args.key?(:query)
|
2100
2281
|
end
|
2101
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.
|
19
|
+
GEM_VERSION = "0.32.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 = "
|
25
|
+
REVISION = "20240317"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,6 +118,24 @@ 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
|
+
|
133
|
+
class ExplainOptions
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
121
139
|
class Filter
|
122
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
141
|
|
@@ -298,6 +316,12 @@ module Google
|
|
298
316
|
include Google::Apis::Core::JsonObjectSupport
|
299
317
|
end
|
300
318
|
|
319
|
+
class PlanSummary
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
301
325
|
class Projection
|
302
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
327
|
|
@@ -310,6 +334,12 @@ module Google
|
|
310
334
|
include Google::Apis::Core::JsonObjectSupport
|
311
335
|
end
|
312
336
|
|
337
|
+
class PropertyMask
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
313
343
|
class PropertyOrder
|
314
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
345
|
|
@@ -564,6 +594,33 @@ module Google
|
|
564
594
|
end
|
565
595
|
end
|
566
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
|
+
|
617
|
+
class ExplainOptions
|
618
|
+
# @private
|
619
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
620
|
+
property :analyze, as: 'analyze'
|
621
|
+
end
|
622
|
+
end
|
623
|
+
|
567
624
|
class Filter
|
568
625
|
# @private
|
569
626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -804,6 +861,8 @@ module Google
|
|
804
861
|
class Representation < Google::Apis::Core::JsonRepresentation
|
805
862
|
collection :keys, as: 'keys', class: Google::Apis::DatastoreV1beta3::Key, decorator: Google::Apis::DatastoreV1beta3::Key::Representation
|
806
863
|
|
864
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
|
865
|
+
|
807
866
|
property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1beta3::ReadOptions, decorator: Google::Apis::DatastoreV1beta3::ReadOptions::Representation
|
808
867
|
|
809
868
|
end
|
@@ -830,6 +889,8 @@ module Google
|
|
830
889
|
|
831
890
|
property :insert, as: 'insert', class: Google::Apis::DatastoreV1beta3::Entity, decorator: Google::Apis::DatastoreV1beta3::Entity::Representation
|
832
891
|
|
892
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
|
893
|
+
|
833
894
|
property :update, as: 'update', class: Google::Apis::DatastoreV1beta3::Entity, decorator: Google::Apis::DatastoreV1beta3::Entity::Representation
|
834
895
|
|
835
896
|
property :update_time, as: 'updateTime'
|
@@ -867,6 +928,13 @@ module Google
|
|
867
928
|
end
|
868
929
|
end
|
869
930
|
|
931
|
+
class PlanSummary
|
932
|
+
# @private
|
933
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
934
|
+
collection :indexes_used, as: 'indexesUsed'
|
935
|
+
end
|
936
|
+
end
|
937
|
+
|
870
938
|
class Projection
|
871
939
|
# @private
|
872
940
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -886,6 +954,13 @@ module Google
|
|
886
954
|
end
|
887
955
|
end
|
888
956
|
|
957
|
+
class PropertyMask
|
958
|
+
# @private
|
959
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
960
|
+
collection :paths, as: 'paths'
|
961
|
+
end
|
962
|
+
end
|
963
|
+
|
889
964
|
class PropertyOrder
|
890
965
|
# @private
|
891
966
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -993,6 +1068,8 @@ module Google
|
|
993
1068
|
class Representation < Google::Apis::Core::JsonRepresentation
|
994
1069
|
property :aggregation_query, as: 'aggregationQuery', class: Google::Apis::DatastoreV1beta3::AggregationQuery, decorator: Google::Apis::DatastoreV1beta3::AggregationQuery::Representation
|
995
1070
|
|
1071
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1beta3::ExplainOptions, decorator: Google::Apis::DatastoreV1beta3::ExplainOptions::Representation
|
1072
|
+
|
996
1073
|
property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1beta3::GqlQuery, decorator: Google::Apis::DatastoreV1beta3::GqlQuery::Representation
|
997
1074
|
|
998
1075
|
property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1beta3::PartitionId, decorator: Google::Apis::DatastoreV1beta3::PartitionId::Representation
|
@@ -1007,6 +1084,8 @@ module Google
|
|
1007
1084
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1008
1085
|
property :batch, as: 'batch', class: Google::Apis::DatastoreV1beta3::AggregationResultBatch, decorator: Google::Apis::DatastoreV1beta3::AggregationResultBatch::Representation
|
1009
1086
|
|
1087
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1beta3::ExplainMetrics, decorator: Google::Apis::DatastoreV1beta3::ExplainMetrics::Representation
|
1088
|
+
|
1010
1089
|
property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::AggregationQuery, decorator: Google::Apis::DatastoreV1beta3::AggregationQuery::Representation
|
1011
1090
|
|
1012
1091
|
end
|
@@ -1015,10 +1094,14 @@ module Google
|
|
1015
1094
|
class RunQueryRequest
|
1016
1095
|
# @private
|
1017
1096
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1097
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1beta3::ExplainOptions, decorator: Google::Apis::DatastoreV1beta3::ExplainOptions::Representation
|
1098
|
+
|
1018
1099
|
property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1beta3::GqlQuery, decorator: Google::Apis::DatastoreV1beta3::GqlQuery::Representation
|
1019
1100
|
|
1020
1101
|
property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1beta3::PartitionId, decorator: Google::Apis::DatastoreV1beta3::PartitionId::Representation
|
1021
1102
|
|
1103
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1beta3::PropertyMask, decorator: Google::Apis::DatastoreV1beta3::PropertyMask::Representation
|
1104
|
+
|
1022
1105
|
property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::Query, decorator: Google::Apis::DatastoreV1beta3::Query::Representation
|
1023
1106
|
|
1024
1107
|
property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1beta3::ReadOptions, decorator: Google::Apis::DatastoreV1beta3::ReadOptions::Representation
|
@@ -1031,6 +1114,8 @@ module Google
|
|
1031
1114
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1032
1115
|
property :batch, as: 'batch', class: Google::Apis::DatastoreV1beta3::QueryResultBatch, decorator: Google::Apis::DatastoreV1beta3::QueryResultBatch::Representation
|
1033
1116
|
|
1117
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1beta3::ExplainMetrics, decorator: Google::Apis::DatastoreV1beta3::ExplainMetrics::Representation
|
1118
|
+
|
1034
1119
|
property :query, as: 'query', class: Google::Apis::DatastoreV1beta3::Query, decorator: Google::Apis::DatastoreV1beta3::Query::Representation
|
1035
1120
|
|
1036
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.
|
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-
|
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
|
@@ -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.
|
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: []
|