google-apis-dataplex_v1 0.8.0 → 0.11.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: 5b5a62c4f6eefbd7dbab637e5eab2bdce2a69b5475799a8696dd537ce08ef9bc
4
- data.tar.gz: 7b11a0b83d5f510e81312b53ae3a309cc93561c71577f4b2f4dbe3b583fac5c0
3
+ metadata.gz: d91cd94cbd440779a6cec0a7ed6a3f32f75a27d60059f77527505b5c4ac8e26c
4
+ data.tar.gz: da85aeea1053d96ab578cad238d7517bd93de49c93aca3c6108194f9552e914a
5
5
  SHA512:
6
- metadata.gz: fcaaddadf5510dece83263d8c37a96eb7411c5b0ae1e28b164099ebbe308fe33335f05eb637ae57ff1bec0cb6674d16f5288b9fc381f70844b9dd1dd7a65a6bd
7
- data.tar.gz: 61848fa622d92f2efbeb52646ab4f07eb8f1950ddca0e22dfbdd0911edac0fa232e153d20dcf868c0098bf70fba97dc61ac80a321be89002393b721f20a780ef
6
+ metadata.gz: b7d82692e1c266c643cbdaae8f71a786933bf7127ad97eac815a7e233e7396ae9b7664b77c72662247c348ca11e19ad17f9d26cd34a6c49b3c8aa9f81df57f0f
7
+ data.tar.gz: 0c63af4f7f5aa7ba71b8e430f503d356f91b22d386c1a60e456860fb179f5d273c7cb6009c6e26170ea883b2e2771a034a9e0fa61288ed8e30d8d1207fbd24a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.11.0 (2022-07-29)
4
+
5
+ * Regenerated from discovery document revision 20220723
6
+
7
+ ### v0.10.0 (2022-07-19)
8
+
9
+ * Regenerated from discovery document revision 20220711
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.9.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.8.0 (2022-06-21)
4
17
 
5
18
  * Regenerated using generator version 0.7.0
@@ -1532,13 +1532,13 @@ module Google
1532
1532
  attr_accessor :message
1533
1533
 
1534
1534
  # Output only. The relative resource name of the job, of the form: projects/`
1535
- # project_number`/locations/`location_id`/lakes/`lake_id`/ tasks/`task_id`/jobs/`
1535
+ # project_number`/locations/`location_id`/lakes/`lake_id`/tasks/`task_id`/jobs/`
1536
1536
  # job_id`.
1537
1537
  # Corresponds to the JSON property `name`
1538
1538
  # @return [String]
1539
1539
  attr_accessor :name
1540
1540
 
1541
- # Output only. . The number of times the job has been retried (excluding the
1541
+ # Output only. The number of times the job has been retried (excluding the
1542
1542
  # initial attempt).
1543
1543
  # Corresponds to the JSON property `retryCount`
1544
1544
  # @return [Fixnum]
@@ -2374,6 +2374,12 @@ module Google
2374
2374
  class GoogleCloudDataplexV1SessionEvent
2375
2375
  include Google::Apis::Core::Hashable
2376
2376
 
2377
+ # The status of the event.
2378
+ # Corresponds to the JSON property `eventSucceeded`
2379
+ # @return [Boolean]
2380
+ attr_accessor :event_succeeded
2381
+ alias_method :event_succeeded?, :event_succeeded
2382
+
2377
2383
  # The log message.
2378
2384
  # Corresponds to the JSON property `message`
2379
2385
  # @return [String]
@@ -2394,22 +2400,37 @@ module Google
2394
2400
  # @return [String]
2395
2401
  attr_accessor :type
2396
2402
 
2397
- # The information about the user that created the session.
2403
+ # The idle duration of a warm pooled session before it is assigned to user.
2404
+ # Corresponds to the JSON property `unassignedDuration`
2405
+ # @return [String]
2406
+ attr_accessor :unassigned_duration
2407
+
2408
+ # The information about the user that created the session. It will be the email
2409
+ # address of the user.
2398
2410
  # Corresponds to the JSON property `userId`
