google-apis-firestore_v1 0.65.0 → 0.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b481467d958456adbd319282e0bf54e0ccef002e1c8bd436420aa4ac171c647
|
4
|
+
data.tar.gz: 8ff15f67e2207b3facef81bd4b9e9e396f591ded6a2bcf91464dd6aec7529882
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9dca20f7a7c7404ad4469e31121cb17707479c99a0c637024031419710fed15979fc5e956cd72c2229f5a8c1c440df0f9f8b706d6534c732d72ab1d2382ea2cb
|
7
|
+
data.tar.gz: f4f9f0c06b66fd24792281420728ef21a4764484d9fc66b1bc42c0cce794fa0c7194b7c679fabbbd64811730f38576075ba5d4137ef3a4f40db30be3caef58ee
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-firestore_v1
|
2
2
|
|
3
|
+
### v0.67.0 (2024-06-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240610
|
6
|
+
|
7
|
+
### v0.66.0 (2024-05-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240521
|
10
|
+
* Regenerated using generator version 0.15.0
|
11
|
+
|
3
12
|
### v0.65.0 (2024-04-28)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240420
|
@@ -1309,12 +1309,20 @@ module Google
|
|
1309
1309
|
class GoogleFirestoreAdminV1DailyRecurrence
|
1310
1310
|
include Google::Apis::Core::Hashable
|
1311
1311
|
|
1312
|
+
# Represents a time of day. The date and time zone are either not significant or
|
1313
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
1314
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
1315
|
+
# Corresponds to the JSON property `time`
|
1316
|
+
# @return [Google::Apis::FirestoreV1::TimeOfDay]
|
1317
|
+
attr_accessor :time
|
1318
|
+
|
1312
1319
|
def initialize(**args)
|
1313
1320
|
update!(**args)
|
1314
1321
|
end
|
1315
1322
|
|
1316
1323
|
# Update properties of this object
|
1317
1324
|
def update!(**args)
|
1325
|
+
@time = args[:time] if args.key?(:time)
|
1318
1326
|
end
|
1319
1327
|
end
|
1320
1328
|
|
@@ -1350,6 +1358,12 @@ module Google
|
|
1350
1358
|
# @return [String]
|
1351
1359
|
attr_accessor :delete_protection_state
|
1352
1360
|
|
1361
|
+
# Output only. The timestamp at which this database was deleted. Only set if the
|
1362
|
+
# database has been deleted.
|
1363
|
+
# Corresponds to the JSON property `deleteTime`
|
1364
|
+
# @return [String]
|
1365
|
+
attr_accessor :delete_time
|
1366
|
+
|
1353
1367
|
# Output only. The earliest timestamp at which older versions of the data can be
|
1354
1368
|
# read from the database. See [version_retention_period] above; this field is
|
1355
1369
|
# populated with `now - version_retention_period`. This value is continuously
|
@@ -1393,6 +1407,12 @@ module Google
|
|
1393
1407
|
# @return [String]
|
1394
1408
|
attr_accessor :point_in_time_recovery_enablement
|
1395
1409
|
|
1410
|
+
# Output only. The database resource's prior database ID. This field is only
|
1411
|
+
# populated for deleted databases.
|
1412
|
+
# Corresponds to the JSON property `previousId`
|
1413
|
+
# @return [String]
|
1414
|
+
attr_accessor :previous_id
|
1415
|
+
|
1396
1416
|
# The type of the database. See https://cloud.google.com/datastore/docs/
|
1397
1417
|
# firestore-or-datastore for information about how to choose.
|
1398
1418
|
# Corresponds to the JSON property `type`
|
@@ -1431,12 +1451,14 @@ module Google
|
|
1431
1451
|
@concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
|
1432
1452
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1433
1453
|
@delete_protection_state = args[:delete_protection_state] if args.key?(:delete_protection_state)
|
1454
|
+
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1434
1455
|
@earliest_version_time = args[:earliest_version_time] if args.key?(:earliest_version_time)
|
1435
1456
|
@etag = args[:etag] if args.key?(:etag)
|
1436
1457
|
@key_prefix = args[:key_prefix] if args.key?(:key_prefix)
|
1437
1458
|
@location_id = args[:location_id] if args.key?(:location_id)
|
1438
1459
|
@name = args[:name] if args.key?(:name)
|
1439
1460
|
@point_in_time_recovery_enablement = args[:point_in_time_recovery_enablement] if args.key?(:point_in_time_recovery_enablement)
|
1461
|
+
@previous_id = args[:previous_id] if args.key?(:previous_id)
|
1440
1462
|
@type = args[:type] if args.key?(:type)
|
1441
1463
|
@uid = args[:uid] if args.key?(:uid)
|
1442
1464
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1560,7 +1582,8 @@ module Google
|
|
1560
1582
|
class GoogleFirestoreAdminV1ExportDocumentsRequest
|
1561
1583
|
include Google::Apis::Core::Hashable
|
1562
1584
|
|
1563
|
-
# Which collection ids to export. Unspecified means all collections.
|
1585
|
+
# Which collection ids to export. Unspecified means all collections. Each
|
1586
|
+
# collection id in this list must be unique.
|
1564
1587
|
# Corresponds to the JSON property `collectionIds`
|
1565
1588
|
# @return [Array<String>]
|
1566
1589
|
attr_accessor :collection_ids
|
@@ -1639,23 +1662,21 @@ module Google
|
|
1639
1662
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexConfig]
|
1640
1663
|
attr_accessor :index_config
|
1641
1664
|
|
1642
|
-
# Required. A field name of the form `projects/`project_id`/databases/`
|
1665
|
+
# Required. A field name of the form: `projects/`project_id`/databases/`
|
1643
1666
|
# database_id`/collectionGroups/`collection_id`/fields/`field_path`` A field
|
1644
|
-
# path
|
1645
|
-
# map_value , e.g. `address.city`, or a special field path. The only valid
|
1646
|
-
# special field is `*`, which represents any field. Field paths
|
1647
|
-
# using ` (backtick). The only character that
|
1667
|
+
# path can be a simple field name, e.g. `address` or a path to fields within `
|
1668
|
+
# map_value` , e.g. `address.city`, or a special field path. The only valid
|
1669
|
+
# special field is `*`, which represents any field. Field paths can be quoted
|
1670
|
+
# using `` ` `` (backtick). The only character that must be escaped within a
|
1648
1671
|
# quoted field path is the backtick character itself, escaped using a backslash.
|
1649
|
-
# Special characters in field paths that must be quoted include: `*`, `.`,
|
1650
|
-
# backtick), `[`, `]`, as well as any ascii symbolic characters. Examples:
|
1651
|
-
#
|
1652
|
-
#
|
1653
|
-
#
|
1654
|
-
#
|
1655
|
-
#
|
1656
|
-
#
|
1657
|
-
# fields/*` Indexes defined on this `Field` will be applied to all fields which
|
1658
|
-
# do not have their own `Field` index configuration.
|
1672
|
+
# Special characters in field paths that must be quoted include: `*`, `.`, `` ` `
|
1673
|
+
# ` (backtick), `[`, `]`, as well as any ascii symbolic characters. Examples: ``
|
1674
|
+
# `address.city` `` represents a field named `address.city`, not the map key `
|
1675
|
+
# city` in the field `address`. `` `*` `` represents a field named `*`, not any
|
1676
|
+
# field. A special `Field` contains the default indexing settings for all fields.
|
1677
|
+
# This field's resource name is: `projects/`project_id`/databases/`database_id`/
|
1678
|
+
# collectionGroups/__default__/fields/*` Indexes defined on this `Field` will be
|
1679
|
+
# applied to all fields which do not have their own `Field` index configuration.
|
1659
1680
|
# Corresponds to the JSON property `name`
|
1660
1681
|
# @return [String]
|
1661
1682
|
attr_accessor :name
|
@@ -1833,7 +1854,7 @@ module Google
|
|
1833
1854
|
include Google::Apis::Core::Hashable
|
1834
1855
|
|
1835
1856
|
# Which collection ids to import. Unspecified means all collections included in
|
1836
|
-
# the import.
|
1857
|
+
# the import. Each collection id in this list must be unique.
|
1837
1858
|
# Corresponds to the JSON property `collectionIds`
|
1838
1859
|
# @return [Array<String>]
|
1839
1860
|
attr_accessor :collection_ids
|
@@ -2338,6 +2359,33 @@ module Google
|
|
2338
2359
|
# @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot]
|
2339
2360
|
attr_accessor :database_snapshot
|
2340
2361
|
|
2362
|
+
# Use Customer Managed Encryption Keys (CMEK) for encryption. Only keys in the
|
2363
|
+
# same location as this database are allowed to be used for encryption. For
|
2364
|
+
# Firestore's nam5 multi-region, this corresponds to Cloud KMS multi-region us.
|
2365
|
+
# For Firestore's eur3 multi-region, this corresponds to Cloud KMS multi-region
|
2366
|
+
# europe. See https://cloud.google.com/kms/docs/locations. The expected format
|
2367
|
+
# is `projects/`project_id`/locations/`kms_location`/keyRings/`key_ring`/
|
2368
|
+
# cryptoKeys/`crypto_key``.
|
2369
|
+
# Corresponds to the JSON property `kmsKeyName`
|
2370
|
+
# @return [String]
|
2371
|
+
attr_accessor :kms_key_name
|
2372
|
+
|
2373
|
+
# A generic empty message that you can re-use to avoid defining duplicated empty
|
2374
|
+
# messages in your APIs. A typical example is to use it as the request or the
|
2375
|
+
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
2376
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
2377
|
+
# Corresponds to the JSON property `useBackupEncryption`
|
2378
|
+
# @return [Google::Apis::FirestoreV1::Empty]
|
2379
|
+
attr_accessor :use_backup_encryption
|
2380
|
+
|
2381
|
+
# A generic empty message that you can re-use to avoid defining duplicated empty
|
2382
|
+
# messages in your APIs. A typical example is to use it as the request or the
|
2383
|
+
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
2384
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
2385
|
+
# Corresponds to the JSON property `useGoogleDefaultEncryption`
|
2386
|
+
# @return [Google::Apis::FirestoreV1::Empty]
|
2387
|
+
attr_accessor :use_google_default_encryption
|
2388
|
+
|
2341
2389
|
def initialize(**args)
|
2342
2390
|
update!(**args)
|
2343
2391
|
end
|
@@ -2347,6 +2395,9 @@ module Google
|
|
2347
2395
|
@backup = args[:backup] if args.key?(:backup)
|
2348
2396
|
@database_id = args[:database_id] if args.key?(:database_id)
|
2349
2397
|
@database_snapshot = args[:database_snapshot] if args.key?(:database_snapshot)
|
2398
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
2399
|
+
@use_backup_encryption = args[:use_backup_encryption] if args.key?(:use_backup_encryption)
|
2400
|
+
@use_google_default_encryption = args[:use_google_default_encryption] if args.key?(:use_google_default_encryption)
|
2350
2401
|
end
|
2351
2402
|
end
|
2352
2403
|
|
@@ -2476,6 +2527,13 @@ module Google
|
|
2476
2527
|
# @return [String]
|
2477
2528
|
attr_accessor :day
|
2478
2529
|
|
2530
|
+
# Represents a time of day. The date and time zone are either not significant or
|
2531
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
2532
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
2533
|
+
# Corresponds to the JSON property `time`
|
2534
|
+
# @return [Google::Apis::FirestoreV1::TimeOfDay]
|
2535
|
+
attr_accessor :time
|
2536
|
+
|
2479
2537
|
def initialize(**args)
|
2480
2538
|
update!(**args)
|
2481
2539
|
end
|
@@ -2483,6 +2541,7 @@ module Google
|
|
2483
2541
|
# Update properties of this object
|
2484
2542
|
def update!(**args)
|
2485
2543
|
@day = args[:day] if args.key?(:day)
|
2544
|
+
@time = args[:time] if args.key?(:time)
|
2486
2545
|
end
|
2487
2546
|
end
|
2488
2547
|
|
@@ -3676,6 +3735,47 @@ module Google
|
|
3676
3735
|
end
|
3677
3736
|
end
|
3678
3737
|
|
3738
|
+
# Represents a time of day. The date and time zone are either not significant or
|
3739
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
3740
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
3741
|
+
class TimeOfDay
|
3742
|
+
include Google::Apis::Core::Hashable
|
3743
|
+
|
3744
|
+
# Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to
|
3745
|
+
# allow the value "24:00:00" for scenarios like business closing time.
|
3746
|
+
# Corresponds to the JSON property `hours`
|
3747
|
+
# @return [Fixnum]
|
3748
|
+
attr_accessor :hours
|
3749
|
+
|
3750
|
+
# Minutes of hour of day. Must be from 0 to 59.
|
3751
|
+
# Corresponds to the JSON property `minutes`
|
3752
|
+
# @return [Fixnum]
|
3753
|
+
attr_accessor :minutes
|
3754
|
+
|
3755
|
+
# Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
|
3756
|
+
# Corresponds to the JSON property `nanos`
|
3757
|
+
# @return [Fixnum]
|
3758
|
+
attr_accessor :nanos
|
3759
|
+
|
3760
|
+
# Seconds of minutes of the time. Must normally be from 0 to 59. An API may
|
3761
|
+
# allow the value 60 if it allows leap-seconds.
|
3762
|
+
# Corresponds to the JSON property `seconds`
|
3763
|
+
# @return [Fixnum]
|
3764
|
+
attr_accessor :seconds
|
3765
|
+
|
3766
|
+
def initialize(**args)
|
3767
|
+
update!(**args)
|
3768
|
+
end
|
3769
|
+
|
3770
|
+
# Update properties of this object
|
3771
|
+
def update!(**args)
|
3772
|
+
@hours = args[:hours] if args.key?(:hours)
|
3773
|
+
@minutes = args[:minutes] if args.key?(:minutes)
|
3774
|
+
@nanos = args[:nanos] if args.key?(:nanos)
|
3775
|
+
@seconds = args[:seconds] if args.key?(:seconds)
|
3776
|
+
end
|
3777
|
+
end
|
3778
|
+
|
3679
3779
|
# Options for creating a new transaction.
|
3680
3780
|
class TransactionOptions
|
3681
3781
|
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.67.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240610"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -640,6 +640,12 @@ module Google
|
|
640
640
|
include Google::Apis::Core::JsonObjectSupport
|
641
641
|
end
|
642
642
|
|
643
|
+
class TimeOfDay
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
|
+
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
647
|
+
end
|
648
|
+
|
643
649
|
class TransactionOptions
|
644
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
651
|
|
@@ -1055,6 +1061,8 @@ module Google
|
|
1055
1061
|
class GoogleFirestoreAdminV1DailyRecurrence
|
1056
1062
|
# @private
|
1057
1063
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1064
|
+
property :time, as: 'time', class: Google::Apis::FirestoreV1::TimeOfDay, decorator: Google::Apis::FirestoreV1::TimeOfDay::Representation
|
1065
|
+
|
1058
1066
|
end
|
1059
1067
|
end
|
1060
1068
|
|
@@ -1067,12 +1075,14 @@ module Google
|
|
1067
1075
|
property :concurrency_mode, as: 'concurrencyMode'
|
1068
1076
|
property :create_time, as: 'createTime'
|
1069
1077
|
property :delete_protection_state, as: 'deleteProtectionState'
|
1078
|
+
property :delete_time, as: 'deleteTime'
|
1070
1079
|
property :earliest_version_time, as: 'earliestVersionTime'
|
1071
1080
|
property :etag, as: 'etag'
|
1072
1081
|
property :key_prefix, as: 'keyPrefix'
|
1073
1082
|
property :location_id, as: 'locationId'
|
1074
1083
|
property :name, as: 'name'
|
1075
1084
|
property :point_in_time_recovery_enablement, as: 'pointInTimeRecoveryEnablement'
|
1085
|
+
property :previous_id, as: 'previousId'
|
1076
1086
|
property :type, as: 'type'
|
1077
1087
|
property :uid, as: 'uid'
|
1078
1088
|
property :update_time, as: 'updateTime'
|
@@ -1323,6 +1333,11 @@ module Google
|
|
1323
1333
|
property :database_id, as: 'databaseId'
|
1324
1334
|
property :database_snapshot, as: 'databaseSnapshot', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot::Representation
|
1325
1335
|
|
1336
|
+
property :kms_key_name, as: 'kmsKeyName'
|
1337
|
+
property :use_backup_encryption, as: 'useBackupEncryption', class: Google::Apis::FirestoreV1::Empty, decorator: Google::Apis::FirestoreV1::Empty::Representation
|
1338
|
+
|
1339
|
+
property :use_google_default_encryption, as: 'useGoogleDefaultEncryption', class: Google::Apis::FirestoreV1::Empty, decorator: Google::Apis::FirestoreV1::Empty::Representation
|
1340
|
+
|
1326
1341
|
end
|
1327
1342
|
end
|
1328
1343
|
|
@@ -1368,6 +1383,8 @@ module Google
|
|
1368
1383
|
# @private
|
1369
1384
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1370
1385
|
property :day, as: 'day'
|
1386
|
+
property :time, as: 'time', class: Google::Apis::FirestoreV1::TimeOfDay, decorator: Google::Apis::FirestoreV1::TimeOfDay::Representation
|
1387
|
+
|
1371
1388
|
end
|
1372
1389
|
end
|
1373
1390
|
|
@@ -1699,6 +1716,16 @@ module Google
|
|
1699
1716
|
end
|
1700
1717
|
end
|
1701
1718
|
|
1719
|
+
class TimeOfDay
|
1720
|
+
# @private
|
1721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1722
|
+
property :hours, as: 'hours'
|
1723
|
+
property :minutes, as: 'minutes'
|
1724
|
+
property :nanos, as: 'nanos'
|
1725
|
+
property :seconds, as: 'seconds'
|
1726
|
+
end
|
1727
|
+
end
|
1728
|
+
|
1702
1729
|
class TransactionOptions
|
1703
1730
|
# @private
|
1704
1731
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -240,6 +240,8 @@ module Google
|
|
240
240
|
# List all the databases in the project.
|
241
241
|
# @param [String] parent
|
242
242
|
# Required. A parent name of the form `projects/`project_id``
|
243
|
+
# @param [Boolean] show_deleted
|
244
|
+
# If true, also returns deleted resources.
|
243
245
|
# @param [String] fields
|
244
246
|
# Selector specifying which fields to include in a partial response.
|
245
247
|
# @param [String] quota_user
|
@@ -257,11 +259,12 @@ module Google
|
|
257
259
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
258
260
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
259
261
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
260
|
-
def list_project_databases(parent, fields: nil, quota_user: nil, options: nil, &block)
|
262
|
+
def list_project_databases(parent, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
|
261
263
|
command = make_simple_command(:get, 'v1/{+parent}/databases', options)
|
262
264
|
command.response_representation = Google::Apis::FirestoreV1::GoogleFirestoreAdminV1ListDatabasesResponse::Representation
|
263
265
|
command.response_class = Google::Apis::FirestoreV1::GoogleFirestoreAdminV1ListDatabasesResponse
|
264
266
|
command.params['parent'] = parent unless parent.nil?
|
267
|
+
command.query['showDeleted'] = show_deleted unless show_deleted.nil?
|
265
268
|
command.query['fields'] = fields unless fields.nil?
|
266
269
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
267
270
|
execute_or_queue_command(command, &block)
|
@@ -600,23 +603,21 @@ module Google
|
|
600
603
|
# database, use the special `Field` with resource name: `projects/`project_id`/
|
601
604
|
# databases/`database_id`/collectionGroups/__default__/fields/*`.
|
602
605
|
# @param [String] name
|
603
|
-
# Required. A field name of the form `projects/`project_id`/databases/`
|
606
|
+
# Required. A field name of the form: `projects/`project_id`/databases/`
|
604
607
|
# database_id`/collectionGroups/`collection_id`/fields/`field_path`` A field
|
605
|
-
# path
|
606
|
-
# map_value , e.g. `address.city`, or a special field path. The only valid
|
607
|
-
# special field is `*`, which represents any field. Field paths
|
608
|
-
# using ` (backtick). The only character that
|
608
|
+
# path can be a simple field name, e.g. `address` or a path to fields within `
|
609
|
+
# map_value` , e.g. `address.city`, or a special field path. The only valid
|
610
|
+
# special field is `*`, which represents any field. Field paths can be quoted
|
611
|
+
# using `` ` `` (backtick). The only character that must be escaped within a
|
609
612
|
# quoted field path is the backtick character itself, escaped using a backslash.
|
610
|
-
# Special characters in field paths that must be quoted include: `*`, `.`,
|
611
|
-
# backtick), `[`, `]`, as well as any ascii symbolic characters. Examples:
|
612
|
-
#
|
613
|
-
#
|
614
|
-
#
|
615
|
-
#
|
616
|
-
#
|
617
|
-
#
|
618
|
-
# fields/*` Indexes defined on this `Field` will be applied to all fields which
|
619
|
-
# do not have their own `Field` index configuration.
|
613
|
+
# Special characters in field paths that must be quoted include: `*`, `.`, `` ` `
|
614
|
+
# ` (backtick), `[`, `]`, as well as any ascii symbolic characters. Examples: ``
|
615
|
+
# `address.city` `` represents a field named `address.city`, not the map key `
|
616
|
+
# city` in the field `address`. `` `*` `` represents a field named `*`, not any
|
617
|
+
# field. A special `Field` contains the default indexing settings for all fields.
|
618
|
+
# This field's resource name is: `projects/`project_id`/databases/`database_id`/
|
619
|
+
# collectionGroups/__default__/fields/*` Indexes defined on this `Field` will be
|
620
|
+
# applied to all fields which do not have their own `Field` index configuration.
|
620
621
|
# @param [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Field] google_firestore_admin_v1_field_object
|
621
622
|
# @param [String] update_mask
|
622
623
|
# A mask, relative to the field. If specified, only configuration specified by
|
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.67.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-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.67.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: []
|