google-apis-firestore_v1 0.59.0 → 0.61.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: fedadd7cdb074145da950c43314396e867330291a06dc596bcad1f45bb216489
4
- data.tar.gz: 718975c306c05e45058dc74f6bac3761424ba7962c1e3da48ab67ed43a1682de
3
+ metadata.gz: 625f2448fafee1a983eb4672b2fc604fe3f84a6f136ce8bf42fc44a065cf2535
4
+ data.tar.gz: b0f5f888b239d7f128809c1cd10bd1ef7a47be5cb9bf9b35c26a62ad047c992f
5
5
  SHA512:
6
- metadata.gz: 6341d7d6960d2b058e95a12f058ed3f96cb662a08f7aa2d9d820c0127ea063c098fa55d883007fdf6ae3d6f1a03590af8cfd62aff13a129a26e3fa30dbc89499
7
- data.tar.gz: 893d5843ecbcef7f59d97918ddfbcc087ccaab67573c47c434adb4ad64783b287bfae4279b694769ac95525206ea829d3e3ea5c53b830f8621966fa9c0ce0da4
6
+ metadata.gz: 3fe19eb50de5b2b7ec8abb67d13e60295a573cf254c1f29d37959ae0f91d497ae138a912634a8c54c5c1e200cdd47dfe9ecf28a805c5d90b4967ca3cdecf1234
7
+ data.tar.gz: 7976c3701aaafddcdee8eeec5aa8d0fe385e44a866d039a62f8960888568656ff5eea69a082e7d07a750f90d7ba12bf6bf46c964f1e0e162e89c9e9b28bfbeb8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-firestore_v1
2
2
 
3
+ ### v0.61.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240226
6
+
7
+ ### v0.60.0 (2024-02-24)
8
+
9
+ * Regenerated from discovery document revision 20240215
10
+ * Regenerated using generator version 0.14.0
11
+
3
12
  ### v0.59.0 (2024-02-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20240208
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/firestore) may provide guid
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -869,29 +869,6 @@ module Google
869
869
  end
870
870
  end
871
871
 
872
- # Explain options for the query.
873
- class ExplainOptions
874
- include Google::Apis::Core::Hashable
875
-
876
- # Optional. Whether to execute this query. When false (the default), the query
877
- # will be planned, returning only metrics from the planning stages. When true,
878
- # the query will be planned and executed, returning the full query results along
879
- # with both planning and execution stage metrics.
880
- # Corresponds to the JSON property `analyze`
881
- # @return [Boolean]
882
- attr_accessor :analyze
883
- alias_method :analyze?, :analyze
884
-
885
- def initialize(**args)
886
- update!(**args)
887
- end
888
-
889
- # Update properties of this object
890
- def update!(**args)
891
- @analyze = args[:analyze] if args.key?(:analyze)
892
- end
893
- end
894
-
895
872
  # A filter on a specific field.
896
873
  class FieldFilter
897
874
  include Google::Apis::Core::Hashable
@@ -1149,42 +1126,6 @@ module Google
1149
1126
  end
1150
1127
  end
1151
1128
 
1152
- # The CMEK (Customer Managed Encryption Key) configuration for a Firestore
1153
- # database. If not present, the database is secured by the default Google
1154
- # encryption key.
1155
- class GoogleFirestoreAdminV1CmekConfig
1156
- include Google::Apis::Core::Hashable
1157
-
1158
- # Output only. Currently in-use [KMS key versions](https://cloud.google.com/kms/
1159
- # docs/resource-hierarchy#key_versions). During [key rotation](https://cloud.
1160
- # google.com/kms/docs/key-rotation), there can be multiple in-use key versions.
1161
- # The expected format is `projects/`project_id`/locations/`kms_location`/
1162
- # keyRings/`key_ring`/cryptoKeys/`crypto_key`/cryptoKeyVersions/`key_version``.
1163
- # Corresponds to the JSON property `activeKeyVersion`
1164
- # @return [Array<String>]
1165
- attr_accessor :active_key_version
1166
-
1167
- # Required. Only keys in the same location as this database are allowed to be
1168
- # used for encryption. For Firestore's nam5 multi-region, this corresponds to
1169
- # Cloud KMS multi-region us. For Firestore's eur3 multi-region, this corresponds
1170
- # to Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/
1171
- # locations. The expected format is `projects/`project_id`/locations/`
1172
- # kms_location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
1173
- # Corresponds to the JSON property `kmsKeyName`
1174
- # @return [String]
1175
- attr_accessor :kms_key_name
1176
-
1177
- def initialize(**args)
1178
- update!(**args)
1179
- end
1180
-
1181
- # Update properties of this object
1182
- def update!(**args)
1183
- @active_key_version = args[:active_key_version] if args.key?(:active_key_version)
1184
- @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
1185
- end
1186
- end
1187
-
1188
1129
  # Metadata related to the create database operation.
1189
1130
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
1190
1131
  include Google::Apis::Core::Hashable
@@ -1221,13 +1162,6 @@ module Google
1221
1162
  # @return [String]
1222
1163
  attr_accessor :app_engine_integration_mode
1223
1164
 
1224
- # The CMEK (Customer Managed Encryption Key) configuration for a Firestore
1225
- # database. If not present, the database is secured by the default Google
1226
- # encryption key.
1227
- # Corresponds to the JSON property `cmekConfig`
1228
- # @return [Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CmekConfig]
1229
- attr_accessor :cmek_config
1230
-
1231
1165
  # The concurrency control mode to use for this database.
1232
1166
  # Corresponds to the JSON property `concurrencyMode`
1233
1167
  # @return [String]
@@ -1321,7 +1255,6 @@ module Google
1321
1255
  # Update properties of this object
1322
1256
  def update!(**args)
1323
1257
  @app_engine_integration_mode = args[:app_engine_integration_mode] if args.key?(:app_engine_integration_mode)
1324
- @cmek_config = args[:cmek_config] if args.key?(:cmek_config)
1325
1258
  @concurrency_mode = args[:concurrency_mode] if args.key?(:concurrency_mode)
1326
1259
  @create_time = args[:create_time] if args.key?(:create_time)
1327
1260
  @delete_protection_state = args[:delete_protection_state] if args.key?(:delete_protection_state)
@@ -3040,11 +2973,6 @@ module Google
3040
2973
  class RunAggregationQueryRequest
3041
2974
  include Google::Apis::Core::Hashable
3042
2975
 
3043
- # Explain options for the query.
3044
- # Corresponds to the JSON property `explainOptions`
3045
- # @return [Google::Apis::FirestoreV1::ExplainOptions]
3046
- attr_accessor :explain_options
3047
-
3048
2976
  # Options for creating a new transaction.
3049
2977
  # Corresponds to the JSON property `newTransaction`
3050
2978
  # @return [Google::Apis::FirestoreV1::TransactionOptions]
@@ -3075,7 +3003,6 @@ module Google
3075
3003
 
3076
3004
  # Update properties of this object
3077
3005
  def update!(**args)
3078
- @explain_options = args[:explain_options] if args.key?(:explain_options)
3079
3006
  @new_transaction = args[:new_transaction] if args.key?(:new_transaction)
3080
3007
  @read_time = args[:read_time] if args.key?(:read_time)
3081
3008
  @structured_aggregation_query = args[:structured_aggregation_query] if args.key?(:structured_aggregation_query)
@@ -3126,11 +3053,6 @@ module Google
3126
3053
  class RunQueryRequest
3127
3054
  include Google::Apis::Core::Hashable
3128
3055
 
3129
- # Explain options for the query.
3130
- # Corresponds to the JSON property `explainOptions`
3131
- # @return [Google::Apis::FirestoreV1::ExplainOptions]
3132
- attr_accessor :explain_options
3133
-
3134
3056
  # Options for creating a new transaction.
3135
3057
  # Corresponds to the JSON property `newTransaction`
3136
3058
  # @return [Google::Apis::FirestoreV1::TransactionOptions]