2399
2411
  # @return [String]
2400
2412
  attr_accessor :user_id
2401
2413
 
2414
+ # If the session is a warm pooled session.
2415
+ # Corresponds to the JSON property `warmPoolEnabled`
2416
+ # @return [Boolean]
2417
+ attr_accessor :warm_pool_enabled
2418
+ alias_method :warm_pool_enabled?, :warm_pool_enabled
2419
+
2402
2420
  def initialize(**args)
2403
2421
  update!(**args)
2404
2422
  end
2405
2423
 
2406
2424
  # Update properties of this object
2407
2425
  def update!(**args)
2426
+ @event_succeeded = args[:event_succeeded] if args.key?(:event_succeeded)
2408
2427
  @message = args[:message] if args.key?(:message)
2409
2428
  @query = args[:query] if args.key?(:query)
2410
2429
  @session_id = args[:session_id] if args.key?(:session_id)
2411
2430
  @type = args[:type] if args.key?(:type)
2431
+ @unassigned_duration = args[:unassigned_duration] if args.key?(:unassigned_duration)
2412
2432
  @user_id = args[:user_id] if args.key?(:user_id)
2433
+ @warm_pool_enabled = args[:warm_pool_enabled] if args.key?(:warm_pool_enabled)
2413
2434
  end
2414
2435
  end
2415
2436
 
@@ -2675,14 +2696,21 @@ module Google
2675
2696
  # @return [Hash<String,String>]
2676
2697
  attr_accessor :args
2677
2698
 
2699
+ # Optional. The Cloud KMS key to use for encryption, of the form: projects/`
2700
+ # project_number`/locations/`location_id`/keyRings/`key-ring-name`/cryptoKeys/`
2701
+ # key-name`.
2702
+ # Corresponds to the JSON property `kmsKey`
2703
+ # @return [String]
2704
+ attr_accessor :kms_key
2705
+
2678
2706
  # Optional. The maximum duration after which the job execution is expired.
2679
2707
  # Corresponds to the JSON property `maxJobExecutionLifetime`
2680
2708
  # @return [String]
2681
2709
  attr_accessor :max_job_execution_lifetime
2682
2710
 
2683
2711
  # Optional. The project in which jobs are run. By default, the project
2684
- # containing the Lake is used. If a project is provided, the executionspec.
2685
- # service_account must belong to this same project.
2712
+ # containing the Lake is used. If a project is provided, the ExecutionSpec.
2713
+ # service_account must belong to this project.
2686
2714
  # Corresponds to the JSON property `project`
2687
2715
  # @return [String]
2688
2716
  attr_accessor :project
@@ -2700,6 +2728,7 @@ module Google
2700
2728
  # Update properties of this object
2701
2729
  def update!(**args)
2702
2730
  @args = args[:args] if args.key?(:args)
2731
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
2703
2732
  @max_job_execution_lifetime = args[:max_job_execution_lifetime] if args.key?(:max_job_execution_lifetime)
2704
2733
  @project = args[:project] if args.key?(:project)
2705
2734
  @service_account = args[:service_account] if args.key?(:service_account)
@@ -2794,6 +2823,11 @@ module Google
2794
2823
  class GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
2795
2824
  include Google::Apis::Core::Hashable
2796
2825
 
2826
+ # Optional. Container image to use.
2827
+ # Corresponds to the JSON property `image`
2828
+ # @return [String]
2829
+ attr_accessor :image
2830
+
2797
2831
  # Optional. A list of Java JARS to add to the classpath. Valid input includes
2798
2832
  # Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/
2799
2833
  # file.jar
@@ -2823,6 +2857,7 @@ module Google
2823
2857
 
2824
2858
  # Update properties of this object
2825
2859
  def update!(**args)
2860
+ @image = args[:image] if args.key?(:image)
2826
2861
  @java_jars = args[:java_jars] if args.key?(:java_jars)
