google-apis-dataplex_v1 0.9.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5623a6fb612fc82aaab972279d80cd278f62c3f19fc60f6e050a7cf000acc443
|
4
|
+
data.tar.gz: 24525131576a3552af047030e806ff6b16eb45bbed3ff8973e30128198baae9b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf58d93d4a1f2ca938e80fefba0f65410caafed74b974efb5f6aa0d34869eb4d26d6ff4f647bcd840a6f501db4b2ea51dd7f279f322819cae63444629d007552
|
7
|
+
data.tar.gz: 9216beb1fa34af15d8512076eff4e9c8f48be2f73979b91912ed912b0ef6ad40d1139c6d3a2da9fcc72e8caf2039be6e551d033296f0997d5efc64215866b161
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2022-08-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220818
|
6
|
+
|
7
|
+
### v0.11.0 (2022-07-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220723
|
10
|
+
|
11
|
+
### v0.10.0 (2022-07-19)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220711
|
14
|
+
* Regenerated using generator version 0.9.0
|
15
|
+
|
3
16
|
### v0.9.0 (2022-06-30)
|
4
17
|
|
5
18
|
* 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`/
|
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.
|
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
|
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
|
2685
|
-
# service_account must belong to this
|
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)
|
@@ -3401,15 +3436,19 @@ module Google
|
|
3401
3436
|
# authenticated with a Google account or a service account. user:`emailid`: An
|
3402
3437
|
# email address that represents a specific Google account. For example, alice@
|
3403
3438
|
# example.com . serviceAccount:`emailid`: An email address that represents a
|
3404
|
-
# service account. For example, my-other-app@appspot.gserviceaccount.com.
|
3405
|
-
#
|
3406
|
-
#
|
3407
|
-
#
|
3408
|
-
#
|
3409
|
-
#
|
3410
|
-
#
|
3411
|
-
#
|
3412
|
-
#
|
3439
|
+
# Google service account. For example, my-other-app@appspot.gserviceaccount.com.
|
3440
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]: An
|
3441
|
+
# identifier for a Kubernetes service account (https://cloud.google.com/
|
3442
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, my-
|
3443
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]. group:`emailid`: An email
|
3444
|
+
# address that represents a Google group. For example, admins@example.com.
|
3445
|
+
# deleted:user:`emailid`?uid=`uniqueid`: An email address (plus unique
|
3446
|
+
# identifier) representing a user that has been recently deleted. For example,
|
3447
|
+
# alice@example.com?uid=123456789012345678901. If the user is recovered, this
|
3448
|
+
# value reverts to user:`emailid` and the recovered user retains the role in the
|
3449
|
+
# binding. deleted:serviceAccount:`emailid`?uid=`uniqueid`: An email address (
|
3450
|
+
# plus unique identifier) representing a service account that has been recently
|
3451
|
+
# deleted. For example, my-other-app@appspot.gserviceaccount.com?uid=
|
3413
3452
|
# 123456789012345678901. If the service account is undeleted, this value reverts
|
3414
3453
|
# to serviceAccount:`emailid` and the undeleted service account retains the role
|
3415
3454
|
# in the binding. deleted:group:`emailid`?uid=`uniqueid`: An email address (plus
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220818"
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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.
|
4
|
+
version: 0.12.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-
|
11
|
+
date: 2022-08-29 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.12.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: []
|