google-apis-firestore_v1 0.69.0 → 0.71.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: 9d16f471b3b40e5ab66b70ad798c3c7d85b1ec87a8da42b04069323a8c66df9e
4
- data.tar.gz: 3e88e8f1dad470cda3250815b666ec872fb53aa456fc98c6f32cdac014526e7d
3
+ metadata.gz: 170a49679c2ec0bc8d7584f22718d69d1df15bc6a2391c02d9fe836e6ab3e762
4
+ data.tar.gz: 3067869daf8155df44a8469baf3f8d5d85b9d1743261130debbd78fa8f201203
5
5
  SHA512:
6
- metadata.gz: a7003b7135a8b834a42c37715dc0cb9dfe010d51576cb489a7584f05f861106f691ee464d8e9a3fc5b0ab54faef4dd290fafdefc775d044f369b2742359e9832
7
- data.tar.gz: fec0d84aae9cf40d6989162a13e0209c5cd2e2aa73b9bbaab5b2202ce0f513d672c13cd66631395e98397405c33fa2c97353eaf47cc62b8a9ad248322c384404
6
+ metadata.gz: 0de30fa1441322ab8419c735dab23b8700074a183b58d3720d208ccd9b83023f717358bacb4e7a708db6c123e30a5152f26112df9102e97bccc9c25209df0187
7
+ data.tar.gz: ba8ee9c7733dee6709860412f287f737433e21de786e037f64f33dc7509f498f99eb5d951999bf008734e82ce1ba79cfa853a784ed2a81fc82f65223d6209dc4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.71.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240822
6
+
7
+ ### v0.70.0 (2024-08-11)
8
+
9
+ * Regenerated from discovery document revision 20240804
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.69.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240713
@@ -637,10 +637,7 @@ module Google
637
637
  # A Document has changed. May be the result of multiple writes, including
638
638
  # deletes, that ultimately resulted in a new value for the Document. Multiple
639
639
  # DocumentChange messages may be returned for the same logical change, if
640
- # multiple targets are affected. For PipelineQueryTargets, `document` will be in
641
- # the new pipeline format, For a Listen stream with both QueryTargets and
642
- # PipelineQueryTargets present, if a document matches both types of queries,
643
- # then a separate DocumentChange messages will be sent out one for each set.
640
+ # multiple targets are affected.
644
641
  class DocumentChange
645
642
  include Google::Apis::Core::Hashable
646
643
 
@@ -1112,6 +1109,22 @@ module Google
1112
1109
  # @return [String]
1113
1110
  attr_accessor :distance_measure
1114
1111
 
1112
+ # Optional. Optional name of the field to output the result of the vector
1113
+ # distance calculation. Must conform to document field name limitations.
1114
+ # Corresponds to the JSON property `distanceResultField`
1115
+ # @return [String]
1116
+ attr_accessor :distance_result_field
1117
+
1118
+ # Optional. Option to specify a threshold for which no less similar documents
1119
+ # will be returned. The behavior of the specified `distance_measure` will affect
1120
+ # the meaning of the distance threshold. Since DOT_PRODUCT distances increase
1121
+ # when the vectors are more similar, the comparison is inverted. For EUCLIDEAN,
1122
+ # COSINE: WHERE distance <= distance_threshold For DOT_PRODUCT: WHERE distance >=
1123
+ # distance_threshold
1124
+ # Corresponds to the JSON property `distanceThreshold`
1125
+ # @return [Float]
1126
+ attr_accessor :distance_threshold
1127
+
1115
1128
  # Required. The number of nearest neighbors to return. Must be a positive
1116
1129
  # integer of no more than 1000.
1117
1130
  # Corresponds to the JSON property `limit`
@@ -1135,6 +1148,8 @@ module Google
1135
1148
  # Update properties of this object
1136
1149
  def update!(**args)
1137
1150
  @distance_measure = args[:distance_measure] if args.key?(:distance_measure)
1151
+ @distance_result_field = args[:distance_result_field] if args.key?(:distance_result_field)
1152
+ @distance_threshold = args[:distance_threshold] if args.key?(:distance_threshold)
1138
1153
  @limit = args[:limit] if args.key?(:limit)