2827
2862
  @properties = args[:properties] if args.key?(:properties)
2828
2863
  @python_packages = args[:python_packages] if args.key?(:python_packages)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataplexV1
18
18
  # Version of the google-apis-dataplex_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220531"
25
+ REVISION = "20220723"
26
26
  end
27
27
  end
28
28
  end
@@ -1238,12 +1238,15 @@ module Google
1238
1238
  class GoogleCloudDataplexV1SessionEvent
1239
1239
  # @private
1240
1240
  class Representation < Google::Apis::Core::JsonRepresentation
1241
+ property :event_succeeded, as: 'eventSucceeded'
1241
1242
  property :message, as: 'message'
1242
1243
  property :query, as: 'query', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1SessionEventQueryDetail::Representation
1243
1244
 
1244
1245
  property :session_id, as: 'sessionId'
1245
1246
  property :type, as: 'type'
1247
+ property :unassigned_duration, as: 'unassignedDuration'
1246
1248
  property :user_id, as: 'userId'
1249
+ property :warm_pool_enabled, as: 'warmPoolEnabled'
1247
1250
  end
1248
1251
  end
1249
1252
 
@@ -1315,6 +1318,7 @@ module Google
1315
1318
  # @private
1316
1319
  class Representation < Google::Apis::Core::JsonRepresentation
1317
1320
  hash :args, as: 'args'
1321
+ property :kms_key, as: 'kmsKey'
1318
1322
  property :max_job_execution_lifetime, as: 'maxJobExecutionLifetime'
1319
1323
  property :project, as: 'project'
1320
1324
  property :service_account, as: 'serviceAccount'
@@ -1353,6 +1357,7 @@ module Google
1353
1357
  class GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
1354
1358
  # @private
1355
1359
  class Representation < Google::Apis::Core::JsonRepresentation
1360
+ property :image, as: 'image'
1356
1361
  collection :java_jars, as: 'javaJars'
1357
1362
  hash :properties, as: 'properties'
1358
1363
  collection :python_packages, as: 'pythonPackages'
@@ -172,7 +172,7 @@ module Google
172
172
  # lake can be deleted.
173
173
  # @param [String] name
174
174
  # Required. The resource name of the lake: projects/`project_number`/locations/`
175
- # location_id`/lakes/`lake_id`
175
+ # location_id`/lakes/`lake_id`.
176
176
  # @param [String] fields
177
177
  # Selector specifying which fields to include in a partial response.
178
178
  # @param [String] quota_user
@@ -203,7 +203,7 @@ module Google
203
203
  # Retrieves a lake resource.
204
204
  # @param [String] name
205
205
  # Required. The resource name of the lake: projects/`project_number`/locations/`
206
- # location_id`/lakes/`lake_id`
206
+ # location_id`/lakes/`lake_id`.
207
207
  # @param [String] fields
208
208
  # Selector specifying which fields to include in a partial response.
209
209
  # @param [String] quota_user
@@ -444,7 +444,7 @@ module Google
444
444
  # Lists action resources in a lake.
445
445
  # @param [String] parent
446
446
  # Required. The resource name of the parent lake: projects/`project_number`/
447
- # locations/`location_id`/lakes/`lake_id`
447
+ # locations/`location_id`/lakes/`lake_id`.
448
448
  # @param [Fixnum] page_size
449
449
  # Optional. Maximum number of actions to return. The service may return fewer
450
450
  # than this value. If unspecified, at most 10 actions will be returned. The
@@ -1115,7 +1115,7 @@ module Google
1115
1115
  # Create an environment resource.
1116
1116
  # @param [String] parent
1117
1117
  # Required. The resource name of the parent lake: projects/`project_id`/
1118
- # locations/`location_id`/lakes/`lake_id`
1118
+ # locations/`location_id`/lakes/`lake_id`.
1119
1119
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Environment] google_cloud_dataplex_v1_environment_object
1120
1120
  # @param [String] environment_id
