google-apis-firestore_v1 0.91.0 → 0.93.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: c16c752719a127c27fb8460d340da9804a0e37ce5fab228df160e48bf7d308f2
4
- data.tar.gz: 4cc88ccf9893db9bf586d729909d768cfeed9f35a9d0c416e105eed48e2f6014
3
+ metadata.gz: 9d6eed7354e0dc1a037993c8093fbbdaa48202c6f20801a8211569e97751c1d8
4
+ data.tar.gz: 4de78435271f435533cf85f2dab57d40d3853e801d068eed0b13a3a2e4d2ac9a
5
5
  SHA512:
6
- metadata.gz: efc6220e9e71cda530a06ee5e818d58fe420e8f2cb02465abdb82113a6da76c43df648fcfc090f4800ceefeef2bcf0e3d122891299c794e32dd0478c20cda96c
7
- data.tar.gz: 161d5ccd5e85315f3d337439b89303dbb4604033d5bd846d87de6055bb148497e65f62acf954cb23b738d6c6fcb54cdaa1c2dd8dd5358ccefa260adf9464b0f6
6
+ metadata.gz: c08041491bf8c5ea6502e38eeab659a44eca6a62e7db9c1ffa306781cbc71dd64d1c58cf1ec3c9eae5f66018959dd61355fcf2f1ee6d5b3531aa633038d000c6
7
+ data.tar.gz: 359c032e4e70a7962d97576035c4016921c1fb5319951133c95f9178204d422c97a2d5fea57b5f216a13fa77e91fd6216b262c72b7a8d0fbbff4a493735f1c05
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.93.0 (2026-05-10)
4
+
5
+ * Regenerated from discovery document revision 20260427
6
+
7
+ ### v0.92.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260405
10
+
3
11
  ### v0.91.0 (2026-03-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20260304
@@ -1759,9 +1759,14 @@ module Google
1759
1759
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CmekConfig]
1760
1760
  attr_accessor :cmek_config
1761
1761
 
1762
- # The concurrency control mode to use for this database. If unspecified in a
1763
- # CreateDatabase request, this will default based on the database edition:
1764
- # Optimistic for Enterprise and Pessimistic for all other databases.
1762
+ # The default concurrency control mode to use for this database. If unspecified
1763
+ # in a CreateDatabase request, this will default based on the database edition:
1764
+ # Optimistic for Enterprise and Pessimistic for all other databases. While
1765
+ # transactions can explicitly specify their own concurrency mode, this setting
1766
+ # defines the default behavior when left unspecified. Important: This database-
1767
+ # level setting is not respected for Firestore with MongoDB compatibility. All
1768
+ # transactions through the MongoDB compatibility layer will use optimistic
1769
+ # concurrency control, regardless of this setting.
1765
1770
  # Corresponds to the JSON property `concurrencyMode`
1766
1771
  # @return [String]
1767
1772
  attr_accessor :concurrency_mode
@@ -2191,12 +2196,13 @@ module Google
2191
2196
  attr_accessor :name
2192
2197
 
2193
2198
  # 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.
2199
+ # A timestamp stored in a TTL-enabled field will be used to determine the
2200
+ # expiration time of the document. The expiration time is the sum of the
2201
+ # timestamp value and the `expiration_offset`. For Enterprise edition databases,
2202
+ # the timestamp value may alternatively be stored in an array value in the TTL-
2203
+ # enabled field. An expiration time in the past indicates that the document is
2204
+ # eligible for immediate expiration. Using any other data type or leaving the
2205
+ # field absent will disable expiration for the individual document.
2200
2206
  # Corresponds to the JSON property `ttlConfig`
2201
2207
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1TtlConfig]
2202
2208
  attr_accessor :ttl_config
@@ -2467,6 +2473,11 @@ module Google
2467
2473
  # @return [String]
2468
2474
  attr_accessor :query_scope
2469
2475
 
2476
+ # Options for search indexes at the definition level.
2477
+ # Corresponds to the JSON property `searchIndexOptions`
2478
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchIndexOptions]
2479
+ attr_accessor :search_index_options
2480
+
2470
2481
  # Optional. The number of shards for the index.
2471
2482
  # Corresponds to the JSON property `shardCount`
2472
2483
  # @return [Fixnum]
@@ -2496,6 +2507,7 @@ module Google
2496
2507
  @multikey = args[:multikey] if args.key?(:multikey)
2497
2508
  @name = args[:name] if args.key?(:name)
2498
2509
  @query_scope = args[:query_scope] if args.key?(:query_scope)
2510
+ @search_index_options = args[:search_index_options] if args.key?(:search_index_options)
2499
2511
  @shard_count = args[:shard_count] if args.key?(:shard_count)