1139
1154
  @query_vector = args[:query_vector] if args.key?(:query_vector)
1140
1155
  @vector_field = args[:vector_field] if args.key?(:vector_field)
@@ -1265,7 +1280,7 @@ module Google
1265
1280
  class GoogleFirestoreAdminV1BulkDeleteDocumentsMetadata
1266
1281
  include Google::Apis::Core::Hashable
1267
1282
 
1268
- # The ids of the collection groups that are being deleted.
1283
+ # The IDs of the collection groups that are being deleted.
1269
1284
  # Corresponds to the JSON property `collectionIds`
1270
1285
  # @return [Array<String>]
1271
1286
  attr_accessor :collection_ids
@@ -1276,7 +1291,7 @@ module Google
1276
1291
  # @return [String]
1277
1292
  attr_accessor :end_time
1278
1293
 
1279
- # Which namespace ids are being deleted.
1294
+ # Which namespace IDs are being deleted.
1280
1295
  # Corresponds to the JSON property `namespaceIds`
1281
1296
  # @return [Array<String>]
1282
1297
  attr_accessor :namespace_ids
@@ -1409,6 +1424,31 @@ module Google
1409
1424
  end
1410
1425
  end
1411
1426
 
1427
+ # The configuration options for using CMEK (Customer Managed Encryption Key)
1428
+ # encryption.
1429
+ class GoogleFirestoreAdminV1CustomerManagedEncryptionOptions
1430
+ include Google::Apis::Core::Hashable
1431
+
1432
+ # Required. Only keys in the same location as the database are allowed to be
1433
+ # used for encryption. For Firestore's nam5 multi-region, this corresponds to
1434
+ # Cloud KMS multi-region us. For Firestore's eur3 multi-region, this corresponds
1435
+ # to Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/
1436
+ # locations. The expected format is `projects/`project_id`/locations/`
1437
+ # kms_location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
1438
+ # Corresponds to the JSON property `kmsKeyName`
1439
+ # @return [String]
1440
+ attr_accessor :kms_key_name
1441
+
1442
+ def initialize(**args)
1443
+ update!(**args)
1444
+ end
1445
+
1446
+ # Update properties of this object
1447
+ def update!(**args)
1448
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
1449
+ end
1450
+ end
1451
+
1412
1452
  # Represents a recurring schedule that runs every day. The time zone is UTC.
1413
1453
  class GoogleFirestoreAdminV1DailyRecurrence
1414
1454
  include Google::Apis::Core::Hashable
@@ -1478,7 +1518,7 @@ module Google
1478
1518
  attr_accessor :etag
1479
1519
 
1480
1520
  # Output only. The key_prefix for this database. This key_prefix is used, in
1481
- # combination with the project id ("~") to construct the application id that is
1521
+ # combination with the project ID ("~") to construct the application ID that is
1482
1522
  # returned from the Cloud Datastore APIs in Google App Engine first generation
1483
1523
  # runtimes. This value may be empty in which case the appid to use for URL-
1484
1524
  # encoded keys is the project_id (eg: foo instead of v~foo).
@@ -1575,12 +1615,45 @@ module Google
1575
1615
  end
1576
1616
  end
1577
1617
 
1618
+ # Encryption configuration for a new database being created from another source.
1619
+ # The source could be a Backup .
1620
+ class GoogleFirestoreAdminV1EncryptionConfig
1621
+ include Google::Apis::Core::Hashable
1622
+
1623
+ # The configuration options for using CMEK (Customer Managed Encryption Key)
1624
+ # encryption.
1625
+ # Corresponds to the JSON property `customerManagedEncryption`
1626
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions]
1627
+ attr_accessor :customer_managed_encryption
1628
+
1629
+ # The configuration options for using Google default encryption.
1630
+ # Corresponds to the JSON property `googleDefaultEncryption`
1631
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions]
1632
+ attr_accessor :google_default_encryption
1633
+
1634
+ # The configuration options for using the same encryption method as the source.
1635
+ # Corresponds to the JSON property `useSourceEncryption`
1636
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions]
1637
+ attr_accessor :use_source_encryption
1638
+
1639
+ def initialize(**args)
1640
+ update!(**args)
1641
+ end
1642
+
1643
+ # Update properties of this object
1644
+ def update!(**args)
1645
+ @customer_managed_encryption = args[:customer_managed_encryption] if args.key?(:customer_managed_encryption)
1646
+ @google_default_encryption = args[:google_default_encryption] if args.key?(:google_default_encryption)
1647
+ @use_source_encryption = args[:use_source_encryption] if args.key?(:use_source_encryption)
1648
+ end
1649
+ end
1650
+
1578
1651
  # Metadata for google.longrunning.Operation results from FirestoreAdmin.