1121
1121
  # Required. Environment identifier. * Must contain only lowercase letters,
@@ -1160,7 +1160,7 @@ module Google
1160
1160
  # deleted before environment deletion can be initiated.
1161
1161
  # @param [String] name
1162
1162
  # Required. The resource name of the environment: projects/`project_id`/
1163
- # locations/`location_id`/lakes/`lake_id`/environments/`environment_id``
1163
+ # locations/`location_id`/lakes/`lake_id`/environments/`environment_id`.
1164
1164
  # @param [String] fields
1165
1165
  # Selector specifying which fields to include in a partial response.
1166
1166
  # @param [String] quota_user
@@ -1191,7 +1191,7 @@ module Google
1191
1191
  # Get environment resource.
1192
1192
  # @param [String] name
1193
1193
  # Required. The resource name of the environment: projects/`project_id`/
1194
- # locations/`location_id`/lakes/`lake_id`/environments/`environment_id`
1194
+ # locations/`location_id`/lakes/`lake_id`/environments/`environment_id`.
1195
1195
  # @param [String] fields
1196
1196
  # Selector specifying which fields to include in a partial response.
1197
1197
  # @param [String] quota_user
@@ -1267,7 +1267,7 @@ module Google
1267
1267
  # Lists environments under the given lake.
1268
1268
  # @param [String] parent
1269
1269
  # Required. The resource name of the parent lake: projects/`project_id`/
1270
- # locations/`location_id`/lakes/`lake_id`
1270
+ # locations/`location_id`/lakes/`lake_id`.
1271
1271
  # @param [String] filter
1272
1272
  # Optional. Filter request.
1273
1273
  # @param [String] order_by
@@ -1433,7 +1433,7 @@ module Google
1433
1433
  # @param [String] parent
1434
1434
  # Required. The resource name of the parent environment: projects/`
1435
1435
  # project_number`/locations/`location_id`/lakes/`lake_id`/environment/`
1436
- # environment_id`
1436
+ # environment_id`.
1437
1437
  # @param [String] filter
1438
1438
  # Optional. Filter request. The following mode filter is supported to return
1439
1439
  # only the sessions belonging to the requester when the mode is USER and return
@@ -1482,7 +1482,7 @@ module Google
1482
1482
  # Creates a task resource within a lake.
1483
1483
  # @param [String] parent
1484
1484
  # Required. The resource name of the parent lake: projects/`project_number`/
1485
- # locations/`location_id`/lakes/`lake_id`
1485
+ # locations/`location_id`/lakes/`lake_id`.
1486
1486
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Task] google_cloud_dataplex_v1_task_object
1487
1487
  # @param [String] task_id
1488
1488
  # Required. Task identifier.
@@ -1523,7 +1523,7 @@ module Google
1523
1523
  # Delete the task resource.
1524
1524
  # @param [String] name
1525
1525
  # Required. The resource name of the task: projects/`project_number`/locations/`
1526
- # location_id`/lakes/`lake_id` /task/`task_id``
1526
+ # location_id`/lakes/`lake_id`/task/`task_id`.
1527
1527
  # @param [String] fields
1528
1528
  # Selector specifying which fields to include in a partial response.
1529
1529
  # @param [String] quota_user
@@ -1554,7 +1554,7 @@ module Google
1554
1554
  # Get task resource.
1555
1555
  # @param [String] name
1556
1556
  # Required. The resource name of the task: projects/`project_number`/locations/`
1557
- # location_id`/lakes/`lake_id` /tasks/`tasks_id`
1557
+ # location_id`/lakes/`lake_id`/tasks/`tasks_id`.
1558
1558
  # @param [String] fields
1559
1559
  # Selector specifying which fields to include in a partial response.
1560
1560
  # @param [String] quota_user
@@ -1630,7 +1630,7 @@ module Google
1630
1630
  # Lists tasks under the given lake.
1631
1631
  # @param [String] parent
