google-apis-datacatalog_v1 0.52.0 → 0.53.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: f9c37fb948eaf52db47ff84af4796dc1244e2f4e809c14e98b051f47c6d2dc42
4
- data.tar.gz: 1e9a929b1d71bfb7bdb21ba2f7fc79392baedcd1277565f2d0289ea6884ec134
3
+ metadata.gz: 0523ed6770483c29cf7634ef39d6ffabe9c613a8734defdb8f4849a6568843c5
4
+ data.tar.gz: 542be581e5f643848fd16bf7d1f2cecede512d3e43af06252938170da78bbdc5
5
5
  SHA512:
6
- metadata.gz: 11798341c9d0894755b09dee16e7755942df79deefdb58d047e4ab39d470643d138e9a0d3618a7ba583a73fad02cbe7f296dc8486d43a32492655757b3ff1cc6
7
- data.tar.gz: b2d85535568eb5ada8a4e2a711f63900158e9b1eadaf0bb8d964769bd256a977121ab7d3b5e2b378fb2eebf193213322ab84dd75311e76f085d6d62adc60cead
6
+ metadata.gz: 56623e3c252cb63c2fdf5dd03f27950775a606b45b8bf72aff2681f74687516e895267733bd7ff30e6c2aedd5542e9e4211794fd7d443a5b2f902f297f8cfc10
7
+ data.tar.gz: a6711b9498a333cbc5f0a141c1c10243ad39418ac850c6e6c61eeb9c8d82d7bef9e2f6d06b1b399a45cf1826103de67a6b5a1986d09275b67018d0a4ee1653ec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-datacatalog_v1
2
2
 
3
+ ### v0.53.0 (2024-10-27)
4
+
5
+ * Regenerated from discovery document revision 20241021
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.52.0 (2024-05-19)
4
9
 
5
10
  * Regenerated from discovery document revision 20240511
@@ -1282,6 +1282,15 @@ module Google
1282
1282
  # @return [String]
1283
1283
  attr_accessor :name
1284
1284
 
1285
+ # Optional. When set to [true], it means DataCatalog EntryGroup was transferred
1286
+ # to Dataplex Catalog Service. It makes EntryGroup and its Entries to be read-
1287
+ # only in DataCatalog. However, new Tags on EntryGroup and its Entries can be
1288
+ # created. After setting the flag to [true] it cannot be unset.
1289
+ # Corresponds to the JSON property `transferredToDataplex`
1290
+ # @return [Boolean]
1291
+ attr_accessor :transferred_to_dataplex
1292
+ alias_method :transferred_to_dataplex?, :transferred_to_dataplex
1293
+
1285
1294
  def initialize(**args)
1286
1295
  update!(**args)
1287
1296
  end
@@ -1292,6 +1301,7 @@ module Google
1292
1301
  @description = args[:description] if args.key?(:description)
1293
1302
  @display_name = args[:display_name] if args.key?(:display_name)
1294
1303
  @name = args[:name] if args.key?(:name)
1304
+ @transferred_to_dataplex = args[:transferred_to_dataplex] if args.key?(:transferred_to_dataplex)
1295
1305
  end
1296
1306
  end
1297
1307
 
@@ -1842,6 +1852,33 @@ module Google
1842
1852
  end
1843
1853
  end
1844
1854
 