1579
1652
  # ExportDocuments.
1580
1653
  class GoogleFirestoreAdminV1ExportDocumentsMetadata
1581
1654
  include Google::Apis::Core::Hashable
1582
1655
 
1583
- # Which collection ids are being exported.
1656
+ # Which collection IDs are being exported.
1584
1657
  # Corresponds to the JSON property `collectionIds`
1585
1658
  # @return [Array<String>]
1586
1659
  attr_accessor :collection_ids
@@ -1591,7 +1664,7 @@ module Google
1591
1664
  # @return [String]
1592
1665
  attr_accessor :end_time
1593
1666
 
1594
- # Which namespace ids are being exported.
1667
+ # Which namespace IDs are being exported.
1595
1668
  # Corresponds to the JSON property `namespaceIds`
1596
1669
  # @return [Array<String>]
1597
1670
  attr_accessor :namespace_ids
@@ -1652,8 +1725,8 @@ module Google
1652
1725
  class GoogleFirestoreAdminV1ExportDocumentsRequest
1653
1726
  include Google::Apis::Core::Hashable
1654
1727
 
1655
- # Which collection ids to export. Unspecified means all collections. Each
1656
- # collection id in this list must be unique.
1728
+ # Which collection IDs to export. Unspecified means all collections. Each
1729
+ # collection ID in this list must be unique.
1657
1730
  # Corresponds to the JSON property `collectionIds`
1658
1731
  # @return [Array<String>]
1659
1732
  attr_accessor :collection_ids
@@ -1723,7 +1796,7 @@ module Google
1723
1796
 
1724
1797
  # Represents a single field in the database. Fields are grouped by their "
1725
1798
  # Collection Group", which represent all collections in the database with the
1726
- # same id.
1799
+ # same ID.
1727
1800
  class GoogleFirestoreAdminV1Field
1728
1801
  include Google::Apis::Core::Hashable
1729
1802
 
@@ -1854,12 +1927,25 @@ module Google
1854
1927
  end
1855
1928
  end
1856
1929
 
1930
+ # The configuration options for using Google default encryption.
1931
+ class GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions
1932
+ include Google::Apis::Core::Hashable
1933
+
1934
+ def initialize(**args)
1935
+ update!(**args)
1936
+ end
1937
+
1938
+ # Update properties of this object
1939
+ def update!(**args)
1940
+ end
1941
+ end
1942
+
1857
1943
  # Metadata for google.longrunning.Operation results from FirestoreAdmin.
1858
1944
  # ImportDocuments.
1859
1945
  class GoogleFirestoreAdminV1ImportDocumentsMetadata
1860
1946
  include Google::Apis::Core::Hashable
1861
1947
 
1862
- # Which collection ids are being imported.
1948
+ # Which collection IDs are being imported.
1863
1949
  # Corresponds to the JSON property `collectionIds`
1864
1950
  # @return [Array<String>]
1865
1951
  attr_accessor :collection_ids
@@ -1875,7 +1961,7 @@ module Google
1875
1961
  # @return [String]
1876
1962
  attr_accessor :input_uri_prefix
1877
1963
 
1878
- # Which namespace ids are being imported.
1964
+ # Which namespace IDs are being imported.
1879
1965
  # Corresponds to the JSON property `namespaceIds`
1880
1966
  # @return [Array<String>]
1881
1967
  attr_accessor :namespace_ids
