google-apis-datastore_v1 0.36.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c07043cc9f904f59fb22d7ffcd7aaf45263282db0a248745da43eb9b7c7825b
|
4
|
+
data.tar.gz: cafd8e29e105379561e0e5d30d2871a945e41674a29bcfeb1b8b0d85142a8d86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b972004199f31fc1e51e0391083a9a733164d142887db6c6fd628c6c4ada8de475beacbb43876f20d625e3a5838567f464cfa60c8256c8e1ee319003eb1ce9e
|
7
|
+
data.tar.gz: 24889dd35b04a98256154d513277af5bf271dc553f3f70e011a146970b1ad5352e8cb444efd52ddb244680b1783eecb9f91662367d56bb5def175692d74d1a72
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
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
|
+
|
3
8
|
### v0.36.0 (2024-02-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240215
|
@@ -539,6 +539,96 @@ 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
|
+
|
609
|
+
# Explain options for the query.
|
610
|
+
class ExplainOptions
|
611
|
+
include Google::Apis::Core::Hashable
|
612
|
+
|
613
|
+
# Optional. Whether to execute this query. When false (the default), the query
|
614
|
+
# will be planned, returning only metrics from the planning stages. When true,
|
615
|
+
# the query will be planned and executed, returning the full query results along
|
616
|
+
# with both planning and execution stage metrics.
|
617
|
+
# Corresponds to the JSON property `analyze`
|
618
|
+
# @return [Boolean]
|
619
|
+
attr_accessor :analyze
|
620
|
+
alias_method :analyze?, :analyze
|
621
|
+
|
622
|
+
def initialize(**args)
|
623
|
+
update!(**args)
|
624
|
+
end
|
625
|
+
|
626
|
+
# Update properties of this object
|
627
|
+
def update!(**args)
|
628
|
+
@analyze = args[:analyze] if args.key?(:analyze)
|
629
|
+
end
|
630
|
+
end
|
631
|
+
|
542
632
|
# A holder for any type of filter.
|
543
633
|
class Filter
|
544
634
|
include Google::Apis::Core::Hashable
|
@@ -1652,6 +1742,12 @@ module Google
|
|
1652
1742
|
# @return [Array<Google::Apis::DatastoreV1::Key>]
|
1653
1743
|
attr_accessor :keys
|
1654
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
|
+
|
1655
1751
|
# The options shared by read requests.
|
1656
1752
|
# Corresponds to the JSON property `readOptions`
|
1657
1753
|
# @return [Google::Apis::DatastoreV1::ReadOptions]
|
@@ -1665,6 +1761,7 @@ module Google
|
|
1665
1761
|
def update!(**args)
|
1666
1762
|
@database_id = args[:database_id] if args.key?(:database_id)
|
1667
1763
|
@keys = args[:keys] if args.key?(:keys)
|
1764
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
1668
1765
|
@read_options = args[:read_options] if args.key?(:read_options)
|
1669
1766
|
end
|
1670
1767
|
end
|
@@ -1742,6 +1839,12 @@ module Google
|
|
1742
1839
|
# @return [Google::Apis::DatastoreV1::Entity]
|
1743
1840
|
attr_accessor :insert
|
1744
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
|
+
|
1745
1848
|
# A Datastore data object. Must not exceed 1 MiB - 4 bytes.
|
1746
1849
|
# Corresponds to the JSON property `update`
|
1747
1850
|
# @return [Google::Apis::DatastoreV1::Entity]
|
@@ -1767,6 +1870,7 @@ module Google
|
|
1767
1870
|
@base_version = args[:base_version] if args.key?(:base_version)
|
1768
1871
|
@delete = args[:delete] if args.key?(:delete)
|
1769
1872
|
@insert = args[:insert] if args.key?(:insert)
|
1873
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
1770
1874
|
@update = args[:update] if args.key?(:update)
|
1771
1875
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1772
1876
|
@upsert = args[:upsert] if args.key?(:upsert)
|
@@ -1906,6 +2010,27 @@ module Google
|
|
1906
2010
|
end
|
1907
2011
|
end
|
1908
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
|
+
|
1909
2034
|
# A representation of a property in a projection.
|
1910
2035
|
class Projection
|
1911
2036
|
include Google::Apis::Core::Hashable
|
@@ -1957,6 +2082,31 @@ module Google
|
|
1957
2082
|
end
|
1958
2083
|
end
|
1959
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
|
+
|
1960
2110
|
# The desired order for a specific property.
|
1961
2111
|
class PropertyOrder
|
1962
2112
|
include Google::Apis::Core::Hashable
|
@@ -2339,6 +2489,11 @@ module Google
|
|
2339
2489
|
# @return [String]
|
2340
2490
|
attr_accessor :database_id
|
2341
2491
|
|
2492
|
+
# Explain options for the query.
|
2493
|
+
# Corresponds to the JSON property `explainOptions`
|
2494
|
+
# @return [Google::Apis::DatastoreV1::ExplainOptions]
|
2495
|
+
attr_accessor :explain_options
|
2496
|
+
|
2342
2497
|
# A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
|
2343
2498
|
# Corresponds to the JSON property `gqlQuery`
|
2344
2499
|
# @return [Google::Apis::DatastoreV1::GqlQuery]
|
@@ -2371,6 +2526,7 @@ module Google
|
|
2371
2526
|
def update!(**args)
|
2372
2527
|
@aggregation_query = args[:aggregation_query] if args.key?(:aggregation_query)
|
2373
2528
|
@database_id = args[:database_id] if args.key?(:database_id)
|
2529
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2374
2530
|
@gql_query = args[:gql_query] if args.key?(:gql_query)
|
2375
2531
|
@partition_id = args[:partition_id] if args.key?(:partition_id)
|
2376
2532
|
@read_options = args[:read_options] if args.key?(:read_options)
|
@@ -2386,6 +2542,11 @@ module Google
|
|
2386
2542
|
# @return [Google::Apis::DatastoreV1::AggregationResultBatch]
|
2387
2543
|
attr_accessor :batch
|
2388
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
|
+
|
2389
2550
|
# Datastore query for running an aggregation over a Query.
|
2390
2551
|
# Corresponds to the JSON property `query`
|
2391
2552
|
# @return [Google::Apis::DatastoreV1::AggregationQuery]
|
@@ -2406,6 +2567,7 @@ module Google
|
|
2406
2567
|
# Update properties of this object
|
2407
2568
|
def update!(**args)
|
2408
2569
|
@batch = args[:batch] if args.key?(:batch)
|
2570
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2409
2571
|
@query = args[:query] if args.key?(:query)
|
2410
2572
|
@transaction = args[:transaction] if args.key?(:transaction)
|
2411
2573
|
end
|
@@ -2421,6 +2583,11 @@ module Google
|
|
2421
2583
|
# @return [String]
|
2422
2584
|
attr_accessor :database_id
|
2423
2585
|
|
2586
|
+
# Explain options for the query.
|
2587
|
+
# Corresponds to the JSON property `explainOptions`
|
2588
|
+
# @return [Google::Apis::DatastoreV1::ExplainOptions]
|
2589
|
+
attr_accessor :explain_options
|
2590
|
+
|
2424
2591
|
# A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
|
2425
2592
|
# Corresponds to the JSON property `gqlQuery`
|
2426
2593
|
# @return [Google::Apis::DatastoreV1::GqlQuery]
|
@@ -2440,6 +2607,12 @@ module Google
|
|
2440
2607
|
# @return [Google::Apis::DatastoreV1::PartitionId]
|
2441
2608
|
attr_accessor :partition_id
|
2442
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
|
+
|
2443
2616
|
# A query for entities.
|
2444
2617
|
# Corresponds to the JSON property `query`
|
2445
2618
|
# @return [Google::Apis::DatastoreV1::Query]
|
@@ -2457,8 +2630,10 @@ module Google
|
|
2457
2630
|
# Update properties of this object
|
2458
2631
|
def update!(**args)
|
2459
2632
|
@database_id = args[:database_id] if args.key?(:database_id)
|
2633
|
+
@explain_options = args[:explain_options] if args.key?(:explain_options)
|
2460
2634
|
@gql_query = args[:gql_query] if args.key?(:gql_query)
|
2461
2635
|
@partition_id = args[:partition_id] if args.key?(:partition_id)
|
2636
|
+
@property_mask = args[:property_mask] if args.key?(:property_mask)
|
2462
2637
|
@query = args[:query] if args.key?(:query)
|
2463
2638
|
@read_options = args[:read_options] if args.key?(:read_options)
|
2464
2639
|
end
|
@@ -2473,6 +2648,11 @@ module Google
|
|
2473
2648
|
# @return [Google::Apis::DatastoreV1::QueryResultBatch]
|
2474
2649
|
attr_accessor :batch
|
2475
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
|
+
|
2476
2656
|
# A query for entities.
|
2477
2657
|
# Corresponds to the JSON property `query`
|
2478
2658
|
# @return [Google::Apis::DatastoreV1::Query]
|
@@ -2493,6 +2673,7 @@ module Google
|
|
2493
2673
|
# Update properties of this object
|
2494
2674
|
def update!(**args)
|
2495
2675
|
@batch = args[:batch] if args.key?(:batch)
|
2676
|
+
@explain_metrics = args[:explain_metrics] if args.key?(:explain_metrics)
|
2496
2677
|
@query = args[:query] if args.key?(:query)
|
2497
2678
|
@transaction = args[:transaction] if args.key?(:transaction)
|
2498
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.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -124,6 +124,24 @@ 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
|
+
|
139
|
+
class ExplainOptions
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
127
145
|
class Filter
|
128
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
147
|
|
@@ -346,6 +364,12 @@ module Google
|
|
346
364
|
include Google::Apis::Core::JsonObjectSupport
|
347
365
|
end
|
348
366
|
|
367
|
+
class PlanSummary
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
349
373
|
class Projection
|
350
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
375
|
|
@@ -358,6 +382,12 @@ module Google
|
|
358
382
|
include Google::Apis::Core::JsonObjectSupport
|
359
383
|
end
|
360
384
|
|
385
|
+
class PropertyMask
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
361
391
|
class PropertyOrder
|
362
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
393
|
|
@@ -629,6 +659,33 @@ module Google
|
|
629
659
|
end
|
630
660
|
end
|
631
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
|
+
|
682
|
+
class ExplainOptions
|
683
|
+
# @private
|
684
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
685
|
+
property :analyze, as: 'analyze'
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
632
689
|
class Filter
|
633
690
|
# @private
|
634
691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -941,6 +998,8 @@ module Google
|
|
941
998
|
property :database_id, as: 'databaseId'
|
942
999
|
collection :keys, as: 'keys', class: Google::Apis::DatastoreV1::Key, decorator: Google::Apis::DatastoreV1::Key::Representation
|
943
1000
|
|
1001
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
|
1002
|
+
|
944
1003
|
property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1::ReadOptions, decorator: Google::Apis::DatastoreV1::ReadOptions::Representation
|
945
1004
|
|
946
1005
|
end
|
@@ -968,6 +1027,8 @@ module Google
|
|
968
1027
|
|
969
1028
|
property :insert, as: 'insert', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
|
970
1029
|
|
1030
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
|
1031
|
+
|
971
1032
|
property :update, as: 'update', class: Google::Apis::DatastoreV1::Entity, decorator: Google::Apis::DatastoreV1::Entity::Representation
|
972
1033
|
|
973
1034
|
property :update_time, as: 'updateTime'
|
@@ -1006,6 +1067,13 @@ module Google
|
|
1006
1067
|
end
|
1007
1068
|
end
|
1008
1069
|
|
1070
|
+
class PlanSummary
|
1071
|
+
# @private
|
1072
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1073
|
+
collection :indexes_used, as: 'indexesUsed'
|
1074
|
+
end
|
1075
|
+
end
|
1076
|
+
|
1009
1077
|
class Projection
|
1010
1078
|
# @private
|
1011
1079
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1025,6 +1093,13 @@ module Google
|
|
1025
1093
|
end
|
1026
1094
|
end
|
1027
1095
|
|
1096
|
+
class PropertyMask
|
1097
|
+
# @private
|
1098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1099
|
+
collection :paths, as: 'paths'
|
1100
|
+
end
|
1101
|
+
end
|
1102
|
+
|
1028
1103
|
class PropertyOrder
|
1029
1104
|
# @private
|
1030
1105
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1136,6 +1211,8 @@ module Google
|
|
1136
1211
|
property :aggregation_query, as: 'aggregationQuery', class: Google::Apis::DatastoreV1::AggregationQuery, decorator: Google::Apis::DatastoreV1::AggregationQuery::Representation
|
1137
1212
|
|
1138
1213
|
property :database_id, as: 'databaseId'
|
1214
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1::ExplainOptions, decorator: Google::Apis::DatastoreV1::ExplainOptions::Representation
|
1215
|
+
|
1139
1216
|
property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1::GqlQuery, decorator: Google::Apis::DatastoreV1::GqlQuery::Representation
|
1140
1217
|
|
1141
1218
|
property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1::PartitionId, decorator: Google::Apis::DatastoreV1::PartitionId::Representation
|
@@ -1150,6 +1227,8 @@ module Google
|
|
1150
1227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1151
1228
|
property :batch, as: 'batch', class: Google::Apis::DatastoreV1::AggregationResultBatch, decorator: Google::Apis::DatastoreV1::AggregationResultBatch::Representation
|
1152
1229
|
|
1230
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1::ExplainMetrics, decorator: Google::Apis::DatastoreV1::ExplainMetrics::Representation
|
1231
|
+
|
1153
1232
|
property :query, as: 'query', class: Google::Apis::DatastoreV1::AggregationQuery, decorator: Google::Apis::DatastoreV1::AggregationQuery::Representation
|
1154
1233
|
|
1155
1234
|
property :transaction, :base64 => true, as: 'transaction'
|
@@ -1160,10 +1239,14 @@ module Google
|
|
1160
1239
|
# @private
|
1161
1240
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1162
1241
|
property :database_id, as: 'databaseId'
|
1242
|
+
property :explain_options, as: 'explainOptions', class: Google::Apis::DatastoreV1::ExplainOptions, decorator: Google::Apis::DatastoreV1::ExplainOptions::Representation
|
1243
|
+
|
1163
1244
|
property :gql_query, as: 'gqlQuery', class: Google::Apis::DatastoreV1::GqlQuery, decorator: Google::Apis::DatastoreV1::GqlQuery::Representation
|
1164
1245
|
|
1165
1246
|
property :partition_id, as: 'partitionId', class: Google::Apis::DatastoreV1::PartitionId, decorator: Google::Apis::DatastoreV1::PartitionId::Representation
|
1166
1247
|
|
1248
|
+
property :property_mask, as: 'propertyMask', class: Google::Apis::DatastoreV1::PropertyMask, decorator: Google::Apis::DatastoreV1::PropertyMask::Representation
|
1249
|
+
|
1167
1250
|
property :query, as: 'query', class: Google::Apis::DatastoreV1::Query, decorator: Google::Apis::DatastoreV1::Query::Representation
|
1168
1251
|
|
1169
1252
|
property :read_options, as: 'readOptions', class: Google::Apis::DatastoreV1::ReadOptions, decorator: Google::Apis::DatastoreV1::ReadOptions::Representation
|
@@ -1176,6 +1259,8 @@ module Google
|
|
1176
1259
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1177
1260
|
property :batch, as: 'batch', class: Google::Apis::DatastoreV1::QueryResultBatch, decorator: Google::Apis::DatastoreV1::QueryResultBatch::Representation
|
1178
1261
|
|
1262
|
+
property :explain_metrics, as: 'explainMetrics', class: Google::Apis::DatastoreV1::ExplainMetrics, decorator: Google::Apis::DatastoreV1::ExplainMetrics::Representation
|
1263
|
+
|
1179
1264
|
property :query, as: 'query', class: Google::Apis::DatastoreV1::Query, decorator: Google::Apis::DatastoreV1::Query::Representation
|
1180
1265
|
|
1181
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.
|
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-
|
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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datastore_v1/v0.
|
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: []
|