2500
2512
  @state = args[:state] if args.key?(:state)
2501
2513
  @unique = args[:unique] if args.key?(:unique)
@@ -2597,6 +2609,11 @@ module Google
2597
2609
  # @return [String]
2598
2610
  attr_accessor :order
2599
2611
 
2612
+ # The configuration for how to index a field for search.
2613
+ # Corresponds to the JSON property `searchConfig`
2614
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchConfig]
2615
+ attr_accessor :search_config
2616
+
2600
2617
  # The index configuration to support vector search operations
2601
2618
  # Corresponds to the JSON property `vectorConfig`
2602
2619
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1VectorConfig]
@@ -2611,6 +2628,7 @@ module Google
2611
2628
  @array_config = args[:array_config] if args.key?(:array_config)
2612
2629
  @field_path = args[:field_path] if args.key?(:field_path)
2613
2630
  @order = args[:order] if args.key?(:order)
2631
+ @search_config = args[:search_config] if args.key?(:search_config)
2614
2632
  @vector_config = args[:vector_config] if args.key?(:vector_config)
2615
2633
  end
2616
2634
  end
@@ -3028,6 +3046,130 @@ module Google
3028
3046
  end
3029
3047
  end
3030
3048
 
3049
+ # The configuration for how to index a field for search.
3050
+ class GoogleFirestoreAdminV1SearchConfig
3051
+ include Google::Apis::Core::Hashable
3052
+
3053
+ # The specification for how to build a geo search index for a field.
3054
+ # Corresponds to the JSON property `geoSpec`
3055
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchGeoSpec]
3056
+ attr_accessor :geo_spec
3057
+
3058
+ # The specification for how to build a text search index for a field.
3059
+ # Corresponds to the JSON property `textSpec`
3060
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextSpec]
3061
+ attr_accessor :text_spec
3062
+
3063
+ def initialize(**args)
3064
+ update!(**args)
3065
+ end
3066
+
3067
+ # Update properties of this object
3068
+ def update!(**args)
3069
+ @geo_spec = args[:geo_spec] if args.key?(:geo_spec)
3070
+ @text_spec = args[:text_spec] if args.key?(:text_spec)
3071
+ end
3072
+ end
3073
+
3074
+ # The specification for how to build a geo search index for a field.
3075
+ class GoogleFirestoreAdminV1SearchGeoSpec
3076
+ include Google::Apis::Core::Hashable
3077
+
3078
+ # Optional. Disables geoJSON indexing for the field. By default, geoJSON points
3079
+ # are indexed.
3080
+ # Corresponds to the JSON property `geoJsonIndexingDisabled`
3081
+ # @return [Boolean]
3082
+ attr_accessor :geo_json_indexing_disabled
3083
+ alias_method :geo_json_indexing_disabled?, :geo_json_indexing_disabled
3084
+
3085
+ def initialize(**args)
3086
+ update!(**args)
3087
+ end
3088
+
3089
+ # Update properties of this object
3090
+ def update!(**args)
3091
+ @geo_json_indexing_disabled = args[:geo_json_indexing_disabled] if args.key?(:geo_json_indexing_disabled)
3092
+ end
3093
+ end
3094
+
3095
+ # Options for search indexes at the definition level.
3096
+ class GoogleFirestoreAdminV1SearchIndexOptions
3097
+ include Google::Apis::Core::Hashable
3098
+
3099
+ # Optional. The language to use for text search indexes. Used as the default
3100
+ # language if not overridden at the document level by specifying the `
3101
+ # text_language_override_field`. The language is specified as a BCP 47 language
3102
+ # code. For indexes with MONGODB_COMPATIBLE_API ApiScope: If unspecified, the
3103
+ # default language is English. For indexes with `ANY_API` ApiScope: If
3104
+ # unspecified, the default behavior is autodetect.
3105
+ # Corresponds to the JSON property `textLanguage`
3106
+ # @return [String]
3107
+ attr_accessor :text_language
3108
+
3109
+ # Optional. The field in the document that specifies which language to use for
3110
+ # that specific document. For indexes with MONGODB_COMPATIBLE_API ApiScope: if
3111
+ # unspecified, the language is taken from the "language" field if it exists or
3112
+ # from `text_language` if it does not.
3113
+ # Corresponds to the JSON property `textLanguageOverrideFieldPath`
3114
+ # @return [String]
3115
+ attr_accessor :text_language_override_field_path
3116
+
3117
+ def initialize(**args)
3118
+ update!(**args)
3119
+ end
3120
+
3121
+ # Update properties of this object
3122
+ def update!(**args)
3123
+ @text_language = args[:text_language] if args.key?(:text_language)
3124
+ @text_language_override_field_path = args[:text_language_override_field_path] if args.key?(:text_language_override_field_path)
3125
+ end
3126
+ end
3127
+
3128
+ # Specification of how the field should be indexed for search text indexes.
3129
+ class GoogleFirestoreAdminV1SearchTextIndexSpec
3130
+ include Google::Apis::Core::Hashable
3131
+
3132
+ # Required. How to index the text field value.
3133
+ # Corresponds to the JSON property `indexType`
3134
+ # @return [String]
3135
+ attr_accessor :index_type
3136
+
3137
+ # Required. How to match the text field value.
3138
+ # Corresponds to the JSON property `matchType`
3139
+ # @return [String]
3140
+ attr_accessor :match_type
3141
+
3142
+ def initialize(**args)
3143
+ update!(**args)
3144
+ end
3145
+
3146
+ # Update properties of this object
3147
+ def update!(**args)
3148
+ @index_type = args[:index_type] if args.key?(:index_type)
3149
+ @match_type = args[:match_type] if args.key?(:match_type)
3150
+ end
3151
+ end
3152
+
3153
+ # The specification for how to build a text search index for a field.
3154
+ class GoogleFirestoreAdminV1SearchTextSpec
3155
+ include Google::Apis::Core::Hashable
3156
+
3157
+ # Required. Specifications for how the field should be indexed. Repeated so that
3158
+ # the field can be indexed in multiple ways.
3159
+ # Corresponds to the JSON property `indexSpecs`
3160
+ # @return [Array<Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SearchTextIndexSpec>]
3161
+ attr_accessor :index_specs
3162
+
3163
+ def initialize(**args)
3164
+ update!(**args)
3165
+ end
3166
+
3167
+ # Update properties of this object
3168
+ def update!(**args)
3169
+ @index_specs = args[:index_specs] if args.key?(:index_specs)
3170
+ end
3171
+ end
3172
+
3031
3173
  # The configuration options for using the same encryption method as the source.