1632
1632
  # Required. The resource name of the parent lake: projects/`project_number`/
1633
- # locations/`location_id`/lakes/`lake_id`
1633
+ # locations/`location_id`/lakes/`lake_id`.
1634
1634
  # @param [String] filter
1635
1635
  # Optional. Filter request.
1636
1636
  # @param [String] order_by
@@ -1794,7 +1794,7 @@ module Google
1794
1794
  # Cancel jobs running for the task resource.
1795
1795
  # @param [String] name
1796
1796
  # Required. The resource name of the job: projects/`project_number`/locations/`
1797
- # location_id`/lakes/`lake_id` /task/`task_id`/job/`job_id``
1797
+ # location_id`/lakes/`lake_id`/task/`task_id`/job/`job_id`.
1798
1798
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1CancelJobRequest] google_cloud_dataplex_v1_cancel_job_request_object
1799
1799
  # @param [String] fields
1800
1800
  # Selector specifying which fields to include in a partial response.
@@ -1828,7 +1828,7 @@ module Google
1828
1828
  # Get job resource.
1829
1829
  # @param [String] name
1830
1830
  # Required. The resource name of the job: projects/`project_number`/locations/`
1831
- # location_id`/lakes/`lake_id` /tasks/`task_id`/jobs/`job_id`
1831
+ # location_id`/lakes/`lake_id`/tasks/`task_id`/jobs/`job_id`.
1832
1832
  # @param [String] fields
1833
1833
  # Selector specifying which fields to include in a partial response.
1834
1834
  # @param [String] quota_user
@@ -1859,7 +1859,7 @@ module Google
1859
1859
  # Lists Jobs under the given task.
1860
1860
  # @param [String] parent
1861
1861
  # Required. The resource name of the parent environment: projects/`
1862
- # project_number`/locations/`location_id`/lakes/`lake_id`/tasks/`task_id`
1862
+ # project_number`/locations/`location_id`/lakes/`lake_id`/tasks/`task_id`.
1863
1863
  # @param [Fixnum] page_size
1864
1864
  # Optional. Maximum number of jobs to return. The service may return fewer than
1865
1865
  # this value. If unspecified, at most 10 jobs will be returned. The maximum
@@ -1900,7 +1900,7 @@ module Google
1900
1900
  # Creates a zone resource within a lake.
1901
1901
  # @param [String] parent
1902
1902
  # Required. The resource name of the parent lake: projects/`project_number`/
1903
- # locations/`location_id`/lakes/`lake_id`
1903
+ # locations/`location_id`/lakes/`lake_id`.
1904
1904
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Zone] google_cloud_dataplex_v1_zone_object
1905
1905
  # @param [Boolean] validate_only
1906
1906
  # Optional. Only validate the request, but do not perform mutations. The default
@@ -1947,7 +1947,7 @@ module Google
1947
1947
  # zone can be deleted.
1948
1948
  # @param [String] name
1949
1949
  # Required. The resource name of the zone: projects/`project_number`/locations/`
1950
- # location_id`/lakes/`lake_id` /zones/`zone_id``
1950
+ # location_id`/lakes/`lake_id`/zones/`zone_id`.
1951
1951
  # @param [String] fields
1952
1952
  # Selector specifying which fields to include in a partial response.
1953
1953
  # @param [String] quota_user
@@ -1978,7 +1978,7 @@ module Google
1978
1978
  # Retrieves a zone resource.
1979
1979
  # @param [String] name
1980
1980
  # Required. The resource name of the zone: projects/`project_number`/locations/`
1981
- # location_id`/lakes/`lake_id` /zones/`zone_id`
1981
+ # location_id`/lakes/`lake_id`/zones/`zone_id`.
1982
1982
  # @param [String] fields
1983
1983
  # Selector specifying which fields to include in a partial response.
1984
1984
  # @param [String] quota_user
@@ -2054,7 +2054,7 @@ module Google
2054
2054
  # Lists zone resources in a lake.
