google-apis-firestore_v1 0.90.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: e2eaddcade267ac8be66501aa1459965bd1bfa8dc40c8517af8561c75acb0c68
4
- data.tar.gz: 8c9c614351a03357c2c5045b5d34e70c9ab4a42deebd59ad365a6468ac5fff52
3
+ metadata.gz: e36f990c486cd2a63bfbd67eb0ed1b0f6e42b8d3ae12ba7f2930b13c49039652
4
+ data.tar.gz: 93ccdf495f46a96a196829c29f810067e3b12bad276b64b866fa88026d010f6f
5
5
  SHA512:
6
- metadata.gz: 4f3ea1773af11a7913552327cf3fb2701a7440b95501caf50d6aa147709594fb3842ef4592c6caecb66a8d17e63fb076641306e6a4e8e8839e2c65417f28b3da
7
- data.tar.gz: 93e65c9aaf93490c96dd1227fa3687eeb5828e342f36ac3f55fe8585b6075a0b4df43db26ebce666472920a36bed1c912e5fcd5d946bc827dd4fb98c82425980
6
+ metadata.gz: 1def5d0f60ce94ccba5b592b0b40dc70080a71e8d32ccb12659c21ade94457fd65fa48e1585fa199ad4eef80ceb4263f7971aa4638a1128ab6e47dd8bcde604f
7
+ data.tar.gz: 725d9a1451a9b42a6e7cc02f26c19040e6e61cf0a456752fb228490b53ba13b5db93f73697232ec0d50317592ca0eb266543bc9ffc4e7ad0889499bd59e6e89b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.92.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260405
6
+
7
+ ### v0.91.0 (2026-03-08)
8
+
9
+ * Regenerated from discovery document revision 20260304
10
+
3
11
  ### v0.90.0 (2026-02-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20260212
@@ -1834,8 +1834,8 @@ module Google
1834
1834
  # @return [String]
1835
1835
  attr_accessor :key_prefix
1836
1836
 
1837
- # The location of the database. Available locations are listed at https://cloud.
1838
- # google.com/firestore/docs/locations.
1837
+ # Required. The location of the database. Available locations are listed at
1838
+ # https://cloud.google.com/firestore/docs/locations.
1839
1839
  # Corresponds to the JSON property `locationId`
1840
1840
  # @return [String]
1841
1841
  attr_accessor :location_id
@@ -1882,8 +1882,8 @@ module Google
1882
1882
  # @return [Hash<String,String>]
1883
1883
  attr_accessor :tags
1884
1884
 
1885
- # The type of the database. See https://cloud.google.com/datastore/docs/
1886
- # firestore-or-datastore for information about how to choose.
1885
+ # Required. The type of the database. See https://cloud.google.com/datastore/
1886
+ # docs/firestore-or-datastore for information about how to choose.
1887
1887
  # Corresponds to the JSON property `type`
1888
1888
  # @return [String]
1889
1889
  attr_accessor :type
@@ -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
- # Storing a timestamp value into a TTL-enabled field will be treated as the
2195
- # document's absolute expiration time. For Enterprise edition databases, the
2196
- # timestamp value may also be stored in an array value in the TTL-enabled field.
2197
- # Timestamp values in the past indicate that the document is eligible for
2198
- # immediate expiration. Using any other data type or leaving the field absent
2199
- # will disable expiration for the individual document.
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
- # Storing a timestamp value into a TTL-enabled field will be treated as the
3105
- # document's absolute expiration time. For Enterprise edition databases, the
3106
- # timestamp value may also be stored in an array value in the TTL-enabled field.
3107
- # Timestamp values in the past indicate that the document is eligible for
3108
- # immediate expiration. Using any other data type or leaving the field absent
3109
- # will disable expiration for the individual document.
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
 
@@ -4334,19 +4489,25 @@ module Google
4334
4489
  # @return [Fixnum]
4335
4490
  attr_accessor :offset
4336
4491
 