3032
3174
  class GoogleFirestoreAdminV1SourceEncryptionOptions
3033
3175
  include Google::Apis::Core::Hashable
@@ -3101,15 +3243,25 @@ module Google
3101
3243
  end
3102
3244
 
3103
3245
  # 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.
3246
+ # A timestamp stored in a TTL-enabled field will be used to determine the
3247
+ # expiration time of the document. The expiration time is the sum of the
3248
+ # timestamp value and the `expiration_offset`. For Enterprise edition databases,
3249
+ # the timestamp value may alternatively be stored in an array value in the TTL-
3250
+ # enabled field. An expiration time in the past indicates that the document is
3251
+ # eligible for immediate expiration. Using any other data type or leaving the
3252
+ # field absent will disable expiration for the individual document.
3110
3253
  class GoogleFirestoreAdminV1TtlConfig
3111
3254
  include Google::Apis::Core::Hashable
3112
3255
 
3256
+ # Optional. The offset, relative to the timestamp value from the TTL-enabled
3257
+ # field, used to determine the document's expiration time. `expiration_offset.
3258
+ # seconds` must be between 0 and 2,147,483,647 inclusive. Values more precise
3259
+ # than seconds are rejected. If unset, defaults to 0, in which case the
3260
+ # expiration time is the same as the timestamp value from the TTL-enabled field.
3261
+ # Corresponds to the JSON property `expirationOffset`
3262
+ # @return [String]
3263
+ attr_accessor :expiration_offset
3264
+
3113
3265
  # Output only. The state of the TTL configuration.
3114
3266
  # Corresponds to the JSON property `state`
3115
3267
  # @return [String]
@@ -3121,6 +3273,7 @@ module Google
3121
3273
 
3122
3274
  # Update properties of this object
3123
3275
  def update!(**args)
3276
+ @expiration_offset = args[:expiration_offset] if args.key?(:expiration_offset)
3124
3277
  @state = args[:state] if args.key?(:state)
3125
3278
  end
3126
3279
  end
@@ -3134,6 +3287,12 @@ module Google
3134
3287
  # @return [String]
3135
3288
  attr_accessor :change_type
3136
3289
 
3290
+ # The offset, relative to the timestamp value in the TTL-enabled field, used
3291
+ # determine the document's expiration time.
3292
+ # Corresponds to the JSON property `expirationOffset`
3293
+ # @return [String]
3294
+ attr_accessor :expiration_offset
3295
+
3137
3296
  def initialize(**args)
3138
3297
  update!(**args)
3139
3298
  end
@@ -3141,6 +3300,7 @@ module Google
3141
3300
  # Update properties of this object
3142
3301
  def update!(**args)
