google-apis-firestore_v1 0.66.0 → 0.67.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa1f7c6a3a2b2f17c46a9e589aa60c220bd138ecacceac5c4d7d33d3ea23071b
4
- data.tar.gz: 6090d477238a30779205c4a5871ff87e59b6fdefd55857749fadab77f1b214ae
3
+ metadata.gz: 3b481467d958456adbd319282e0bf54e0ccef002e1c8bd436420aa4ac171c647
4
+ data.tar.gz: 8ff15f67e2207b3facef81bd4b9e9e396f591ded6a2bcf91464dd6aec7529882
5
5
  SHA512:
6
- metadata.gz: 76832f251fa85d87844b7b91c9ee743b18ed20286aa722d6cbeb70c5549e3bd77ac0cd33fd4dcd566c75c12a13710801e5ebea56adb279885c9bf97362d02ad5
7
- data.tar.gz: f48c2a21b484290c9352458b777b42e01e99245d21bf9a6763d532e08344f49a88db00a70a62947907058463a230c471f872d1883a8cefe12435c0da7e556d22
6
+ metadata.gz: 9dca20f7a7c7404ad4469e31121cb17707479c99a0c637024031419710fed15979fc5e956cd72c2229f5a8c1c440df0f9f8b706d6534c732d72ab1d2382ea2cb
7
+ data.tar.gz: f4f9f0c06b66fd24792281420728ef21a4764484d9fc66b1bc42c0cce794fa0c7194b7c679fabbbd64811730f38576075ba5d4137ef3a4f40db30be3caef58ee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.66.0 (2024-05-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20240521
@@ -1662,23 +1662,21 @@ module Google
1662
1662
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1IndexConfig]
1663
1663
  attr_accessor :index_config
1664
1664
 
1665
- # Required. A field name of the form `projects/`project_id`/databases/`
1665
+ # Required. A field name of the form: `projects/`project_id`/databases/`
1666
1666
  # database_id`/collectionGroups/`collection_id`/fields/`field_path`` A field
1667
- # path may 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 may be quoted
1670
- # using ` (backtick). The only character that needs to be escaped within a
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
1671
1671
  # quoted field path is the backtick character itself, escaped using a backslash.
1672
- # Special characters in field paths that must be quoted include: `*`, `.`, ``` (
1673
- # backtick), `[`, `]`, as well as any ascii symbolic characters. Examples: (Note:
1674
- # Comments here are written in markdown syntax, so there is an additional layer
1675
- # of backticks to represent a code block) `\`address.city\`` represents a field
1676
- # named `address.city`, not the map key `city` in the field `address`. `\`*\``
1677
- # represents a field named `*`, not any field. A special `Field` contains the
1678
- # default indexing settings for all fields. This field's resource name is: `
1679
- # projects/`project_id`/databases/`database_id`/collectionGroups/__default__/
1680
- # fields/*` Indexes defined on this `Field` will be applied to all fields which
1681
- # 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.
1682
1680
  # Corresponds to the JSON property `name`
1683
1681
  # @return [String]
1684
1682
  attr_accessor :name
@@ -2361,6 +2359,33 @@ module Google
2361
2359
  # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot]
2362
2360
  attr_accessor :database_snapshot
2363
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
+
2364
2389
  def initialize(**args)
2365
2390
  update!(**args)
2366
2391
  end
@@ -2370,6 +2395,9 @@ module Google
2370
2395
  @backup = args[:backup] if args.key?(:backup)
2371
2396
  @database_id = args[:database_id] if args.key?(:database_id)
2372
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)
2373
2401
  end
2374
2402
  end
2375
2403
 
@@ -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.66.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240521"
25
+ REVISION = "20240610"
26
26
  end
27
27
  end
28
28
  end
@@ -1333,6 +1333,11 @@ module Google
1333
1333
  property :database_id, as: 'databaseId'
1334
1334
  property :database_snapshot, as: 'databaseSnapshot', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1DatabaseSnapshot::Representation
1335
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
+
1336
1341
  end
1337
1342
  end
1338
1343
 
@@ -603,23 +603,21 @@ module Google
603
603
  # database, use the special `Field` with resource name: `projects/`project_id`/
604
604
  # databases/`database_id`/collectionGroups/__default__/fields/*`.
605
605
  # @param [String] name
606
- # Required. A field name of the form `projects/`project_id`/databases/`
606
+ # Required. A field name of the form: `projects/`project_id`/databases/`
607
607
  # database_id`/collectionGroups/`collection_id`/fields/`field_path`` A field
608
- # path may 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 may be quoted
611
- # using ` (backtick). The only character that needs to be escaped within a
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
612
612
  # quoted field path is the backtick character itself, escaped using a backslash.
613
- # Special characters in field paths that must be quoted include: `*`, `.`, ``` (
614
- # backtick), `[`, `]`, as well as any ascii symbolic characters. Examples: (Note:
615
- # Comments here are written in markdown syntax, so there is an additional layer
616
- # of backticks to represent a code block) `\`address.city\`` represents a field
617
- # named `address.city`, not the map key `city` in the field `address`. `\`*\``
618
- # represents a field named `*`, not any field. A special `Field` contains the
619
- # default indexing settings for all fields. This field's resource name is: `
620
- # projects/`project_id`/databases/`database_id`/collectionGroups/__default__/
621
- # fields/*` Indexes defined on this `Field` will be applied to all fields which
622
- # 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.
623
621
  # @param [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1Field] google_firestore_admin_v1_field_object
624
622
  # @param [String] update_mask
625
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.66.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-05-26 00:00:00.000000000 Z
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
@@ -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.66.0
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: []