2055
2055
  # @param [String] parent
2056
2056
  # Required. The resource name of the parent lake: projects/`project_number`/
2057
- # locations/`location_id`/lakes/`lake_id`
2057
+ # locations/`location_id`/lakes/`lake_id`.
2058
2058
  # @param [String] filter
2059
2059
  # Optional. Filter request.
2060
2060
  # @param [String] order_by
@@ -2218,7 +2218,7 @@ module Google
2218
2218
  # Lists action resources in a zone.
2219
2219
  # @param [String] parent
2220
2220
  # Required. The resource name of the parent zone: projects/`project_number`/
2221
- # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`
2221
+ # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`.
2222
2222
  # @param [Fixnum] page_size
2223
2223
  # Optional. Maximum number of actions to return. The service may return fewer
2224
2224
  # than this value. If unspecified, at most 10 actions will be returned. The
@@ -2259,7 +2259,7 @@ module Google
2259
2259
  # Creates an asset resource.
2260
2260
  # @param [String] parent
2261
2261
  # Required. The resource name of the parent zone: projects/`project_number`/
2262
- # locations/`location_id`/lakes/`lake_id` /zones/`zone_id``
2262
+ # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`.
2263
2263
  # @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1Asset] google_cloud_dataplex_v1_asset_object
2264
2264
  # @param [String] asset_id
2265
2265
  # Required. Asset identifier. This ID will be used to generate names such as
@@ -2305,7 +2305,7 @@ module Google
2305
2305
  # default) or deleted based on the associated Lifecycle policy.
2306
2306
  # @param [String] name
2307
2307
  # Required. The resource name of the asset: projects/`project_number`/locations/`
2308
- # location_id`/lakes/`lake_id` /zones/`zone_id`/assets/`asset_id`
2308
+ # location_id`/lakes/`lake_id`/zones/`zone_id`/assets/`asset_id`.
2309
2309
  # @param [String] fields
2310
2310
  # Selector specifying which fields to include in a partial response.
2311
2311
  # @param [String] quota_user
@@ -2336,7 +2336,7 @@ module Google
2336
2336
  # Retrieves an asset resource.
2337
2337
  # @param [String] name
2338
2338
  # Required. The resource name of the asset: projects/`project_number`/locations/`
2339
- # location_id`/lakes/`lake_id` /zones/`zone_id`/assets/`asset_id`
2339
+ # location_id`/lakes/`lake_id`/zones/`zone_id`/assets/`asset_id`.
2340
2340
  # @param [String] fields
2341
2341
  # Selector specifying which fields to include in a partial response.
2342
2342
  # @param [String] quota_user
@@ -2412,7 +2412,7 @@ module Google
2412
2412
  # Lists asset resources in a zone.
2413
2413
  # @param [String] parent
2414
2414
  # Required. The resource name of the parent zone: projects/`project_number`/
2415
- # locations/`location_id`/lakes/`lake_id` /zones/`zone_id``
2415
+ # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`.
2416
2416
  # @param [String] filter
2417
2417
  # Optional. Filter request.
2418
2418
  # @param [String] order_by
@@ -2577,7 +2577,7 @@ module Google
2577
2577
  # Lists action resources in an asset.
2578
2578
  # @param [String] parent
2579
2579
  # Required. The resource name of the parent asset: projects/`project_number`/
2580
- # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/assets/`asset_id`
2580
+ # locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/assets/`asset_id`.
2581
2581
  # @param [Fixnum] page_size
2582
2582
  # Optional. Maximum number of actions to return. The service may return fewer
2583
2583
  # than this value. If unspecified, at most 10 actions will be returned. The
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataplex_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.11.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: 2022-06-27 00:00:00.000000000 Z
11
+ date: 2022-08-01 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.6'
19
+ version: '0.7'
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.6'
29
+ version: '0.7'
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-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
63
63
  post_install_message:
64
64
  rdoc_options: []