google-apis-firestore_v1 0.91.0 → 0.92.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: e36f990c486cd2a63bfbd67eb0ed1b0f6e42b8d3ae12ba7f2930b13c49039652
|
|
4
|
+
data.tar.gz: 93ccdf495f46a96a196829c29f810067e3b12bad276b64b866fa88026d010f6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1def5d0f60ce94ccba5b592b0b40dc70080a71e8d32ccb12659c21ade94457fd65fa48e1585fa199ad4eef80ceb4263f7971aa4638a1128ab6e47dd8bcde604f
|
|
7
|
+
data.tar.gz: 725d9a1451a9b42a6e7cc02f26c19040e6e61cf0a456752fb228490b53ba13b5db93f73697232ec0d50317592ca0eb266543bc9ffc4e7ad0889499bd59e6e89b
|
data/CHANGELOG.md
CHANGED
|
@@ -2191,12 +2191,13 @@ module Google
|
|
|
2191
2191
|
attr_accessor :name
|
|
2192
2192
|
|
|
2193
2193
|
# The TTL (time-to-live) configuration for documents that have this `Field` set.
|
|
2194
|
-
#
|
|
2195
|
-
# document
|
|
2196
|
-
# timestamp value
|
|
2197
|
-
#
|
|
2198
|
-
#
|
|
2199
|
-
#
|
|
2194
|
+
# A timestamp stored in a TTL-enabled field will be used to determine the
|
|
2195
|
+
# expiration time of the document. The expiration time is the sum of the
|
|
2196
|
+
# timestamp value and the `expiration_offset`. For Enterprise edition databases,
|
|
2197
|
+
# the timestamp value may alternatively be stored in an array value in the TTL-
|
|
2198
|
+
# enabled field. An expiration time in the past indicates that the document is
|
|
2199
|
+
# eligible for immediate expiration. Using any other data type or leaving the
|
|
2200
|
+
# field absent will disable expiration for the individual document.
|
|
2200
2201
|
# Corresponds to the JSON property `ttlConfig`
|
|
2201
2202
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1TtlConfig]
|
|
2202
2203
|
attr_accessor :ttl_config
|
|
@@ -2467,6 +2468,11 @@ module Google
|
|
|
2467
2468
|
# @return [String]
|
|
2468
2469
|
attr_accessor :query_scope
|
|
2469
2470
|
|
|
2471
|
+
# Options for search indexes at the definition level.
|
|
2472
|
+
# Corresponds to the JSON property `searchIndexOptions`
|
|
2473
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchIndexOptions]
|
|
2474
|
+
attr_accessor :search_index_options
|
|
2475
|
+
|
|
2470
2476
|
# Optional. The number of shards for the index.
|
|
2471
2477
|
# Corresponds to the JSON property `shardCount`
|
|
2472
2478
|
# @return [Fixnum]
|
|
@@ -2496,6 +2502,7 @@ module Google
|
|
|
2496
2502
|
@multikey = args[:multikey] if args.key?(:multikey)
|
|
2497
2503
|
@name = args[:name] if args.key?(:name)
|
|
2498
2504
|
@query_scope = args[:query_scope] if args.key?(:query_scope)
|
|
2505
|
+
@search_index_options = args[:search_index_options] if args.key?(:search_index_options)
|
|
2499
2506
|
@shard_count = args[:shard_count] if args.key?(:shard_count)
|
|
2500
2507
|
@state = args[:state] if args.key?(:state)
|
|
2501
2508
|
@unique = args[:unique] if args.key?(:unique)
|
|
@@ -2597,6 +2604,11 @@ module Google
|
|
|
2597
2604
|
# @return [String]
|
|
2598
2605
|
attr_accessor :order
|
|
2599
2606
|
|
|
2607
|
+
# The configuration for how to index a field for search.
|
|
2608
|
+
# Corresponds to the JSON property `searchConfig`
|
|
2609
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchConfig]
|
|
2610
|
+
attr_accessor :search_config
|
|
2611
|
+
|
|
2600
2612
|
# The index configuration to support vector search operations
|
|
2601
2613
|
# Corresponds to the JSON property `vectorConfig`
|
|
2602
2614
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1VectorConfig]
|
|
@@ -2611,6 +2623,7 @@ module Google
|
|
|
2611
2623
|
@array_config = args[:array_config] if args.key?(:array_config)
|
|
2612
2624
|
@field_path = args[:field_path] if args.key?(:field_path)
|
|
2613
2625
|
@order = args[:order] if args.key?(:order)
|
|
2626
|
+
@search_config = args[:search_config] if args.key?(:search_config)
|
|
2614
2627
|
@vector_config = args[:vector_config] if args.key?(:vector_config)
|
|
2615
2628
|
end
|
|
2616
2629
|
end
|
|
@@ -3028,6 +3041,130 @@ module Google
|
|
|
3028
3041
|
end
|
|
3029
3042
|
end
|
|
3030
3043
|
|
|
3044
|
+
# The configuration for how to index a field for search.
|
|
3045
|
+
class GoogleFirestoreAdminV1SearchConfig
|
|
3046
|
+
include Google::Apis::Core::Hashable
|
|
3047
|
+
|
|
3048
|
+
# The specification for how to build a geo search index for a field.
|
|
3049
|
+
# Corresponds to the JSON property `geoSpec`
|
|
3050
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchGeoSpec]
|
|
3051
|
+
attr_accessor :geo_spec
|
|
3052
|
+
|
|
3053
|
+
# The specification for how to build a text search index for a field.
|
|
3054
|
+
# Corresponds to the JSON property `textSpec`
|
|
3055
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextSpec]
|
|
3056
|
+
attr_accessor :text_spec
|
|
3057
|
+
|
|
3058
|
+
def initialize(**args)
|
|
3059
|
+
update!(**args)
|
|
3060
|
+
end
|
|
3061
|
+
|
|
3062
|
+
# Update properties of this object
|
|
3063
|
+
def update!(**args)
|
|
3064
|
+
@geo_spec = args[:geo_spec] if args.key?(:geo_spec)
|
|
3065
|
+
@text_spec = args[:text_spec] if args.key?(:text_spec)
|
|
3066
|
+
end
|
|
3067
|
+
end
|
|
3068
|
+
|
|
3069
|
+
# The specification for how to build a geo search index for a field.
|
|
3070
|
+
class GoogleFirestoreAdminV1SearchGeoSpec
|
|
3071
|
+
include Google::Apis::Core::Hashable
|
|
3072
|
+
|
|
3073
|
+
# Optional. Disables geoJSON indexing for the field. By default, geoJSON points
|
|
3074
|
+
# are indexed.
|
|
3075
|
+
# Corresponds to the JSON property `geoJsonIndexingDisabled`
|
|
3076
|
+
# @return [Boolean]
|
|
3077
|
+
attr_accessor :geo_json_indexing_disabled
|
|
3078
|
+
alias_method :geo_json_indexing_disabled?, :geo_json_indexing_disabled
|
|
3079
|
+
|
|
3080
|
+
def initialize(**args)
|
|
3081
|
+
update!(**args)
|
|
3082
|
+
end
|
|
3083
|
+
|
|
3084
|
+
# Update properties of this object
|
|
3085
|
+
def update!(**args)
|
|
3086
|
+
@geo_json_indexing_disabled = args[:geo_json_indexing_disabled] if args.key?(:geo_json_indexing_disabled)
|
|
3087
|
+
end
|
|
3088
|
+
end
|
|
3089
|
+
|
|
3090
|
+
# Options for search indexes at the definition level.
|
|
3091
|
+
class GoogleFirestoreAdminV1SearchIndexOptions
|
|
3092
|
+
include Google::Apis::Core::Hashable
|
|
3093
|
+
|
|
3094
|
+
# Optional. The language to use for text search indexes. Used as the default
|
|
3095
|
+
# language if not overridden at the document level by specifying the `
|
|
3096
|
+
# text_language_override_field`. The language is specified as a BCP 47 language
|
|
3097
|
+
# code. For indexes with MONGODB_COMPATIBLE_API ApiScope: If unspecified, the
|
|
3098
|
+
# default language is English. For indexes with `ANY_API` ApiScope: If
|
|
3099
|
+
# unspecified, the default behavior is autodetect.
|
|
3100
|
+
# Corresponds to the JSON property `textLanguage`
|
|
3101
|
+
# @return [String]
|
|
3102
|
+
attr_accessor :text_language
|
|
3103
|
+
|
|
3104
|
+
# Optional. The field in the document that specifies which language to use for
|
|
3105
|
+
# that specific document. For indexes with MONGODB_COMPATIBLE_API ApiScope: if
|
|
3106
|
+
# unspecified, the language is taken from the "language" field if it exists or
|
|
3107
|
+
# from `text_language` if it does not.
|
|
3108
|
+
# Corresponds to the JSON property `textLanguageOverrideFieldPath`
|
|
3109
|
+
# @return [String]
|
|
3110
|
+
attr_accessor :text_language_override_field_path
|
|
3111
|
+
|
|
3112
|
+
def initialize(**args)
|
|
3113
|
+
update!(**args)
|
|
3114
|
+
end
|
|
3115
|
+
|
|
3116
|
+
# Update properties of this object
|
|
3117
|
+
def update!(**args)
|
|
3118
|
+
@text_language = args[:text_language] if args.key?(:text_language)
|
|
3119
|
+
@text_language_override_field_path = args[:text_language_override_field_path] if args.key?(:text_language_override_field_path)
|
|
3120
|
+
end
|
|
3121
|
+
end
|
|
3122
|
+
|
|
3123
|
+
# Specification of how the field should be indexed for search text indexes.
|
|
3124
|
+
class GoogleFirestoreAdminV1SearchTextIndexSpec
|
|
3125
|
+
include Google::Apis::Core::Hashable
|
|
3126
|
+
|
|
3127
|
+
# Required. How to index the text field value.
|
|
3128
|
+
# Corresponds to the JSON property `indexType`
|
|
3129
|
+
# @return [String]
|
|
3130
|
+
attr_accessor :index_type
|
|
3131
|
+
|
|
3132
|
+
# Required. How to match the text field value.
|
|
3133
|
+
# Corresponds to the JSON property `matchType`
|
|
3134
|
+
# @return [String]
|
|
3135
|
+
attr_accessor :match_type
|
|
3136
|
+
|
|
3137
|
+
def initialize(**args)
|
|
3138
|
+
update!(**args)
|
|
3139
|
+
end
|
|
3140
|
+
|
|
3141
|
+
# Update properties of this object
|
|
3142
|
+
def update!(**args)
|
|
3143
|
+
@index_type = args[:index_type] if args.key?(:index_type)
|
|
3144
|
+
@match_type = args[:match_type] if args.key?(:match_type)
|
|
3145
|
+
end
|
|
3146
|
+
end
|
|
3147
|
+
|
|
3148
|
+
# The specification for how to build a text search index for a field.
|
|
3149
|
+
class GoogleFirestoreAdminV1SearchTextSpec
|
|
3150
|
+
include Google::Apis::Core::Hashable
|
|
3151
|
+
|
|
3152
|
+
# Required. Specifications for how the field should be indexed. Repeated so that
|
|
3153
|
+
# the field can be indexed in multiple ways.
|
|
3154
|
+
# Corresponds to the JSON property `indexSpecs`
|
|
3155
|
+
# @return [Array<Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextIndexSpec>]
|
|
3156
|
+
attr_accessor :index_specs
|
|
3157
|
+
|
|
3158
|
+
def initialize(**args)
|
|
3159
|
+
update!(**args)
|
|
3160
|
+
end
|
|
3161
|
+
|
|
3162
|
+
# Update properties of this object
|
|
3163
|
+
def update!(**args)
|
|
3164
|
+
@index_specs = args[:index_specs] if args.key?(:index_specs)
|
|
3165
|
+
end
|
|
3166
|
+
end
|
|
3167
|
+
|
|
3031
3168
|
# The configuration options for using the same encryption method as the source.
|
|
3032
3169
|
class GoogleFirestoreAdminV1SourceEncryptionOptions
|
|
3033
3170
|
include Google::Apis::Core::Hashable
|
|
@@ -3101,15 +3238,25 @@ module Google
|
|
|
3101
3238
|
end
|
|
3102
3239
|
|
|
3103
3240
|
# The TTL (time-to-live) configuration for documents that have this `Field` set.
|
|
3104
|
-
#
|
|
3105
|
-
# document
|
|
3106
|
-
# timestamp value
|
|
3107
|
-
#
|
|
3108
|
-
#
|
|
3109
|
-
#
|
|
3241
|
+
# A timestamp stored in a TTL-enabled field will be used to determine the
|
|
3242
|
+
# expiration time of the document. The expiration time is the sum of the
|
|
3243
|
+
# timestamp value and the `expiration_offset`. For Enterprise edition databases,
|
|
3244
|
+
# the timestamp value may alternatively be stored in an array value in the TTL-
|
|
3245
|
+
# enabled field. An expiration time in the past indicates that the document is
|
|
3246
|
+
# eligible for immediate expiration. Using any other data type or leaving the
|
|
3247
|
+
# field absent will disable expiration for the individual document.
|
|
3110
3248
|
class GoogleFirestoreAdminV1TtlConfig
|
|
3111
3249
|
include Google::Apis::Core::Hashable
|
|
3112
3250
|
|
|
3251
|
+
# Optional. The offset, relative to the timestamp value from the TTL-enabled
|
|
3252
|
+
# field, used to determine the document's expiration time. `expiration_offset.
|
|
3253
|
+
# seconds` must be between 0 and 2,147,483,647 inclusive. Values more precise
|
|
3254
|
+
# than seconds are rejected. If unset, defaults to 0, in which case the
|
|
3255
|
+
# expiration time is the same as the timestamp value from the TTL-enabled field.
|
|
3256
|
+
# Corresponds to the JSON property `expirationOffset`
|
|
3257
|
+
# @return [String]
|
|
3258
|
+
attr_accessor :expiration_offset
|
|
3259
|
+
|
|
3113
3260
|
# Output only. The state of the TTL configuration.
|
|
3114
3261
|
# Corresponds to the JSON property `state`
|
|
3115
3262
|
# @return [String]
|
|
@@ -3121,6 +3268,7 @@ module Google
|
|
|
3121
3268
|
|
|
3122
3269
|
# Update properties of this object
|
|
3123
3270
|
def update!(**args)
|
|
3271
|
+
@expiration_offset = args[:expiration_offset] if args.key?(:expiration_offset)
|
|
3124
3272
|
@state = args[:state] if args.key?(:state)
|
|
3125
3273
|
end
|
|
3126
3274
|
end
|
|
@@ -3134,6 +3282,12 @@ module Google
|
|
|
3134
3282
|
# @return [String]
|
|
3135
3283
|
attr_accessor :change_type
|
|
3136
3284
|
|
|
3285
|
+
# The offset, relative to the timestamp value in the TTL-enabled field, used
|
|
3286
|
+
# determine the document's expiration time.
|
|
3287
|
+
# Corresponds to the JSON property `expirationOffset`
|
|
3288
|
+
# @return [String]
|
|
3289
|
+
attr_accessor :expiration_offset
|
|
3290
|
+
|
|
3137
3291
|
def initialize(**args)
|
|
3138
3292
|
update!(**args)
|
|
3139
3293
|
end
|
|
@@ -3141,6 +3295,7 @@ module Google
|
|
|
3141
3295
|
# Update properties of this object
|
|
3142
3296
|
def update!(**args)
|
|
3143
3297
|
@change_type = args[:change_type] if args.key?(:change_type)
|
|
3298
|
+
@expiration_offset = args[:expiration_offset] if args.key?(:expiration_offset)
|
|
3144
3299
|
end
|
|
3145
3300
|
end
|
|
3146
3301
|
|
|
@@ -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.92.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260405"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -514,6 +514,36 @@ module Google
|
|
|
514
514
|
include Google::Apis::Core::JsonObjectSupport
|
|
515
515
|
end
|
|
516
516
|
|
|
517
|
+
class GoogleFirestoreAdminV1SearchConfig
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
523
|
+
class GoogleFirestoreAdminV1SearchGeoSpec
|
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
525
|
+
|
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
527
|
+
end
|
|
528
|
+
|
|
529
|
+
class GoogleFirestoreAdminV1SearchIndexOptions
|
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
531
|
+
|
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
533
|
+
end
|
|
534
|
+
|
|
535
|
+
class GoogleFirestoreAdminV1SearchTextIndexSpec
|
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
537
|
+
|
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
539
|
+
end
|
|
540
|
+
|
|
541
|
+
class GoogleFirestoreAdminV1SearchTextSpec
|
|
542
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
543
|
+
|
|
544
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
545
|
+
end
|
|
546
|
+
|
|
517
547
|
class GoogleFirestoreAdminV1SourceEncryptionOptions
|
|
518
548
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
549
|
|
|
@@ -1476,6 +1506,8 @@ module Google
|
|
|
1476
1506
|
property :multikey, as: 'multikey'
|
|
1477
1507
|
property :name, as: 'name'
|
|
1478
1508
|
property :query_scope, as: 'queryScope'
|
|
1509
|
+
property :search_index_options, as: 'searchIndexOptions', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchIndexOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchIndexOptions::Representation
|
|
1510
|
+
|
|
1479
1511
|
property :shard_count, as: 'shardCount'
|
|
1480
1512
|
property :state, as: 'state'
|
|
1481
1513
|
property :unique, as: 'unique'
|
|
@@ -1508,6 +1540,8 @@ module Google
|
|
|
1508
1540
|
property :array_config, as: 'arrayConfig'
|
|
1509
1541
|
property :field_path, as: 'fieldPath'
|
|
1510
1542
|
property :order, as: 'order'
|
|
1543
|
+
property :search_config, as: 'searchConfig', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchConfig, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchConfig::Representation
|
|
1544
|
+
|
|
1511
1545
|
property :vector_config, as: 'vectorConfig', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1VectorConfig, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1VectorConfig::Representation
|
|
1512
1546
|
|
|
1513
1547
|
end
|
|
@@ -1639,6 +1673,47 @@ module Google
|
|
|
1639
1673
|
end
|
|
1640
1674
|
end
|
|
1641
1675
|
|
|
1676
|
+
class GoogleFirestoreAdminV1SearchConfig
|
|
1677
|
+
# @private
|
|
1678
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1679
|
+
property :geo_spec, as: 'geoSpec', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchGeoSpec, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchGeoSpec::Representation
|
|
1680
|
+
|
|
1681
|
+
property :text_spec, as: 'textSpec', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextSpec, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextSpec::Representation
|
|
1682
|
+
|
|
1683
|
+
end
|
|
1684
|
+
end
|
|
1685
|
+
|
|
1686
|
+
class GoogleFirestoreAdminV1SearchGeoSpec
|
|
1687
|
+
# @private
|
|
1688
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1689
|
+
property :geo_json_indexing_disabled, as: 'geoJsonIndexingDisabled'
|
|
1690
|
+
end
|
|
1691
|
+
end
|
|
1692
|
+
|
|
1693
|
+
class GoogleFirestoreAdminV1SearchIndexOptions
|
|
1694
|
+
# @private
|
|
1695
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1696
|
+
property :text_language, as: 'textLanguage'
|
|
1697
|
+
property :text_language_override_field_path, as: 'textLanguageOverrideFieldPath'
|
|
1698
|
+
end
|
|
1699
|
+
end
|
|
1700
|
+
|
|
1701
|
+
class GoogleFirestoreAdminV1SearchTextIndexSpec
|
|
1702
|
+
# @private
|
|
1703
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1704
|
+
property :index_type, as: 'indexType'
|
|
1705
|
+
property :match_type, as: 'matchType'
|
|
1706
|
+
end
|
|
1707
|
+
end
|
|
1708
|
+
|
|
1709
|
+
class GoogleFirestoreAdminV1SearchTextSpec
|
|
1710
|
+
# @private
|
|
1711
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1712
|
+
collection :index_specs, as: 'indexSpecs', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextIndexSpec, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextIndexSpec::Representation
|
|
1713
|
+
|
|
1714
|
+
end
|
|
1715
|
+
end
|
|
1716
|
+
|
|
1642
1717
|
class GoogleFirestoreAdminV1SourceEncryptionOptions
|
|
1643
1718
|
# @private
|
|
1644
1719
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1666,6 +1741,7 @@ module Google
|
|
|
1666
1741
|
class GoogleFirestoreAdminV1TtlConfig
|
|
1667
1742
|
# @private
|
|
1668
1743
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1744
|
+
property :expiration_offset, as: 'expirationOffset'
|
|
1669
1745
|
property :state, as: 'state'
|
|
1670
1746
|
end
|
|
1671
1747
|
end
|
|
@@ -1674,6 +1750,7 @@ module Google
|
|
|
1674
1750
|
# @private
|
|
1675
1751
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1676
1752
|
property :change_type, as: 'changeType'
|
|
1753
|
+
property :expiration_offset, as: 'expirationOffset'
|
|
1677
1754
|
end
|
|
1678
1755
|
end
|
|
1679
1756
|
|
|
@@ -2052,10 +2052,15 @@ module Google
|
|
|
2052
2052
|
end
|
|
2053
2053
|
|
|
2054
2054
|
# Lists information about the supported locations for this service. This method
|
|
2055
|
-
#
|
|
2056
|
-
#
|
|
2057
|
-
#
|
|
2058
|
-
#
|
|
2055
|
+
# lists locations based on the resource scope provided in the [
|
|
2056
|
+
# ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
|
|
2057
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
2058
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
2059
|
+
# method lists locations visible to that specific project. This includes public,
|
|
2060
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
2061
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
2062
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
2063
|
+
# request path based on the specific service implementation and version.
|
|
2059
2064
|
# @param [String] name
|
|
2060
2065
|
# The resource that owns the locations collection, if applicable.
|
|
2061
2066
|
# @param [Array<String>, String] extra_location_types
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.92.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.92.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|