google-apis-firestore_v1 0.57.0 → 0.58.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: b0beae9ba07ac9d58436be97ef38c7b3a018ce45066c2092e6b55b0f2a03611e
|
4
|
+
data.tar.gz: a986a656df5269e66f6cdedd427dbf43040720431ef1fc60a39f595a74a9f671
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6b507be378adda4c22bc4f218ab1f37501e52ea67dac5552fe6182d3cebc097831d76b8a7170cdda67905a3dbfafc3e73b80ece90627e9b5d3e5e8104836e16
|
7
|
+
data.tar.gz: fd838f5219c50c0dd0b36c1324f51147eb55eb9e35ac485da45f215739c2e6216bbf07414a71a4a1cc32b0860fc86107d0f1c8e6614f645c8d818d17749de2a3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
+
### v0.58.0 (2024-02-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240131
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.57.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240117
|
@@ -2876,27 +2876,6 @@ module Google
|
|
2876
2876
|
end
|
2877
2877
|
end
|
2878
2878
|
|
2879
|
-
# Plan for the query.
|
2880
|
-
class QueryPlan
|
2881
|
-
include Google::Apis::Core::Hashable
|
2882
|
-
|
2883
|
-
# Planning phase information for the query. It will include: ` "indexes_used": [
|
2884
|
-
# `"query_scope": "Collection", "properties": "(foo ASC, __name__ ASC)"`, `"
|
2885
|
-
# query_scope": "Collection", "properties": "(bar ASC, __name__ ASC)"` ] `
|
2886
|
-
# Corresponds to the JSON property `planInfo`
|
2887
|
-
# @return [Hash<String,Object>]
|
2888
|
-
attr_accessor :plan_info
|
2889
|
-
|
2890
|
-
def initialize(**args)
|
2891
|
-
update!(**args)
|
2892
|
-
end
|
2893
|
-
|
2894
|
-
# Update properties of this object
|
2895
|
-
def update!(**args)
|
2896
|
-
@plan_info = args[:plan_info] if args.key?(:plan_info)
|
2897
|
-
end
|
2898
|
-
end
|
2899
|
-
|
2900
2879
|
# A target specified by a query.
|
2901
2880
|
class QueryTarget
|
2902
2881
|
include Google::Apis::Core::Hashable
|
@@ -2970,35 +2949,6 @@ module Google
|
|
2970
2949
|
end
|
2971
2950
|
end
|
2972
2951
|
|
2973
|
-
# Planning and execution statistics for the query.
|
2974
|
-
class ResultSetStats
|
2975
|
-
include Google::Apis::Core::Hashable
|
2976
|
-
|
2977
|
-
# Plan for the query.
|
2978
|
-
# Corresponds to the JSON property `queryPlan`
|
2979
|
-
# @return [Google::Apis::FirestoreV1::QueryPlan]
|
2980
|
-
attr_accessor :query_plan
|
2981
|
-
|
2982
|
-
# Aggregated statistics from the execution of the query. This will only be
|
2983
|
-
# present when the request specifies `PROFILE` mode. For example, a query will
|
2984
|
-
# return the statistics including: ` "results_returned": "20", "
|
2985
|
-
# documents_scanned": "20", "indexes_entries_scanned": "10050", "
|
2986
|
-
# total_execution_time": "100.7 msecs" `
|
2987
|
-
# Corresponds to the JSON property `queryStats`
|
2988
|
-
# @return [Hash<String,Object>]
|
2989
|
-
attr_accessor :query_stats
|
2990
|
-
|
2991
|
-
def initialize(**args)
|
2992
|
-
update!(**args)
|
2993
|
-
end
|
2994
|
-
|
2995
|
-
# Update properties of this object
|
2996
|
-
def update!(**args)
|
2997
|
-
@query_plan = args[:query_plan] if args.key?(:query_plan)
|
2998
|
-
@query_stats = args[:query_stats] if args.key?(:query_stats)
|
2999
|
-
end
|
3000
|
-
end
|
3001
|
-
|
3002
2952
|
# The request for Firestore.Rollback.
|
3003
2953
|
class RollbackRequest
|
3004
2954
|
include Google::Apis::Core::Hashable
|
@@ -3023,13 +2973,6 @@ module Google
|
|
3023
2973
|
class RunAggregationQueryRequest
|
3024
2974
|
include Google::Apis::Core::Hashable
|
3025
2975
|
|
3026
|
-
# Optional. The mode in which the query request is processed. This field is
|
3027
|
-
# optional, and when not provided, it defaults to `NORMAL` mode where no
|
3028
|
-
# additional statistics will be returned with the query results.
|
3029
|
-
# Corresponds to the JSON property `mode`
|
3030
|
-
# @return [String]
|
3031
|
-
attr_accessor :mode
|
3032
|
-
|
3033
2976
|
# Options for creating a new transaction.
|
3034
2977
|
# Corresponds to the JSON property `newTransaction`
|
3035
2978
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
@@ -3060,7 +3003,6 @@ module Google
|
|
3060
3003
|
|
3061
3004
|
# Update properties of this object
|
3062
3005
|
def update!(**args)
|
3063
|
-
@mode = args[:mode] if args.key?(:mode)
|
3064
3006
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
3065
3007
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3066
3008
|
@structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
|
@@ -3088,11 +3030,6 @@ module Google
|
|
3088
3030
|
# @return [Google::Apis::FirestoreV1::AggregationResult]
|
3089
3031
|
attr_accessor :result
|
3090
3032
|
|
3091
|
-
# Planning and execution statistics for the query.
|
3092
|
-
# Corresponds to the JSON property `stats`
|
3093
|
-
# @return [Google::Apis::FirestoreV1::ResultSetStats]
|
3094
|
-
attr_accessor :stats
|
3095
|
-
|
3096
3033
|
# The transaction that was started as part of this request. Only present on the
|
3097
3034
|
# first response when the request requested to start a new transaction.
|
3098
3035
|
# Corresponds to the JSON property `transaction`
|
@@ -3108,7 +3045,6 @@ module Google
|
|
3108
3045
|
def update!(**args)
|
3109
3046
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3110
3047
|
@result = args[:result] if args.key?(:result)
|
3111
|
-
@stats = args[:stats] if args.key?(:stats)
|
3112
3048
|
@transaction = args[:transaction] if args.key?(:transaction)
|
3113
3049
|
end
|
3114
3050
|
end
|
@@ -3117,13 +3053,6 @@ module Google
|
|
3117
3053
|
class RunQueryRequest
|
3118
3054
|
include Google::Apis::Core::Hashable
|
3119
3055
|
|
3120
|
-
# Optional. The mode in which the query request is processed. This field is
|
3121
|
-
# optional, and when not provided, it defaults to `NORMAL` mode where no
|
3122
|
-
# additional statistics will be returned with the query results.
|
3123
|
-
# Corresponds to the JSON property `mode`
|
3124
|
-
# @return [String]
|
3125
|
-
attr_accessor :mode
|
3126
|
-
|
3127
3056
|
# Options for creating a new transaction.
|
3128
3057
|
# Corresponds to the JSON property `newTransaction`
|
3129
3058
|
# @return [Google::Apis::FirestoreV1::TransactionOptions]
|
@@ -3155,7 +3084,6 @@ module Google
|
|
3155
3084
|
|
3156
3085
|
# Update properties of this object
|
3157
3086
|
def update!(**args)
|
3158
|
-
@mode = args[:mode] if args.key?(:mode)
|
3159
3087
|
@new_transaction = args[:new_transaction] if args.key?(:new_transaction)
|
3160
3088
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3161
3089
|
@structured_query = args[:structured_query] if args.key?(:structured_query)
|
@@ -3194,11 +3122,6 @@ module Google
|
|
3194
3122
|
# @return [Fixnum]
|
3195
3123
|
attr_accessor :skipped_results
|
3196
3124
|
|
3197
|
-
# Planning and execution statistics for the query.
|
3198
|
-
# Corresponds to the JSON property `stats`
|
3199
|
-
# @return [Google::Apis::FirestoreV1::ResultSetStats]
|
3200
|
-
attr_accessor :stats
|
3201
|
-
|
3202
3125
|
# The transaction that was started as part of this request. Can only be set in
|
3203
3126
|
# the first response, and only if RunQueryRequest.new_transaction was set in the
|
3204
3127
|
# request. If set, no other fields will be set in this response.
|
@@ -3217,7 +3140,6 @@ module Google
|
|
3217
3140
|
@done = args[:done] if args.key?(:done)
|
3218
3141
|
@read_time = args[:read_time] if args.key?(:read_time)
|
3219
3142
|
@skipped_results = args[:skipped_results] if args.key?(:skipped_results)
|
3220
|
-
@stats = args[:stats] if args.key?(:stats)
|
3221
3143
|
@transaction = args[:transaction] if args.key?(:transaction)
|
3222
3144
|
end
|
3223
3145
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirestoreV1
|
18
18
|
# Version of the google-apis-firestore_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240131"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -520,12 +520,6 @@ module Google
|
|
520
520
|
include Google::Apis::Core::JsonObjectSupport
|
521
521
|
end
|
522
522
|
|
523
|
-
class QueryPlan
|
524
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
-
|
526
|
-
include Google::Apis::Core::JsonObjectSupport
|
527
|
-
end
|
528
|
-
|
529
523
|
class QueryTarget
|
530
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
525
|
|
@@ -544,12 +538,6 @@ module Google
|
|
544
538
|
include Google::Apis::Core::JsonObjectSupport
|
545
539
|
end
|
546
540
|
|
547
|
-
class ResultSetStats
|
548
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
|
-
|
550
|
-
include Google::Apis::Core::JsonObjectSupport
|
551
|
-
end
|
552
|
-
|
553
541
|
class RollbackRequest
|
554
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
555
543
|
|
@@ -1459,13 +1447,6 @@ module Google
|
|
1459
1447
|
end
|
1460
1448
|
end
|
1461
1449
|
|
1462
|
-
class QueryPlan
|
1463
|
-
# @private
|
1464
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1465
|
-
hash :plan_info, as: 'planInfo'
|
1466
|
-
end
|
1467
|
-
end
|
1468
|
-
|
1469
1450
|
class QueryTarget
|
1470
1451
|
# @private
|
1471
1452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1489,15 +1470,6 @@ module Google
|
|
1489
1470
|
end
|
1490
1471
|
end
|
1491
1472
|
|
1492
|
-
class ResultSetStats
|
1493
|
-
# @private
|
1494
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1495
|
-
property :query_plan, as: 'queryPlan', class: Google::Apis::FirestoreV1::QueryPlan, decorator: Google::Apis::FirestoreV1::QueryPlan::Representation
|
1496
|
-
|
1497
|
-
hash :query_stats, as: 'queryStats'
|
1498
|
-
end
|
1499
|
-
end
|
1500
|
-
|
1501
1473
|
class RollbackRequest
|
1502
1474
|
# @private
|
1503
1475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1508,7 +1480,6 @@ module Google
|
|
1508
1480
|
class RunAggregationQueryRequest
|
1509
1481
|
# @private
|
1510
1482
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1511
|
-
property :mode, as: 'mode'
|
1512
1483
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
|
1513
1484
|
|
1514
1485
|
property :read_time, as: 'readTime'
|
@@ -1524,8 +1495,6 @@ module Google
|
|
1524
1495
|
property :read_time, as: 'readTime'
|
1525
1496
|
property :result, as: 'result', class: Google::Apis::FirestoreV1::AggregationResult, decorator: Google::Apis::FirestoreV1::AggregationResult::Representation
|
1526
1497
|
|
1527
|
-
property :stats, as: 'stats', class: Google::Apis::FirestoreV1::ResultSetStats, decorator: Google::Apis::FirestoreV1::ResultSetStats::Representation
|
1528
|
-
|
1529
1498
|
property :transaction, :base64 => true, as: 'transaction'
|
1530
1499
|
end
|
1531
1500
|
end
|
@@ -1533,7 +1502,6 @@ module Google
|
|
1533
1502
|
class RunQueryRequest
|
1534
1503
|
# @private
|
1535
1504
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1536
|
-
property :mode, as: 'mode'
|
1537
1505
|
property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
|
1538
1506
|
|
1539
1507
|
property :read_time, as: 'readTime'
|
@@ -1551,8 +1519,6 @@ module Google
|
|
1551
1519
|
property :done, as: 'done'
|
1552
1520
|
property :read_time, as: 'readTime'
|
1553
1521
|
property :skipped_results, as: 'skippedResults'
|
1554
|
-
property :stats, as: 'stats', class: Google::Apis::FirestoreV1::ResultSetStats, decorator: Google::Apis::FirestoreV1::ResultSetStats::Representation
|
1555
|
-
|
1556
1522
|
property :transaction, :base64 => true, as: 'transaction'
|
1557
1523
|
end
|
1558
1524
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.58.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|