3143
3302
  @change_type = args[:change_type] if args.key?(:change_type)
3303
+ @expiration_offset = args[:expiration_offset] if args.key?(:expiration_offset)
3144
3304
  end
3145
3305
  end
3146
3306
 
@@ -3922,11 +4082,18 @@ module Google
3922
4082
  end
3923
4083
 
3924
4084
  # Options for a transaction that can be used to read and write documents.
3925
- # Firestore does not allow 3rd party auth requests to create read-write.
3926
- # transactions.
3927
4085
  class ReadWrite
3928
4086
  include Google::Apis::Core::Hashable
3929
4087
 
4088
+ # Optional. The concurrency control mode to use for this transaction. A database
4089
+ # is able to use different concurrency modes for different transactions
4090
+ # simultaneously. 3rd party auth requests are only allowed to create optimistic
4091
+ # read-write transactions and must specify that here even if the database-level
4092
+ # setting is already configured to optimistic.
4093
+ # Corresponds to the JSON property `concurrencyMode`
4094
+ # @return [String]
4095
+ attr_accessor :concurrency_mode
4096
+
3930
4097
  # An optional transaction to retry.
3931
4098
  # Corresponds to the JSON property `retryTransaction`
3932
4099
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
@@ -3939,6 +4106,7 @@ module Google
3939
4106
 
3940
4107
  # Update properties of this object
3941
4108
  def update!(**args)
4109
+ @concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
3942
4110
  @retry_transaction = args[:retry_transaction] if args.key?(:retry_transaction)
3943
4111
  end
3944
4112
  end
@@ -4561,8 +4729,6 @@ module Google
4561
4729
  attr_accessor :read_only
4562
4730
 
4563
4731
  # Options for a transaction that can be used to read and write documents.
4564
- # Firestore does not allow 3rd party auth requests to create read-write.
4565
- # transactions.
4566
4732
  # Corresponds to the JSON property `readWrite`
4567
4733
  # @return [Google::Apis::FirestoreV1::ReadWrite]
4568
4734
  attr_accessor :read_write
@@ -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.91.0"
19
+ GEM_VERSION = "0.93.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 = "20260304"
25
+ REVISION = "20260427"
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
 
@@ -1908,6 +1985,7 @@ module Google
1908
1985
  class ReadWrite
1909
1986
  # @private
1910
1987
  class Representation < Google::Apis::Core::JsonRepresentation
1988
+ property :concurrency_mode, as: 'concurrencyMode'
1911
1989
  property :retry_transaction, :base64 => true, as: 'retryTransaction'
1912
1990
  end
1913
1991
  end
@@ -1256,7 +1256,8 @@ module Google
1256
1256
  # @param [String] parent
1257
1257
  # Required. The parent document. In the format: `projects/`project_id`/databases/
1258
1258
  # `database_id`/documents/`document_path``. For example: `projects/my-project/
1259
- # databases/my-database/documents/chatrooms/my-chatroom`
1259
+ # databases/my-database/documents/chatrooms/my-chatroom` Use `projects/`
1260
+ # project_id`/databases/`database_id`/documents` to list top-level collections.
1260
1261
  # @param [Google::Apis::FirestoreV1::ListCollectionIdsRequest] list_collection_ids_request_object
1261
1262
  # @param [String] fields
1262
1263
  # Selector specifying which fields to include in a partial response.
@@ -2052,15 +2053,20 @@ module Google
2052
2053
  end
2053
2054
 
2054
2055
  # 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.
2056
+ # lists locations based on the resource scope provided in the
2057
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
2058
+ # the method lists the public locations available to all projects. * **Project-
2059
+ # specific locations**: If `name` follows the format `projects/`project``, the
2060
+ # method lists locations visible to that specific project. This includes public,
2061
+ # private, or other project-specific locations enabled for the project. For gRPC
2062
+ # and client library implementations, the resource name is passed as the `name`
2063
+ # field. For direct service calls, the resource name is incorporated into the
2064
+ # request path based on the specific service implementation and version.
2059
2065
  # @param [String] name
2060
2066
  # The resource that owns the locations collection, if applicable.
2061
2067
  # @param [Array<String>, String] extra_location_types
2062
- # Optional. Do not use this field. It is unsupported and is ignored unless
2063
- # explicitly documented otherwise. This is primarily for internal usage.
2068
+ # Optional. Do not use this field unless explicitly documented otherwise. This
2069
+ # is primarily for internal usage.
2064
2070
  # @param [String] filter
2065
2071
  # A filter to narrow down results to a preferred subset. The filtering language
2066
2072
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
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.91.0
4
+ version: 0.93.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.91.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.93.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: