google-apis-dataplex_v1 0.9.0 → 0.10.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: 23347498282176ffaa9dec6ee83c1e69e2dbd3f56c7d88329399a5d942091d87
4
- data.tar.gz: bd1ea303d45299a4c3f4a89a7a8bb1f9ee9fddfd57e4ef3b7f0f12a19bd4e509
3
+ metadata.gz: 4cf1f52310e9d7eacd185bbd51130c9be6fbf15d1fc9ca641b7cf4f8988c57db
4
+ data.tar.gz: 90084f14a8337df3d3e1f1335b6c1fbbc31093423592f4237db3d05b643428e0
5
5
  SHA512:
6
- metadata.gz: 29485b8ba92ce2e6b0c2b45e6c212c65cd8fe5dc6bfeda9835989c06da2fe5580fc1cddf781b9fd39e858e05a16c45f7b8d0cfaf8c4b1001aeb61e307a72ebf6
7
- data.tar.gz: 9dd214b6b5012d3f32bad6703e2295f73c9e38d2d276a94a9561bfa262b72f55647c3b2e22006c15b75f81c11eec1309048465c783ec7056481005ada81ed4da
6
+ metadata.gz: f03438bf079fd03aa0ce46f4fa440fddc222f4ffd24edbac16ac0aade42e70cc4196882c1afcf2983a9a4ee554628000e5b4e0fff99386ca7cb9f89ec6756d98
7
+ data.tar.gz: 18d46fb2795f5cb9fca404346c088969afa1f6f9d4141046a4fd0562945e31256f2e8115a8cc69773d65fd5e32dad3a27fe1eb6aeb0c64ac9c5feb4deb79f534
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.10.0 (2022-07-19)
4
+
5
+ * Regenerated from discovery document revision 20220711
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.9.0 (2022-06-30)
4
9
 
5
10
  * Regenerated using generator version 0.8.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]
@@ -2675,6 +2675,13 @@ module Google
2675
2675
  # @return [Hash<String,String>]
2676
2676
  attr_accessor :args
2677
2677
 
2678
+ # Optional. The Cloud KMS key to use for encryption, of the form: projects/`
2679
+ # project_number`/locations/`location_id`/keyRings/`key-ring-name`/cryptoKeys/`
2680
+ # key-name`.
2681
+ # Corresponds to the JSON property `kmsKey`
2682
+ # @return [String]
2683
+ attr_accessor :kms_key
2684
+
2678
2685
  # Optional. The maximum duration after which the job execution is expired.
2679
2686
  # Corresponds to the JSON property `maxJobExecutionLifetime`
2680
2687
  # @return [String]
@@ -2700,6 +2707,7 @@ module Google
2700
2707
  # Update properties of this object
2701
2708
  def update!(**args)
2702
2709
  @args = args[:args] if args.key?(:args)
2710
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
2703
2711
  @max_job_execution_lifetime = args[:max_job_execution_lifetime] if args.key?(:max_job_execution_lifetime)
2704
2712
  @project = args[:project] if args.key?(:project)
2705
2713
  @service_account = args[:service_account] if args.key?(:service_account)
@@ -2794,6 +2802,11 @@ module Google
2794
2802
  class GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
2795
2803
  include Google::Apis::Core::Hashable
2796
2804
 
2805
+ # Optional. Container image to use.
2806
+ # Corresponds to the JSON property `image`
2807
+ # @return [String]
2808
+ attr_accessor :image
2809
+
2797
2810
  # Optional. A list of Java JARS to add to the classpath. Valid input includes
2798
2811
  # Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/
2799
2812
  # file.jar
@@ -2823,6 +2836,7 @@ module Google
2823
2836
 
2824
2837
  # Update properties of this object
2825
2838
  def update!(**args)
2839
+ @image = args[:image] if args.key?(:image)
2826
2840
  @java_jars = args[:java_jars] if args.key?(:java_jars)
2827
2841
  @properties = args[:properties] if args.key?(:properties)
2828
2842
  @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.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.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 = "20220711"
26
26
  end
27
27
  end
28
28
  end
@@ -1315,6 +1315,7 @@ module Google
1315
1315
  # @private
1316
1316
  class Representation < Google::Apis::Core::JsonRepresentation
1317
1317
  hash :args, as: 'args'
1318
+ property :kms_key, as: 'kmsKey'
1318
1319
  property :max_job_execution_lifetime, as: 'maxJobExecutionLifetime'
1319
1320
  property :project, as: 'project'
1320
1321
  property :service_account, as: 'serviceAccount'
@@ -1353,6 +1354,7 @@ module Google
1353
1354
  class GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
1354
1355
  # @private
1355
1356
  class Representation < Google::Apis::Core::JsonRepresentation
1357
+ property :image, as: 'image'
1356
1358
  collection :java_jars, as: 'javaJars'
1357
1359
  hash :properties, as: 'properties'
1358
1360
  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.9.0
4
+ version: 0.10.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-07-25 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-dataplex_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.10.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: []