4337
- # The order to apply to the query results. Firestore allows callers to provide a
4338
- # full ordering, a partial ordering, or no ordering at all. In all cases,
4339
- # Firestore guarantees a stable ordering through the following rules: * The `
4340
- # order_by` is required to reference all fields used with an inequality filter. *
4341
- # All fields that are required to be in the `order_by` but are not already
4342
- # present are appended in lexicographical ordering of the field name. * If an
4343
- # order on `__name__` is not specified, it is appended by default. Fields are
4344
- # appended with the same sort direction as the last order specified, or '
4345
- # ASCENDING' if no order was specified. For example: * `ORDER BY a` becomes `
4346
- # ORDER BY a ASC, __name__ ASC` * `ORDER BY a DESC` becomes `ORDER BY a DESC,
4347
- # __name__ DESC` * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__
4348
- # ASC` * `WHERE __name__ > ... AND a > 1` becomes `WHERE __name__ > ... AND a >
4349
- # 1 ORDER BY a ASC, __name__ ASC`
4492
+ # The order to apply to the query results. Callers can provide a full ordering,
4493
+ # a partial ordering, or no ordering at all. While Firestore will always respect
4494
+ # the provided order, the behavior for queries without a full ordering is
4495
+ # different per database edition: In Standard edition, Firestore guarantees a
4496
+ # stable ordering through the following rules: * The `order_by` is required to
4497
+ # reference all fields used with an inequality filter. * All fields that are
4498
+ # required to be in the `order_by` but are not already present are appended in
4499
+ # lexicographical ordering of the field name. * If an order on `__name__` is not
4500
+ # specified, it is appended by default. Fields are appended with the same sort
4501
+ # direction as the last order specified, or 'ASCENDING' if no order was
4502
+ # specified. For example: * `ORDER BY a` becomes `ORDER BY a ASC, __name__ ASC` *
4503
+ # `ORDER BY a DESC` becomes `ORDER BY a DESC, __name__ DESC` * `WHERE a > 1`
4504
+ # becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC` * `WHERE __name__ > ... AND
4505
+ # a > 1` becomes `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC`
4506
+ # In Enterprise edition, Firestore does not guarantee a stable ordering. Instead
4507
+ # it will pick the most efficient ordering based on the indexes available at the
4508
+ # time of query execution. This will result in a different ordering for queries
4509
+ # that are otherwise identical. To ensure a stable ordering, always include a
4510
+ # unique field in the `order_by` clause, such as `__name__`.
4350
4511
  # Corresponds to the JSON property `orderBy`
4351
4512
  # @return [Array<Google::Apis::FirestoreV1::Order>]
4352
4513
  attr_accessor :order_by
@@ -4686,6 +4847,13 @@ module Google
4686
4847
  # @return [String]
4687
4848
  attr_accessor :timestamp_value
4688
4849
 
4850
+ # Pointer to a variable defined elsewhere in a pipeline. Unlike `
4851
+ # field_reference_value` which references a field within a document, this refers
4852
+ # to a variable, defined in a separate namespace than the fields of a document.
4853
+ # Corresponds to the JSON property `variableReferenceValue`
4854
+ # @return [String]
4855
+ attr_accessor :variable_reference_value
4856
+
4689
4857
  def initialize(**args)
4690
4858
  update!(**args)
4691
4859
  end
@@ -4706,6 +4874,7 @@ module Google
4706
4874
  @reference_value = args[:reference_value] if args.key?(:reference_value)
4707
4875
  @string_value = args[:string_value] if args.key?(:string_value)
4708
4876
  @timestamp_value = args[:timestamp_value] if args.key?(:timestamp_value)
4877
+ @variable_reference_value = args[:variable_reference_value] if args.key?(:variable_reference_value)
4709
4878
  end
4710
4879
  end
4711
4880
 
@@ -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.90.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 = "20260212"
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
 
@@ -2111,6 +2188,7 @@ module Google
2111
2188
  property :reference_value, as: 'referenceValue'
2112
2189
  property :string_value, as: 'stringValue'
2113
2190
  property :timestamp_value, as: 'timestampValue'
2191
+ property :variable_reference_value, as: 'variableReferenceValue'
2114
2192
  end
2115
2193
  end
2116
2194
 
@@ -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
- # can be called in two ways: * **List all public locations:** Use the path `GET /
2056
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
2057
- # projects/`project_id`/locations`. This may include public locations as well as
2058
- # private or other locations specifically visible to the project.
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.90.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.90.0
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: