google-apis-firestore_v1 0.68.0 → 0.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/firestore_v1/classes.rb +105 -99
- data/lib/google/apis/firestore_v1/gem_version.rb +3 -3
- data/lib/google/apis/firestore_v1/representations.rb +55 -23
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd9814c9ea47ad8137d7cb51d9e958f6353147866479f43c8a39ae4303c3ceed
|
4
|
+
data.tar.gz: 8fbd0f080975a9f6c9f1c521e655881de21ee98ccbe5c4e9fbc73e13a7212c34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df4834a5c9031374ef3d6189444136d69211904d361059c0141358c96ec6d4fcaeb550642ee3c92e1118aa5c4dbabf9750a34e3d9cbac3778831fe49ed43499d
|
7
|
+
data.tar.gz: 964f83ec219d45851c43a0a80ee1995784fc2727f2dc6887ee268d554af4bf0ef2caef7dc3a40636406d684cccd5e6c1a6844fd47e0c70f34cb0a8b090a26d82
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
+
### v0.70.0 (2024-08-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240804
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.69.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240713
|
11
|
+
|
3
12
|
### v0.68.0 (2024-06-23)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240617
|
@@ -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.
|
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
|
|
@@ -1100,7 +1097,10 @@ module Google
|
|
1100
1097
|
end
|
1101
1098
|
end
|
1102
1099
|
|
1103
|
-
# Nearest Neighbors search config.
|
1100
|
+
# Nearest Neighbors search config. The ordering provided by FindNearest
|
1101
|
+
# supersedes the order_by stage. If multiple documents have the same vector
|
1102
|
+
# distance, the returned document order is not guaranteed to be stable between
|
1103
|
+
# queries.
|
1104
1104
|
class FindNearest
|
1105
1105
|
include Google::Apis::Core::Hashable
|
1106
1106
|
|
@@ -1223,7 +1223,8 @@ module Google
|
|
1223
1223
|
attr_accessor :name
|
1224
1224
|
|
1225
1225
|
# At what relative time in the future, compared to its creation time, the backup
|
1226
|
-
# should be deleted, e.g. keep backups for 7 days.
|
1226
|
+
# should be deleted, e.g. keep backups for 7 days. The maximum supported
|
1227
|
+
# retention period is 14 weeks.
|
1227
1228
|
# Corresponds to the JSON property `retention`
|
1228
1229
|
# @return [String]
|
1229
1230
|
attr_accessor :retention
|
@@ -1405,24 +1406,41 @@ module Google
|
|
1405
1406
|
end
|
1406
1407
|
end
|
1407
1408
|
|
1409
|
+
# The configuration options for using CMEK (Customer Managed Encryption Key)
|
1410
|
+
# encryption.
|
1411
|
+
class GoogleFirestoreAdminV1CustomerManagedEncryptionOptions
|
1412
|
+
include Google::Apis::Core::Hashable
|
1413
|
+
|
1414
|
+
# Required. Only keys in the same location as the database are allowed to be
|
1415
|
+
# used for encryption. For Firestore's nam5 multi-region, this corresponds to
|
1416
|
+
# Cloud KMS multi-region us. For Firestore's eur3 multi-region, this corresponds
|
1417
|
+
# to Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/
|
1418
|
+
# locations. The expected format is `projects/`project_id`/locations/`
|
1419
|
+
# kms_location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
|
1420
|
+
# Corresponds to the JSON property `kmsKeyName`
|
1421
|
+
# @return [String]
|
1422
|
+
attr_accessor :kms_key_name
|
1423
|
+
|
1424
|
+
def initialize(**args)
|
1425
|
+
update!(**args)
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
# Update properties of this object
|
1429
|
+
def update!(**args)
|
1430
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
1431
|
+
end
|
1432
|
+
end
|
1433
|
+
|
1408
1434
|
# Represents a recurring schedule that runs every day. The time zone is UTC.
|
1409
1435
|
class GoogleFirestoreAdminV1DailyRecurrence
|
1410
1436
|
include Google::Apis::Core::Hashable
|
1411
1437
|
|
1412
|
-
# Represents a time of day. The date and time zone are either not significant or
|
1413
|
-
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1414
|
-
# types are google.type.Date and `google.protobuf.Timestamp`.
|
1415
|
-
# Corresponds to the JSON property `time`
|
1416
|
-
# @return [Google::Apis::FirestoreV1::TimeOfDay]
|
1417
|
-
attr_accessor :time
|
1418
|
-
|
1419
1438
|
def initialize(**args)
|
1420
1439
|
update!(**args)
|
1421
1440
|
end
|
1422
1441
|
|
1423
1442
|
# Update properties of this object
|
1424
1443
|
def update!(**args)
|
1425
|
-
@time = args[:time] if args.key?(:time)
|
1426
1444
|
end
|
1427
1445
|
end
|
1428
1446
|
|
@@ -1579,6 +1597,39 @@ module Google
|
|
1579
1597
|
end
|
1580
1598
|
end
|
1581
1599
|
|
1600
|
+
# Encryption configuration for a new database being created from another source.
|
1601
|
+
# The source could be a Backup or a DatabaseSnapshot.
|
1602
|
+
class GoogleFirestoreAdminV1EncryptionConfig
|
1603
|
+
include Google::Apis::Core::Hashable
|
1604
|
+
|
1605
|
+
# The configuration options for using CMEK (Customer Managed Encryption Key)
|
1606
|
+
# encryption.
|
1607
|
+
# Corresponds to the JSON property `customerManagedEncryption`
|
1608
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions]
|
1609
|
+
attr_accessor :customer_managed_encryption
|
1610
|
+
|
1611
|
+
# The configuration options for using Google default encryption.
|
1612
|
+
# Corresponds to the JSON property `googleDefaultEncryption`
|
1613
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions]
|
1614
|
+
attr_accessor :google_default_encryption
|
1615
|
+
|
1616
|
+
# The configuration options for using the same encryption method as the source.
|
1617
|
+
# Corresponds to the JSON property `useSourceEncryption`
|
1618
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions]
|
1619
|
+
attr_accessor :use_source_encryption
|
1620
|
+
|
1621
|
+
def initialize(**args)
|
1622
|
+
update!(**args)
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
# Update properties of this object
|
1626
|
+
def update!(**args)
|
1627
|
+
@customer_managed_encryption = args[:customer_managed_encryption] if args.key?(:customer_managed_encryption)
|
1628
|
+
@google_default_encryption = args[:google_default_encryption] if args.key?(:google_default_encryption)
|
1629
|
+
@use_source_encryption = args[:use_source_encryption] if args.key?(:use_source_encryption)
|
1630
|
+
end
|
1631
|
+
end
|
1632
|
+
|
1582
1633
|
# Metadata for google.longrunning.Operation results from FirestoreAdmin.
|
1583
1634
|
# ExportDocuments.
|
1584
1635
|
class GoogleFirestoreAdminV1ExportDocumentsMetadata
|
@@ -1858,6 +1909,19 @@ module Google
|
|
1858
1909
|
end
|
1859
1910
|
end
|
1860
1911
|
|
1912
|
+
# The configuration options for using Google default encryption.
|
1913
|
+
class GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions
|
1914
|
+
include Google::Apis::Core::Hashable
|
1915
|
+
|
1916
|
+
def initialize(**args)
|
1917
|
+
update!(**args)
|
1918
|
+
end
|
1919
|
+
|
1920
|
+
# Update properties of this object
|
1921
|
+
def update!(**args)
|
1922
|
+
end
|
1923
|
+
end
|
1924
|
+
|
1861
1925
|
# Metadata for google.longrunning.Operation results from FirestoreAdmin.
|
1862
1926
|
# ImportDocuments.
|
1863
1927
|
class GoogleFirestoreAdminV1ImportDocumentsMetadata
|
@@ -2412,8 +2476,9 @@ module Google
|
|
2412
2476
|
class GoogleFirestoreAdminV1RestoreDatabaseRequest
|
2413
2477
|
include Google::Apis::Core::Hashable
|
2414
2478
|
|
2415
|
-
# Backup to restore from. Must be from the same project as the parent.
|
2416
|
-
#
|
2479
|
+
# Backup to restore from. Must be from the same project as the parent. The
|
2480
|
+
# restored database will be created in the same location as the source backup.
|
2481
|
+
# Format is: `projects/`project_id`/locations/`location`/backups/`backup``
|
2417
2482
|
# Corresponds to the JSON property `backup`
|
2418
2483
|
# @return [String]
|
2419
2484
|
attr_accessor :backup
|
@@ -2428,32 +2493,11 @@ module Google
|
|
2428
2493
|
# @return [String]
|
2429
2494
|
attr_accessor :database_id
|
2430
2495
|
|
2431
|
-
#
|
2432
|
-
#
|
2433
|
-
#
|
2434
|
-
#
|
2435
|
-
|
2436
|
-
# is `projects/`project_id`/locations/`kms_location`/keyRings/`key_ring`/
|
2437
|
-
# cryptoKeys/`crypto_key``.
|
2438
|
-
# Corresponds to the JSON property `kmsKeyName`
|
2439
|
-
# @return [String]
|
2440
|
-
attr_accessor :kms_key_name
|
2441
|
-
|
2442
|
-
# A generic empty message that you can re-use to avoid defining duplicated empty
|
2443
|
-
# messages in your APIs. A typical example is to use it as the request or the
|
2444
|
-
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
2445
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
2446
|
-
# Corresponds to the JSON property `useBackupEncryption`
|
2447
|
-
# @return [Google::Apis::FirestoreV1::Empty]
|
2448
|
-
attr_accessor :use_backup_encryption
|
2449
|
-
|
2450
|
-
# A generic empty message that you can re-use to avoid defining duplicated empty
|
2451
|
-
# messages in your APIs. A typical example is to use it as the request or the
|
2452
|
-
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
2453
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
2454
|
-
# Corresponds to the JSON property `useGoogleDefaultEncryption`
|
2455
|
-
# @return [Google::Apis::FirestoreV1::Empty]
|
2456
|
-
attr_accessor :use_google_default_encryption
|
2496
|
+
# Encryption configuration for a new database being created from another source.
|
2497
|
+
# The source could be a Backup or a DatabaseSnapshot.
|
2498
|
+
# Corresponds to the JSON property `encryptionConfig`
|
2499
|
+
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig]
|
2500
|
+
attr_accessor :encryption_config
|
2457
2501
|
|
2458
2502
|
def initialize(**args)
|
2459
2503
|
update!(**args)
|
@@ -2463,9 +2507,20 @@ module Google
|
|
2463
2507
|
def update!(**args)
|
2464
2508
|
@backup = args[:backup] if args.key?(:backup)
|
2465
2509
|
@database_id = args[:database_id] if args.key?(:database_id)
|
2466
|
-
@
|
2467
|
-
|
2468
|
-
|
2510
|
+
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
2511
|
+
end
|
2512
|
+
end
|
2513
|
+
|
2514
|
+
# The configuration options for using the same encryption method as the source.
|
2515
|
+
class GoogleFirestoreAdminV1SourceEncryptionOptions
|
2516
|
+
include Google::Apis::Core::Hashable
|
2517
|
+
|
2518
|
+
def initialize(**args)
|
2519
|
+
update!(**args)
|
2520
|
+
end
|
2521
|
+
|
2522
|
+
# Update properties of this object
|
2523
|
+
def update!(**args)
|
2469
2524
|
end
|
2470
2525
|
end
|
2471
2526
|
|
@@ -2595,13 +2650,6 @@ module Google
|
|
2595
2650
|
# @return [String]
|
2596
2651
|
attr_accessor :day
|
2597
2652
|
|
2598
|
-
# Represents a time of day. The date and time zone are either not significant or
|
2599
|
-
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
2600
|
-
# types are google.type.Date and `google.protobuf.Timestamp`.
|
2601
|
-
# Corresponds to the JSON property `time`
|
2602
|
-
# @return [Google::Apis::FirestoreV1::TimeOfDay]
|
2603
|
-
attr_accessor :time
|
2604
|
-
|
2605
2653
|
def initialize(**args)
|
2606
2654
|
update!(**args)
|
2607
2655
|
end
|
@@ -2609,7 +2657,6 @@ module Google
|
|
2609
2657
|
# Update properties of this object
|
2610
2658
|
def update!(**args)
|
2611
2659
|
@day = args[:day] if args.key?(:day)
|
2612
|
-
@time = args[:time] if args.key?(:time)
|
2613
2660
|
end
|
2614
2661
|
end
|
2615
2662
|
|
@@ -2888,10 +2935,7 @@ module Google
|
|
2888
2935
|
# A Document has changed. May be the result of multiple writes, including
|
2889
2936
|
# deletes, that ultimately resulted in a new value for the Document. Multiple
|
2890
2937
|
# DocumentChange messages may be returned for the same logical change, if
|
2891
|
-
# multiple targets are affected.
|
2892
|
-
# the new pipeline format, For a Listen stream with both QueryTargets and
|
2893
|
-
# PipelineQueryTargets present, if a document matches both types of queries,
|
2894
|
-
# then a separate DocumentChange messages will be sent out one for each set.
|
2938
|
+
# multiple targets are affected.
|
2895
2939
|
# Corresponds to the JSON property `documentChange`
|
2896
2940
|
# @return [Google::Apis::FirestoreV1::DocumentChange]
|
2897
2941
|
attr_accessor :document_change
|
@@ -3568,7 +3612,10 @@ module Google
|
|
3568
3612
|
# @return [Google::Apis::FirestoreV1::Cursor]
|
3569
3613
|
attr_accessor :end_at
|
3570
3614
|
|
3571
|
-
# Nearest Neighbors search config.
|
3615
|
+
# Nearest Neighbors search config. The ordering provided by FindNearest
|
3616
|
+
# supersedes the order_by stage. If multiple documents have the same vector
|
3617
|
+
# distance, the returned document order is not guaranteed to be stable between
|
3618
|
+
# queries.
|
3572
3619
|
# Corresponds to the JSON property `findNearest`
|
3573
3620
|
# @return [Google::Apis::FirestoreV1::FindNearest]
|
3574
3621
|
attr_accessor :find_nearest
|
@@ -3803,47 +3850,6 @@ module Google
|
|
3803
3850
|
end
|
3804
3851
|
end
|
3805
3852
|
|
3806
|
-
# Represents a time of day. The date and time zone are either not significant or
|
3807
|
-
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
3808
|
-
# types are google.type.Date and `google.protobuf.Timestamp`.
|
3809
|
-
class TimeOfDay
|
3810
|
-
include Google::Apis::Core::Hashable
|
3811
|
-
|
3812
|
-
# Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
|
3813
|
-
# allow the value "24:00:00" for scenarios like business closing time.
|
3814
|
-
# Corresponds to the JSON property `hours`
|
3815
|
-
# @return [Fixnum]
|
3816
|
-
attr_accessor :hours
|
3817
|
-
|
3818
|
-
# Minutes of hour of day. Must be from 0 to 59.
|
3819
|
-
# Corresponds to the JSON property `minutes`
|
3820
|
-
# @return [Fixnum]
|
3821
|
-
attr_accessor :minutes
|
3822
|
-
|
3823
|
-
# Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
3824
|
-
# Corresponds to the JSON property `nanos`
|
3825
|
-
# @return [Fixnum]
|
3826
|
-
attr_accessor :nanos
|
3827
|
-
|
3828
|
-
# Seconds of minutes of the time. Must normally be from 0 to 59. An API may
|
3829
|
-
# allow the value 60 if it allows leap-seconds.
|
3830
|
-
# Corresponds to the JSON property `seconds`
|
3831
|
-
# @return [Fixnum]
|
3832
|
-
attr_accessor :seconds
|
3833
|
-
|
3834
|
-
def initialize(**args)
|
3835
|
-
update!(**args)
|
3836
|
-
end
|
3837
|
-
|
3838
|
-
# Update properties of this object
|
3839
|
-
def update!(**args)
|
3840
|
-
@hours = args[:hours] if args.key?(:hours)
|
3841
|
-
@minutes = args[:minutes] if args.key?(:minutes)
|
3842
|
-
@nanos = args[:nanos] if args.key?(:nanos)
|
3843
|
-
@seconds = args[:seconds] if args.key?(:seconds)
|
3844
|
-
end
|
3845
|
-
end
|
3846
|
-
|
3847
3853
|
# Options for creating a new transaction.
|
3848
3854
|
class TransactionOptions
|
3849
3855
|
include Google::Apis::Core::Hashable
|
@@ -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.70.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240804"
|
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
|
|
@@ -646,12 +670,6 @@ module Google
|
|
646
670
|
include Google::Apis::Core::JsonObjectSupport
|
647
671
|
end
|
648
672
|
|
649
|
-
class TimeOfDay
|
650
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
|
-
|
652
|
-
include Google::Apis::Core::JsonObjectSupport
|
653
|
-
end
|
654
|
-
|
655
673
|
class TransactionOptions
|
656
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
657
675
|
|
@@ -1088,11 +1106,16 @@ module Google
|
|
1088
1106
|
end
|
1089
1107
|
end
|
1090
1108
|
|
1091
|
-
class
|
1109
|
+
class GoogleFirestoreAdminV1CustomerManagedEncryptionOptions
|
1092
1110
|
# @private
|
1093
1111
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1094
|
-
property :
|
1112
|
+
property :kms_key_name, as: 'kmsKeyName'
|
1113
|
+
end
|
1114
|
+
end
|
1095
1115
|
|
1116
|
+
class GoogleFirestoreAdminV1DailyRecurrence
|
1117
|
+
# @private
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1096
1119
|
end
|
1097
1120
|
end
|
1098
1121
|
|
@@ -1126,6 +1149,18 @@ module Google
|
|
1126
1149
|
end
|
1127
1150
|
end
|
1128
1151
|
|
1152
|
+
class GoogleFirestoreAdminV1EncryptionConfig
|
1153
|
+
# @private
|
1154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1155
|
+
property :customer_managed_encryption, as: 'customerManagedEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CustomerManagedEncryptionOptions::Representation
|
1156
|
+
|
1157
|
+
property :google_default_encryption, as: 'googleDefaultEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions::Representation
|
1158
|
+
|
1159
|
+
property :use_source_encryption, as: 'useSourceEncryption', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1SourceEncryptionOptions::Representation
|
1160
|
+
|
1161
|
+
end
|
1162
|
+
end
|
1163
|
+
|
1129
1164
|
class GoogleFirestoreAdminV1ExportDocumentsMetadata
|
1130
1165
|
# @private
|
1131
1166
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1195,6 +1230,12 @@ module Google
|
|
1195
1230
|
end
|
1196
1231
|
end
|
1197
1232
|
|
1233
|
+
class GoogleFirestoreAdminV1GoogleDefaultEncryptionOptions
|
1234
|
+
# @private
|
1235
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1236
|
+
end
|
1237
|
+
end
|
1238
|
+
|
1198
1239
|
class GoogleFirestoreAdminV1ImportDocumentsMetadata
|
1199
1240
|
# @private
|
1200
1241
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1353,11 +1394,14 @@ module Google
|
|
1353
1394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1354
1395
|
property :backup, as: 'backup'
|
1355
1396
|
property :database_id, as: 'databaseId'
|
1356
|
-
property :
|
1357
|
-
property :use_backup_encryption, as: 'useBackupEncryption', class: Google::Apis::FirestoreV1::Empty, decorator: Google::Apis::FirestoreV1::Empty::Representation
|
1397
|
+
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1EncryptionConfig::Representation
|
1358
1398
|
|
1359
|
-
|
1399
|
+
end
|
1400
|
+
end
|
1360
1401
|
|
1402
|
+
class GoogleFirestoreAdminV1SourceEncryptionOptions
|
1403
|
+
# @private
|
1404
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1361
1405
|
end
|
1362
1406
|
end
|
1363
1407
|
|
@@ -1403,8 +1447,6 @@ module Google
|
|
1403
1447
|
# @private
|
1404
1448
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1405
1449
|
property :day, as: 'day'
|
1406
|
-
property :time, as: 'time', class: Google::Apis::FirestoreV1::TimeOfDay, decorator: Google::Apis::FirestoreV1::TimeOfDay::Representation
|
1407
|
-
|
1408
1450
|
end
|
1409
1451
|
end
|
1410
1452
|
|
@@ -1736,16 +1778,6 @@ module Google
|
|
1736
1778
|
end
|
1737
1779
|
end
|
1738
1780
|
|
1739
|
-
class TimeOfDay
|
1740
|
-
# @private
|
1741
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1742
|
-
property :hours, as: 'hours'
|
1743
|
-
property :minutes, as: 'minutes'
|
1744
|
-
property :nanos, as: 'nanos'
|
1745
|
-
property :seconds, as: 'seconds'
|
1746
|
-
end
|
1747
|
-
end
|
1748
|
-
|
1749
1781
|
class TransactionOptions
|
1750
1782
|
# @private
|
1751
1783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firestore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.70.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firestore_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.70.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: []
|