1855
+ # The configuration related to the migration to Dataplex applied to an
1856
+ # organization or project. It is the response message for SetConfig and
1857
+ # RetrieveEffectiveConfig.
1858
+ class GoogleCloudDatacatalogV1MigrationConfig
1859
+ include Google::Apis::Core::Hashable
1860
+
1861
+ # Opt-in status for the UI switch to Dataplex.
1862
+ # Corresponds to the JSON property `catalogUiExperience`
1863
+ # @return [String]
1864
+ attr_accessor :catalog_ui_experience
1865
+
1866
+ # Opt-in status for the migration of Tag Templates to Dataplex.
1867
+ # Corresponds to the JSON property `tagTemplateMigration`
1868
+ # @return [String]
1869
+ attr_accessor :tag_template_migration
1870
+
1871
+ def initialize(**args)
1872
+ update!(**args)
1873
+ end
1874
+
1875
+ # Update properties of this object
1876
+ def update!(**args)
1877
+ @catalog_ui_experience = args[:catalog_ui_experience] if args.key?(:catalog_ui_experience)
1878
+ @tag_template_migration = args[:tag_template_migration] if args.key?(:tag_template_migration)
1879
+ end
1880
+ end
1881
+
1845
1882
  # Specification that applies to a model. Valid only for entries with the `MODEL`
1846
1883
  # type.
1847
1884
  class GoogleCloudDatacatalogV1ModelSpec
@@ -1900,6 +1937,29 @@ module Google
1900
1937
  end
1901
1938
  end
1902
1939
 
1940
+ # The configuration related to the migration from Data Catalog to Dataplex that
1941
+ # has been applied to an organization and any projects under it. It is the
1942
+ # response message for RetrieveConfig.
1943
+ class GoogleCloudDatacatalogV1OrganizationConfig
1944
+ include Google::Apis::Core::Hashable
1945
+
1946
+ # Map of organizations and project resource names and their configuration. The
1947
+ # format for the map keys is `organizations/`organizationId`` or `projects/`
1948
+ # projectId``.
1949
+ # Corresponds to the JSON property `config`
1950
+ # @return [Hash<String,Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig>]
1951
+ attr_accessor :config
1952
+
1953
+ def initialize(**args)
1954
+ update!(**args)
1955
+ end
1956
+
1957
+ # Update properties of this object
1958
+ def update!(**args)
1959
+ @config = args[:config] if args.key?(:config)
1960
+ end
1961
+ end
1962
+
1903
1963
  # Entry metadata relevant only to the user and private to them.
1904
1964
  class GoogleCloudDatacatalogV1PersonalDetails
1905
1965
  include Google::Apis::Core::Hashable
@@ -2752,6 +2812,31 @@ module Google
2752
2812
  end
2753
2813
  end
2754
2814
 
2815
+ # Request message for SetConfig.
2816
+ class GoogleCloudDatacatalogV1SetConfigRequest
2817
+ include Google::Apis::Core::Hashable
2818
+
2819
+ # Opt-in status for the UI switch to Dataplex.
2820
+ # Corresponds to the JSON property `catalogUiExperience`
2821
+ # @return [String]
2822
+ attr_accessor :catalog_ui_experience
2823
+
2824
+ # Opt-in status for the migration of Tag Templates to Dataplex.
2825
+ # Corresponds to the JSON property `tagTemplateMigration`
2826
+ # @return [String]
2827
+ attr_accessor :tag_template_migration
2828
+
2829
+ def initialize(**args)
2830
+ update!(**args)
2831
+ end
2832
+
2833
+ # Update properties of this object
2834
+ def update!(**args)
2835
+ @catalog_ui_experience = args[:catalog_ui_experience] if args.key?(:catalog_ui_experience)
2836
+ @tag_template_migration = args[:tag_template_migration] if args.key?(:tag_template_migration)
2837
+ end
2838
+ end
2839
+
2755
2840
  # Specification that applies to entries that are part `SQL_DATABASE` system (
2756
2841
  # user_specified_type)
2757
2842
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
@@ -2922,6 +3007,11 @@ module Google
2922
3007
  # @return [String]
2923
3008
  attr_accessor :column
2924
3009
 
3010
+ # Output only. Denotes the transfer status of the Tag Template.
3011
+ # Corresponds to the JSON property `dataplexTransferStatus`
3012
+ # @return [String]
3013
+ attr_accessor :dataplex_transfer_status
3014
+
2925
3015
  # Required. Maps the ID of a tag field to its value and additional information