@@ -3162,7 +3084,6 @@ module Google
3162
3084
 
3163
3085
  # Update properties of this object
3164
3086
  def update!(**args)
3165
- @explain_options = args[:explain_options] if args.key?(:explain_options)
3166
3087
  @new_transaction = args[:new_transaction] if args.key?(:new_transaction)
3167
3088
  @read_time = args[:read_time] if args.key?(:read_time)
3168
3089
  @structured_query = args[:structured_query] if args.key?(:structured_query)
@@ -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.59.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240208"
25
+ REVISION = "20240226"
26
26
  end
27
27
  end
28
28
  end
@@ -184,12 +184,6 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
- class ExplainOptions
188
- class Representation < Google::Apis::Core::JsonRepresentation; end
189
-
190
- include Google::Apis::Core::JsonObjectSupport
191
- end
192
-
193
187
  class FieldFilter
194
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
189
 
@@ -226,12 +220,6 @@ module Google
226
220
  include Google::Apis::Core::JsonObjectSupport
227
221
  end
228
222
 
229
- class GoogleFirestoreAdminV1CmekConfig
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
223
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
236
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
225
 
@@ -899,13 +887,6 @@ module Google
899
887
  end
900
888
  end
901
889
 
902
- class ExplainOptions
903
- # @private
904
- class Representation < Google::Apis::Core::JsonRepresentation
905
- property :analyze, as: 'analyze'
906
- end
907
- end
908
-
909
890
  class FieldFilter
910
891
  # @private
911
892
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -982,14 +963,6 @@ module Google
982
963
  end
983
964
  end
984
965
 
985
- class GoogleFirestoreAdminV1CmekConfig
986
- # @private
987
- class Representation < Google::Apis::Core::JsonRepresentation
988
- collection :active_key_version, as: 'activeKeyVersion'
989
- property :kms_key_name, as: 'kmsKeyName'
990
- end
991
- end
992
-
993
966
  class GoogleFirestoreAdminV1CreateDatabaseMetadata
994
967
  # @private
995
968
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1006,8 +979,6 @@ module Google
1006
979
  # @private
1007
980
  class Representation < Google::Apis::Core::JsonRepresentation
1008
981
  property :app_engine_integration_mode, as: 'appEngineIntegrationMode'
1009
- property :cmek_config, as: 'cmekConfig', class: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CmekConfig, decorator: Google::Apis::FirestoreV1::GoogleFirestoreAdminV1CmekConfig::Representation
1010
-
1011
982
  property :concurrency_mode, as: 'concurrencyMode'
1012
983
  property :create_time, as: 'createTime'
1013
984
  property :delete_protection_state, as: 'deleteProtectionState'
@@ -1509,8 +1480,6 @@ module Google
1509
1480
  class RunAggregationQueryRequest
1510
1481
  # @private
1511
1482
  class Representation < Google::Apis::Core::JsonRepresentation
1512
- property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
1513
-
1514
1483
  property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
1515
1484
 
1516
1485
  property :read_time, as: 'readTime'
@@ -1533,8 +1502,6 @@ module Google
1533
1502
  class RunQueryRequest
1534
1503
  # @private
1535
1504
  class Representation < Google::Apis::Core::JsonRepresentation
1536
- property :explain_options, as: 'explainOptions', class: Google::Apis::FirestoreV1::ExplainOptions, decorator: Google::Apis::FirestoreV1::ExplainOptions::Representation
1537
-
1538
1505
  property :new_transaction, as: 'newTransaction', class: Google::Apis::FirestoreV1::TransactionOptions, decorator: Google::Apis::FirestoreV1::TransactionOptions::Representation
1539
1506
 
1540
1507
  property :read_time, as: 'readTime'
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.59.0
4
+ version: 0.61.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-02-18 00:00:00.000000000 Z
11
+ date: 2024-03-03 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.12.0
19
+ version: 0.14.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.12.0
29
+ version: 0.14.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.59.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firestore_v1/v0.61.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Firestore API V1