@@ -1923,8 +2009,8 @@ module Google
1923
2009
  class GoogleFirestoreAdminV1ImportDocumentsRequest
1924
2010
  include Google::Apis::Core::Hashable
1925
2011
 
1926
- # Which collection ids to import. Unspecified means all collections included in
1927
- # the import. Each collection id in this list must be unique.
2012
+ # Which collection IDs to import. Unspecified means all collections included in
2013
+ # the import. Each collection ID in this list must be unique.
1928
2014
  # Corresponds to the JSON property `collectionIds`
1929
2015
  # @return [Array<String>]
1930
2016
  attr_accessor :collection_ids
@@ -1989,10 +2075,10 @@ module Google
1989
2075
 
1990
2076
  # Indexes with a collection query scope specified allow queries against a
1991
2077
  # collection that is the child of a specific document, specified at query time,
1992
- # and that has the same collection id. Indexes with a collection group query
2078
+ # and that has the same collection ID. Indexes with a collection group query
1993
2079
  # scope specified allow queries against all collections descended from a
1994
2080
  # specific document, specified at query time, and that have the same collection
1995
- # id as this index.
2081
+ # ID as this index.
1996
2082
  # Corresponds to the JSON property `queryScope`
1997
2083
  # @return [String]
1998
2084
  attr_accessor :query_scope
@@ -2408,49 +2494,29 @@ module Google
2408
2494
  class GoogleFirestoreAdminV1RestoreDatabaseRequest
2409
2495
  include Google::Apis::Core::Hashable
2410
2496
 
2411
- # Backup to restore from. Must be from the same project as the parent. The
2412
- # restored database will be created in the same location as the source backup.
2413
- # Format is: `projects/`project_id`/locations/`location`/backups/`backup``
2497
+ # Required. Backup to restore from. Must be from the same project as the parent.
2498
+ # The restored database will be created in the same location as the source
2499
+ # backup. Format is: `projects/`project_id`/locations/`location`/backups/`backup`
2500
+ # `
2414
2501
  # Corresponds to the JSON property `backup`
2415
2502
  # @return [String]
2416
2503
  attr_accessor :backup
2417
2504
 
2418
2505
  # Required. The ID to use for the database, which will become the final
2419
- # component of the database's resource name. This database id must not be
2506
+ # component of the database's resource name. This database ID must not be
2420
2507
  # associated with an existing database. This value should be 4-63 characters.
2421
2508
  # Valid characters are /a-z-/ with first character a letter and the last a
2422
2509
  # letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-[0-9a-
2423
- # f]`12`/. "(default)" database id is also valid.
2510
+ # f]`12`/. "(default)" database ID is also valid.
2424
2511
  # Corresponds to the JSON property `databaseId`
2425
2512
  # @return [String]
2426
2513
  attr_accessor :database_id
2427
2514
 
2428
- # Use Customer Managed Encryption Keys (CMEK) for encryption. Only keys in the
2429
- # same location as the restored database are allowed to be used for encryption.
2430
- # For Firestore's nam5 multi-region, this corresponds to Cloud KMS multi-region
2431
- # us. For Firestore's eur3 multi-region, this corresponds to Cloud KMS multi-
2432
- # region europe. See https://cloud.google.com/kms/docs/locations. The expected
2433
- # format is `projects/`project_id`/locations/`kms_location`/keyRings/`key_ring`/
2434
- # cryptoKeys/`crypto_key``.
2435
- # Corresponds to the JSON property `kmsKeyName`
2436
- # @return [String]
2437
- attr_accessor :kms_key_name
2438
-
2439
- # A generic empty message that you can re-use to avoid defining duplicated empty
2440
- # messages in your APIs. A typical example is to use it as the request or the
2441
- # response type of an API method. For instance: service Foo ` rpc Bar(google.
2442
- # protobuf.Empty) returns (google.protobuf.Empty); `
2443
- # Corresponds to the JSON property `useBackupEncryption`
2444
- # @return [Google::Apis::FirestoreV1::Empty]
2445
- attr_accessor :use_backup_encryption
2446
-
2447
- # A generic empty message that you can re-use to avoid defining duplicated empty
2448
- # messages in your APIs. A typical example is to use it as the request or the
2449
- # response type of an API method. For instance: service Foo ` rpc Bar(google.
2450
- # protobuf.Empty) returns (google.protobuf.Empty); `
2451
- # Corresponds to the JSON property `useGoogleDefaultEncryption`
2452
- # @return [Google::Apis::FirestoreV1::Empty]
2453
- attr_accessor :use_google_default_encryption
2515
+ # Encryption configuration for a new database being created from another source.
2516
+ # The source could be a Backup .
2517
+ # Corresponds to the JSON property `encryptionConfig`
2518
+ # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig]
2519
+ attr_accessor :encryption_config
2454
2520
 