2926
3016
  # about that field. Tag template defines valid field IDs. A tag must have at
2927
3017
  # least 1 field and at most 500 fields.
@@ -2955,6 +3045,7 @@ module Google
2955
3045
  # Update properties of this object
2956
3046
  def update!(**args)
2957
3047
  @column = args[:column] if args.key?(:column)
3048
+ @dataplex_transfer_status = args[:dataplex_transfer_status] if args.key?(:dataplex_transfer_status)
2958
3049
  @fields = args[:fields] if args.key?(:fields)
2959
3050
  @name = args[:name] if args.key?(:name)
2960
3051
  @template = args[:template] if args.key?(:template)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatacatalogV1
18
18
  # Version of the google-apis-datacatalog_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.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 = "20240511"
25
+ REVISION = "20241021"
26
26
  end
27
27
  end
28
28
  end
@@ -346,6 +346,12 @@ module Google
346
346
  include Google::Apis::Core::JsonObjectSupport
347
347
  end
348
348
 
349
+ class GoogleCloudDatacatalogV1MigrationConfig
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
349
355
  class GoogleCloudDatacatalogV1ModelSpec
350
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
357
 
@@ -364,6 +370,12 @@ module Google
364
370
  include Google::Apis::Core::JsonObjectSupport
365
371
  end
366
372
 
373
+ class GoogleCloudDatacatalogV1OrganizationConfig
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
367
379
  class GoogleCloudDatacatalogV1PersonalDetails
368
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
381
 
@@ -514,6 +526,12 @@ module Google
514
526
  include Google::Apis::Core::JsonObjectSupport
515
527
  end
516
528
 
529
+ class GoogleCloudDatacatalogV1SetConfigRequest
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
517
535
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
518
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
519
537
 
@@ -1034,6 +1052,7 @@ module Google
1034
1052
  property :description, as: 'description'
1035
1053
  property :display_name, as: 'displayName'
1036
1054
  property :name, as: 'name'
1055
+ property :transferred_to_dataplex, as: 'transferredToDataplex'
1037
1056
  end
1038
1057
  end
1039
1058
 
@@ -1218,6 +1237,14 @@ module Google
1218
1237
  end
1219
1238
  end
1220
1239
 
1240
+ class GoogleCloudDatacatalogV1MigrationConfig
1241
+ # @private
1242
+ class Representation < Google::Apis::Core::JsonRepresentation
1243
+ property :catalog_ui_experience, as: 'catalogUiExperience'
1244
+ property :tag_template_migration, as: 'tagTemplateMigration'
1245
+ end
1246
+ end
1247
+
1221
1248
  class GoogleCloudDatacatalogV1ModelSpec
1222
1249
  # @private
1223
1250
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1242,6 +1269,14 @@ module Google
1242
1269
  end
1243
1270
  end
1244
1271
 
1272
+ class GoogleCloudDatacatalogV1OrganizationConfig
1273
+ # @private
1274
+ class Representation < Google::Apis::Core::JsonRepresentation
1275
+ hash :config, as: 'config', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig::Representation
1276
+
1277
+ end
1278
+ end
1279
+
1245
1280
  class GoogleCloudDatacatalogV1PersonalDetails
1246
1281
  # @private
1247
1282
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1481,6 +1516,14 @@ module Google
1481
1516
  end
1482
1517
  end
1483
1518
 
1519
+ class GoogleCloudDatacatalogV1SetConfigRequest
1520
+ # @private
1521
+ class Representation < Google::Apis::Core::JsonRepresentation
1522
+ property :catalog_ui_experience, as: 'catalogUiExperience'
1523
+ property :tag_template_migration, as: 'tagTemplateMigration'
1524
+ end
1525
+ end
1526
+
1484
1527
  class GoogleCloudDatacatalogV1SqlDatabaseSystemSpec
1485
1528
  # @private
1486
1529
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1530,6 +1573,7 @@ module Google
1530
1573
  # @private
1531
1574
  class Representation < Google::Apis::Core::JsonRepresentation
1532
1575
  property :column, as: 'column'
1576
+ property :dataplex_transfer_status, as: 'dataplexTransferStatus'
1533
1577
  hash :fields, as: 'fields', class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagField, decorator: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1TagField::Representation
1534
1578
 
1535
1579
  property :name, as: 'name'
@@ -155,6 +155,174 @@ module Google
155
155
  execute_or_queue_command(command, &block)
156
156
  end
157
157
 
158
+ # Retrieves the configuration related to the migration from Data Catalog to
159
+ # Dataplex for a specific organization, including all the projects under it
160
+ # which have a separate configuration set.
161
+ # @param [String] name
162
+ # Required. The organization whose config is being retrieved.
163
+ # @param [String] fields
164
+ # Selector specifying which fields to include in a partial response.
165
+ # @param [String] quota_user
166
+ # Available to use for quota purposes for server-side applications. Can be any
167
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
168
+ # @param [Google::Apis::RequestOptions] options
169
+ # Request-specific options
170
+ #
171
+ # @yield [result, err] Result & error if block supplied
172
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1OrganizationConfig] parsed result object
173
+ # @yieldparam err [StandardError] error object if request failed
174
+ #
175
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1OrganizationConfig]
176
+ #
177
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
178
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
179
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
180
+ def retrieve_organization_location_config(name, fields: nil, quota_user: nil, options: nil, &block)
181
+ command = make_simple_command(:get, 'v1/{+name}:retrieveConfig', options)
182
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1OrganizationConfig::Representation
183
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1OrganizationConfig
184
+ command.params['name'] = name unless name.nil?
185
+ command.query['fields'] = fields unless fields.nil?
186
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
187
+ execute_or_queue_command(command, &block)
188
+ end
189
+
190
+ # Retrieves the effective configuration related to the migration from Data
191
+ # Catalog to Dataplex for a specific organization or project. If there is no
192
+ # specific configuration set for the resource, the setting is checked
193
+ # hierarchicahlly through the ancestors of the resource, starting from the
194
+ # resource itself.
195
+ # @param [String] name
196
+ # Required. The resource whose effective config is being retrieved.
197
+ # @param [String] fields
198
+ # Selector specifying which fields to include in a partial response.
199
+ # @param [String] quota_user
200
+ # Available to use for quota purposes for server-side applications. Can be any
201
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
202
+ # @param [Google::Apis::RequestOptions] options
203
+ # Request-specific options
204
+ #
205
+ # @yield [result, err] Result & error if block supplied
206
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig] parsed result object
207
+ # @yieldparam err [StandardError] error object if request failed
208
+ #
209
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig]
210
+ #
211
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
212
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
213
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
214
+ def retrieve_organization_location_effective_config(name, fields: nil, quota_user: nil, options: nil, &block)
215
+ command = make_simple_command(:get, 'v1/{+name}:retrieveEffectiveConfig', options)
216
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig::Representation
217
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig
218
+ command.params['name'] = name unless name.nil?
219
+ command.query['fields'] = fields unless fields.nil?
220
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
221
+ execute_or_queue_command(command, &block)
222
+ end
223
+
224
+ # Sets the configuration related to the migration to Dataplex for an
225
+ # organization or project.
226
+ # @param [String] name
227
+ # Required. The organization or project whose config is being specified.
228
+ # @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SetConfigRequest] google_cloud_datacatalog_v1_set_config_request_object
229
+ # @param [String] fields
230
+ # Selector specifying which fields to include in a partial response.
231
+ # @param [String] quota_user
232
+ # Available to use for quota purposes for server-side applications. Can be any
233
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
234
+ # @param [Google::Apis::RequestOptions] options
235
+ # Request-specific options
236
+ #
237
+ # @yield [result, err] Result & error if block supplied
238
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig] parsed result object
239
+ # @yieldparam err [StandardError] error object if request failed
240
+ #
241
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig]
242
+ #
243
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
244
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
245
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
246
+ def set_organization_location_config(name, google_cloud_datacatalog_v1_set_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
247
+ command = make_simple_command(:post, 'v1/{+name}:setConfig', options)
248
+ command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SetConfigRequest::Representation
249
+ command.request_object = google_cloud_datacatalog_v1_set_config_request_object
250
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig::Representation
251
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig
252
+ command.params['name'] = name unless name.nil?
253
+ command.query['fields'] = fields unless fields.nil?
254
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
255
+ execute_or_queue_command(command, &block)
256
+ end
257
+
258
+ # Retrieves the effective configuration related to the migration from Data
259
+ # Catalog to Dataplex for a specific organization or project. If there is no
260
+ # specific configuration set for the resource, the setting is checked
261
+ # hierarchicahlly through the ancestors of the resource, starting from the
262
+ # resource itself.
263
+ # @param [String] name
264
+ # Required. The resource whose effective config is being retrieved.
265
+ # @param [String] fields
266
+ # Selector specifying which fields to include in a partial response.
267
+ # @param [String] quota_user
268
+ # Available to use for quota purposes for server-side applications. Can be any
269
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
270
+ # @param [Google::Apis::RequestOptions] options
271
+ # Request-specific options
272
+ #
273
+ # @yield [result, err] Result & error if block supplied
274
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig] parsed result object
275
+ # @yieldparam err [StandardError] error object if request failed
276
+ #
277
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig]
278
+ #
279
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
280
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
281
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
282
+ def retrieve_project_location_effective_config(name, fields: nil, quota_user: nil, options: nil, &block)
283
+ command = make_simple_command(:get, 'v1/{+name}:retrieveEffectiveConfig', options)
284
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig::Representation
285
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig
286
+ command.params['name'] = name unless name.nil?
287
+ command.query['fields'] = fields unless fields.nil?
288
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
289
+ execute_or_queue_command(command, &block)
290
+ end
291
+
292
+ # Sets the configuration related to the migration to Dataplex for an
293
+ # organization or project.
294
+ # @param [String] name
295
+ # Required. The organization or project whose config is being specified.
296
+ # @param [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SetConfigRequest] google_cloud_datacatalog_v1_set_config_request_object
297
+ # @param [String] fields
298
+ # Selector specifying which fields to include in a partial response.
299
+ # @param [String] quota_user
300
+ # Available to use for quota purposes for server-side applications. Can be any
301
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
302
+ # @param [Google::Apis::RequestOptions] options
303
+ # Request-specific options
304
+ #
305
+ # @yield [result, err] Result & error if block supplied
306
+ # @yieldparam result [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig] parsed result object
307
+ # @yieldparam err [StandardError] error object if request failed
308
+ #
309
+ # @return [Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig]
310
+ #
311
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
312
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
313
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
314
+ def set_project_location_config(name, google_cloud_datacatalog_v1_set_config_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
315
+ command = make_simple_command(:post, 'v1/{+name}:setConfig', options)
316
+ command.request_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1SetConfigRequest::Representation
317
+ command.request_object = google_cloud_datacatalog_v1_set_config_request_object
318
+ command.response_representation = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig::Representation
319
+ command.response_class = Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1MigrationConfig
320
+ command.params['name'] = name unless name.nil?
321
+ command.query['fields'] = fields unless fields.nil?
322
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
323
+ execute_or_queue_command(command, &block)
324
+ end
325
+
158
326
  # Creates an entry group. An entry group contains logically related entries
159
327
  # together with [Cloud Identity and Access Management](/data-catalog/docs/
160
328
  # concepts/iam) policies. These policies specify users who can create, edit, and
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datacatalog_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.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-19 00:00:00.000000000 Z
11
+ date: 2024-10-27 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-datacatalog_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datacatalog_v1/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datacatalog_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.21
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Data Catalog API V1