2455
2521
  def initialize(**args)
2456
2522
  update!(**args)
@@ -2460,9 +2526,20 @@ module Google
2460
2526
  def update!(**args)
2461
2527
  @backup = args[:backup] if args.key?(:backup)
2462
2528
  @database_id = args[:database_id] if args.key?(:database_id)
2463
- @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
2464
- @use_backup_encryption = args[:use_backup_encryption] if args.key?(:use_backup_encryption)
2465
- @use_google_default_encryption = args[:use_google_default_encryption] if args.key?(:use_google_default_encryption)
2529
+ @encryption_config = args[:encryption_config] if args.key?(:encryption_config)
2530
+ end
2531
+ end
2532
+
2533
+ # The configuration options for using the same encryption method as the source.
2534
+ class GoogleFirestoreAdminV1SourceEncryptionOptions
2535
+ include Google::Apis::Core::Hashable
2536
+
2537
+ def initialize(**args)
2538
+ update!(**args)
2539
+ end
2540
+
2541
+ # Update properties of this object
2542
+ def update!(**args)
2466
2543
  end
2467
2544
  end
2468
2545
 
@@ -2877,10 +2954,7 @@ module Google
2877
2954
  # A Document has changed. May be the result of multiple writes, including
2878
2955
  # deletes, that ultimately resulted in a new value for the Document. Multiple
2879
2956
  # DocumentChange messages may be returned for the same logical change, if
2880
- # multiple targets are affected. For PipelineQueryTargets, `document` will be in
2881
- # the new pipeline format, For a Listen stream with both QueryTargets and
2882
- # PipelineQueryTargets present, if a document matches both types of queries,
2883
- # then a separate DocumentChange messages will be sent out one for each set.
2957
+ # multiple targets are affected.
2884
2958
  # Corresponds to the JSON property `documentChange`
2885
2959
  # @return [Google::Apis::FirestoreV1::DocumentChange]
2886
2960
  attr_accessor :document_change
@@ -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.69.0"
19
+ GEM_VERSION = "0.71.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240713"
25
+ REVISION = "20240822"
26
26
  end
27
27
  end
28
28
  end
@@ -268,6 +268,12 @@ module Google
268
268
  include Google::Apis::Core::JsonObjectSupport
269
269
  end
270
270
 
271
+ class GoogleFirestoreAdminV1CustomerManagedEncryptionOptions
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
271
277
  class GoogleFirestoreAdminV1DailyRecurrence
272
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
279
 
@@ -286,6 +292,12 @@ module Google
286
292
  include Google::Apis::Core::JsonObjectSupport
287
293
  end
288
294
 
295
+ class GoogleFirestoreAdminV1EncryptionConfig
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
289
301
  class GoogleFirestoreAdminV1ExportDocumentsMetadata
290
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
303
 
@@ -322,6 +334,12 @@ module Google
322
334
  include Google::Apis::Core::JsonObjectSupport
323
335
  end
324
336
 
337
+ class GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
325
343
  class GoogleFirestoreAdminV1ImportDocumentsMetadata
326
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
345
 
@@ -418,6 +436,12 @@ module Google
418
436
  include Google::Apis::Core::JsonObjectSupport
419
437
  end
420
438
 
439
+ class GoogleFirestoreAdminV1SourceEncryptionOptions
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
421
445
  class GoogleFirestoreAdminV1Stats
422
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
447
 
@@ -1008,6 +1032,8 @@ module Google
1008
1032
  # @private
1009
1033
  class Representation < Google::Apis::Core::JsonRepresentation
1010
1034
  property :distance_measure, as: 'distanceMeasure'
1035
+ property :distance_result_field, as: 'distanceResultField'
1036
+ property :distance_threshold, as: 'distanceThreshold'
1011
1037
  property :limit, as: 'limit'
1012
1038
  property :query_vector, as: 'queryVector', class: Google::Apis::FirestoreV1::Value, decorator: Google::Apis::FirestoreV1::Value::Representation
1013
1039
 
@@ -1082,6 +1108,13 @@ module Google
1082
1108
  end
1083
1109
  end
1084
1110
 
1111
+ class GoogleFirestoreAdminV1CustomerManagedEncryptionOptions
1112
+ # @private
1113
+ class Representation < Google::Apis::Core::JsonRepresentation
1114
+ property :kms_key_name, as: 'kmsKeyName'
1115
+ end
1116
+ end
1117
+
1085
1118
  class GoogleFirestoreAdminV1DailyRecurrence
1086
1119
  # @private
1087
1120
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1118,6 +1151,18 @@ module Google
1118
1151
  end
1119
1152
  end
1120
1153
 
1154
+ class GoogleFirestoreAdminV1EncryptionConfig
1155
+ # @private
1156
+ class Representation < Google::Apis::Core::JsonRepresentation
1157
+ property :customer_managed_encryption, as: 'customerManagedEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions::Representation
1158
+
1159
+ property :google_default_encryption, as: 'googleDefaultEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions::Representation
1160
+
1161
+ property :use_source_encryption, as: 'useSourceEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions::Representation
1162
+
1163
+ end
1164
+ end
1165
+
1121
1166
  class GoogleFirestoreAdminV1ExportDocumentsMetadata
1122
1167
  # @private
1123
1168
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1187,6 +1232,12 @@ module Google
1187
1232
  end
1188
1233
  end
1189
1234
 
1235
+ class GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions
1236
+ # @private
1237
+ class Representation < Google::Apis::Core::JsonRepresentation
1238
+ end
1239
+ end
1240
+
1190
1241
  class GoogleFirestoreAdminV1ImportDocumentsMetadata
1191
1242
  # @private
1192
1243
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1345,11 +1396,14 @@ module Google
1345
1396
  class Representation < Google::Apis::Core::JsonRepresentation
1346
1397
  property :backup, as: 'backup'
1347
1398
  property :database_id, as: 'databaseId'
1348
- property :kms_key_name, as: 'kmsKeyName'
1349
- property :use_backup_encryption, as: 'useBackupEncryption', class: Google::Apis::FirestoreV1::Empty, decorator: Google::Apis::FirestoreV1::Empty::Representation
1399
+ property :encryption_config, as: 'encryptionConfig', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig::Representation
1350
1400
 
1351
- property :use_google_default_encryption, as: 'useGoogleDefaultEncryption', class: Google::Apis::FirestoreV1::Empty, decorator: Google::Apis::FirestoreV1::Empty::Representation
1401
+ end
1402
+ end
1352
1403
 
1404
+ class GoogleFirestoreAdminV1SourceEncryptionOptions
1405
+ # @private
1406
+ class Representation < Google::Apis::Core::JsonRepresentation
1353
1407
  end
1354
1408
  end
1355
1409
 
@@ -100,7 +100,7 @@ module Google
100
100
  # component of the database's resource name. This value should be 4-63
101
101
  # characters. Valid characters are /a-z-/ with first character a letter and the
102
102
  # last a letter or a number. Must not be UUID-like /[0-9a-f]`8`(-[0-9a-f]`4`)`3`-
103
- # [0-9a-f]`12`/. "(default)" database id is also valid.
103
+ # [0-9a-f]`12`/. "(default)" database ID is also valid.
104
104
  # @param [String] fields
105
105
  # Selector specifying which fields to include in a partial response.
106
106
  # @param [String] quota_user
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.69.0
4
+ version: 0.71.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-09-01 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.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.71.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: []