google-apis-dataplex_v1 0.3.0 → 0.4.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6196349661d1780e3d064e7d2efd93e28c148051f145671d5bb5165a7c46f281
|
4
|
+
data.tar.gz: 51dd32b3c1e1b8ad114c4997e06a686b27acd74cbc504fadc4950e681b031bdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73fbc9573d4df11a618ef544abd84e35953012a2c790026760fe383cc0803a3bbdcd11817c1ee86013f081b37969cbed08c2ae92819bf93118655d9c6d76b028
|
7
|
+
data.tar.gz: 0f51825cd7b9ec6858d243aeb5b0cd13c681c8ad5c08f909384e408993e3c86f21571d23404a41e900a20b24beeaabb24e9b83579ae6a2129d9f7e8928c8ec5a
|
data/CHANGELOG.md
CHANGED
@@ -2596,6 +2596,11 @@ module Google
|
|
2596
2596
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec]
|
2597
2597
|
attr_accessor :execution_spec
|
2598
2598
|
|
2599
|
+
# Status of the task execution (e.g. Jobs).
|
2600
|
+
# Corresponds to the JSON property `executionStatus`
|
2601
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus]
|
2602
|
+
attr_accessor :execution_status
|
2603
|
+
|
2599
2604
|
# Optional. User-defined labels for the task.
|
2600
2605
|
# Corresponds to the JSON property `labels`
|
2601
2606
|
# @return [Hash<String,String>]
|
@@ -2643,6 +2648,7 @@ module Google
|
|
2643
2648
|
@description = args[:description] if args.key?(:description)
|
2644
2649
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2645
2650
|
@execution_spec = args[:execution_spec] if args.key?(:execution_spec)
|
2651
|
+
@execution_status = args[:execution_status] if args.key?(:execution_status)
|
2646
2652
|
@labels = args[:labels] if args.key?(:labels)
|
2647
2653
|
@name = args[:name] if args.key?(:name)
|
2648
2654
|
@spark = args[:spark] if args.key?(:spark)
|
@@ -2674,6 +2680,13 @@ module Google
|
|
2674
2680
|
# @return [String]
|
2675
2681
|
attr_accessor :max_job_execution_lifetime
|
2676
2682
|
|
2683
|
+
# 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.
|
2686
|
+
# Corresponds to the JSON property `project`
|
2687
|
+
# @return [String]
|
2688
|
+
attr_accessor :project
|
2689
|
+
|
2677
2690
|
# Required. Service account to use to execute a task. If not provided, the
|
2678
2691
|
# default Compute service account for the project is used.
|
2679
2692
|
# Corresponds to the JSON property `serviceAccount`
|
@@ -2688,10 +2701,36 @@ module Google
|
|
2688
2701
|
def update!(**args)
|
2689
2702
|
@args = args[:args] if args.key?(:args)
|
2690
2703
|
@max_job_execution_lifetime = args[:max_job_execution_lifetime] if args.key?(:max_job_execution_lifetime)
|
2704
|
+
@project = args[:project] if args.key?(:project)
|
2691
2705
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2692
2706
|
end
|
2693
2707
|
end
|
2694
2708
|
|
2709
|
+
# Status of the task execution (e.g. Jobs).
|
2710
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
2711
|
+
include Google::Apis::Core::Hashable
|
2712
|
+
|
2713
|
+
# A job represents an instance of a task.
|
2714
|
+
# Corresponds to the JSON property `latestJob`
|
2715
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1Job]
|
2716
|
+
attr_accessor :latest_job
|
2717
|
+
|
2718
|
+
# Output only. Last update time of the status.
|
2719
|
+
# Corresponds to the JSON property `updateTime`
|
2720
|
+
# @return [String]
|
2721
|
+
attr_accessor :update_time
|
2722
|
+
|
2723
|
+
def initialize(**args)
|
2724
|
+
update!(**args)
|
2725
|
+
end
|
2726
|
+
|
2727
|
+
# Update properties of this object
|
2728
|
+
def update!(**args)
|
2729
|
+
@latest_job = args[:latest_job] if args.key?(:latest_job)
|
2730
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2731
|
+
end
|
2732
|
+
end
|
2733
|
+
|
2695
2734
|
# Configuration for the underlying infrastructure used to run workloads.
|
2696
2735
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
2697
2736
|
include Google::Apis::Core::Hashable
|
@@ -3353,7 +3392,7 @@ module Google
|
|
3353
3392
|
# @return [Google::Apis::DataplexV1::GoogleTypeExpr]
|
3354
3393
|
attr_accessor :condition
|
3355
3394
|
|
3356
|
-
# Specifies the principals requesting access for a Cloud
|
3395
|
+
# Specifies the principals requesting access for a Google Cloud resource.
|
3357
3396
|
# members can have the following values: allUsers: A special identifier that
|
3358
3397
|
# represents anyone who is on the internet; with or without a Google account.
|
3359
3398
|
# allAuthenticatedUsers: A special identifier that represents anyone who is
|
@@ -3551,8 +3590,8 @@ module Google
|
|
3551
3590
|
include Google::Apis::Core::Hashable
|
3552
3591
|
|
3553
3592
|
# The set of permissions to check for the resource. Permissions with wildcards (
|
3554
|
-
# such as
|
3555
|
-
#
|
3593
|
+
# such as * or storage.*) are not allowed. For more information see IAM Overview
|
3594
|
+
# (https://cloud.google.com/iam/docs/overview#permissions).
|
3556
3595
|
# Corresponds to the JSON property `permissions`
|
3557
3596
|
# @return [Array<String>]
|
3558
3597
|
attr_accessor :permissions
|
@@ -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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220502"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -430,6 +430,12 @@ module Google
|
|
430
430
|
include Google::Apis::Core::JsonObjectSupport
|
431
431
|
end
|
432
432
|
|
433
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
433
439
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
434
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
441
|
|
@@ -1291,6 +1297,8 @@ module Google
|
|
1291
1297
|
property :display_name, as: 'displayName'
|
1292
1298
|
property :execution_spec, as: 'executionSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec::Representation
|
1293
1299
|
|
1300
|
+
property :execution_status, as: 'executionStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus::Representation
|
1301
|
+
|
1294
1302
|
hash :labels, as: 'labels'
|
1295
1303
|
property :name, as: 'name'
|
1296
1304
|
property :spark, as: 'spark', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig::Representation
|
@@ -1308,10 +1316,20 @@ module Google
|
|
1308
1316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1309
1317
|
hash :args, as: 'args'
|
1310
1318
|
property :max_job_execution_lifetime, as: 'maxJobExecutionLifetime'
|
1319
|
+
property :project, as: 'project'
|
1311
1320
|
property :service_account, as: 'serviceAccount'
|
1312
1321
|
end
|
1313
1322
|
end
|
1314
1323
|
|
1324
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
1325
|
+
# @private
|
1326
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1327
|
+
property :latest_job, as: 'latestJob', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1Job, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1Job::Representation
|
1328
|
+
|
1329
|
+
property :update_time, as: 'updateTime'
|
1330
|
+
end
|
1331
|
+
end
|
1332
|
+
|
1315
1333
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
1316
1334
|
# @private
|
1317
1335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -234,8 +234,9 @@ module Google
|
|
234
234
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
235
235
|
# resource exists and does not have a policy set.
|
236
236
|
# @param [String] resource
|
237
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
238
|
-
#
|
237
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
238
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
239
|
+
# appropriate value for this field.
|
239
240
|
# @param [Fixnum] options_requested_policy_version
|
240
241
|
# Optional. The maximum policy version that will be used to format the policy.
|
241
242
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -368,8 +369,9 @@ module Google
|
|
368
369
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
369
370
|
# errors.
|
370
371
|
# @param [String] resource
|
371
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
372
|
-
#
|
372
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
373
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
374
|
+
# appropriate value for this field.
|
373
375
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
374
376
|
# @param [String] fields
|
375
377
|
# Selector specifying which fields to include in a partial response.
|
@@ -406,8 +408,9 @@ module Google
|
|
406
408
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
407
409
|
# This operation may "fail open" without warning.
|
408
410
|
# @param [String] resource
|
409
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
410
|
-
#
|
411
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
412
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
413
|
+
# appropriate value for this field.
|
411
414
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
412
415
|
# @param [String] fields
|
413
416
|
# Selector specifying which fields to include in a partial response.
|
@@ -482,8 +485,9 @@ module Google
|
|
482
485
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
483
486
|
# resource exists and does not have a policy set.
|
484
487
|
# @param [String] resource
|
485
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
486
|
-
#
|
488
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
489
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
490
|
+
# appropriate value for this field.
|
487
491
|
# @param [Fixnum] options_requested_policy_version
|
488
492
|
# Optional. The maximum policy version that will be used to format the policy.
|
489
493
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -527,8 +531,9 @@ module Google
|
|
527
531
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
528
532
|
# errors.
|
529
533
|
# @param [String] resource
|
530
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
531
|
-
#
|
534
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
535
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
536
|
+
# appropriate value for this field.
|
532
537
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
533
538
|
# @param [String] fields
|
534
539
|
# Selector specifying which fields to include in a partial response.
|
@@ -565,8 +570,9 @@ module Google
|
|
565
570
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
566
571
|
# This operation may "fail open" without warning.
|
567
572
|
# @param [String] resource
|
568
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
569
|
-
#
|
573
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
574
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
575
|
+
# appropriate value for this field.
|
570
576
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
571
577
|
# @param [String] fields
|
572
578
|
# Selector specifying which fields to include in a partial response.
|
@@ -898,8 +904,9 @@ module Google
|
|
898
904
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
899
905
|
# resource exists and does not have a policy set.
|
900
906
|
# @param [String] resource
|
901
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
902
|
-
#
|
907
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
908
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
909
|
+
# appropriate value for this field.
|
903
910
|
# @param [Fixnum] options_requested_policy_version
|
904
911
|
# Optional. The maximum policy version that will be used to format the policy.
|
905
912
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1032,8 +1039,9 @@ module Google
|
|
1032
1039
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1033
1040
|
# errors.
|
1034
1041
|
# @param [String] resource
|
1035
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1036
|
-
#
|
1042
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1043
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1044
|
+
# appropriate value for this field.
|
1037
1045
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1038
1046
|
# @param [String] fields
|
1039
1047
|
# Selector specifying which fields to include in a partial response.
|
@@ -1070,8 +1078,9 @@ module Google
|
|
1070
1078
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1071
1079
|
# This operation may "fail open" without warning.
|
1072
1080
|
# @param [String] resource
|
1073
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1074
|
-
#
|
1081
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1082
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1083
|
+
# appropriate value for this field.
|
1075
1084
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1076
1085
|
# @param [String] fields
|
1077
1086
|
# Selector specifying which fields to include in a partial response.
|
@@ -1250,8 +1259,9 @@ module Google
|
|
1250
1259
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1251
1260
|
# resource exists and does not have a policy set.
|
1252
1261
|
# @param [String] resource
|
1253
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1254
|
-
#
|
1262
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
1263
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1264
|
+
# appropriate value for this field.
|
1255
1265
|
# @param [Fixnum] options_requested_policy_version
|
1256
1266
|
# Optional. The maximum policy version that will be used to format the policy.
|
1257
1267
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1383,8 +1393,9 @@ module Google
|
|
1383
1393
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1384
1394
|
# errors.
|
1385
1395
|
# @param [String] resource
|
1386
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1387
|
-
#
|
1396
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1397
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1398
|
+
# appropriate value for this field.
|
1388
1399
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1389
1400
|
# @param [String] fields
|
1390
1401
|
# Selector specifying which fields to include in a partial response.
|
@@ -1421,8 +1432,9 @@ module Google
|
|
1421
1432
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1422
1433
|
# This operation may "fail open" without warning.
|
1423
1434
|
# @param [String] resource
|
1424
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1425
|
-
#
|
1435
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1436
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1437
|
+
# appropriate value for this field.
|
1426
1438
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1427
1439
|
# @param [String] fields
|
1428
1440
|
# Selector specifying which fields to include in a partial response.
|
@@ -1671,8 +1683,9 @@ module Google
|
|
1671
1683
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1672
1684
|
# resource exists and does not have a policy set.
|
1673
1685
|
# @param [String] resource
|
1674
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1675
|
-
#
|
1686
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
1687
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1688
|
+
# appropriate value for this field.
|
1676
1689
|
# @param [Fixnum] options_requested_policy_version
|
1677
1690
|
# Optional. The maximum policy version that will be used to format the policy.
|
1678
1691
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1804,8 +1817,9 @@ module Google
|
|
1804
1817
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1805
1818
|
# errors.
|
1806
1819
|
# @param [String] resource
|
1807
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1808
|
-
#
|
1820
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1821
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1822
|
+
# appropriate value for this field.
|
1809
1823
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1810
1824
|
# @param [String] fields
|
1811
1825
|
# Selector specifying which fields to include in a partial response.
|
@@ -1842,8 +1856,9 @@ module Google
|
|
1842
1856
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1843
1857
|
# This operation may "fail open" without warning.
|
1844
1858
|
# @param [String] resource
|
1845
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1846
|
-
#
|
1859
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1860
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1861
|
+
# appropriate value for this field.
|
1847
1862
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1848
1863
|
# @param [String] fields
|
1849
1864
|
# Selector specifying which fields to include in a partial response.
|
@@ -2026,8 +2041,9 @@ module Google
|
|
2026
2041
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
2027
2042
|
# resource exists and does not have a policy set.
|
2028
2043
|
# @param [String] resource
|
2029
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
2030
|
-
#
|
2044
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
2045
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
2046
|
+
# appropriate value for this field.
|
2031
2047
|
# @param [Fixnum] options_requested_policy_version
|
2032
2048
|
# Optional. The maximum policy version that will be used to format the policy.
|
2033
2049
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -2160,8 +2176,9 @@ module Google
|
|
2160
2176
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
2161
2177
|
# errors.
|
2162
2178
|
# @param [String] resource
|
2163
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
2164
|
-
#
|
2179
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
2180
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
2181
|
+
# appropriate value for this field.
|
2165
2182
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
2166
2183
|
# @param [String] fields
|
2167
2184
|
# Selector specifying which fields to include in a partial response.
|
@@ -2198,8 +2215,9 @@ module Google
|
|
2198
2215
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
2199
2216
|
# This operation may "fail open" without warning.
|
2200
2217
|
# @param [String] resource
|
2201
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
2202
|
-
#
|
2218
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
2219
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
2220
|
+
# appropriate value for this field.
|
2203
2221
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
2204
2222
|
# @param [String] fields
|
2205
2223
|
# Selector specifying which fields to include in a partial response.
|
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.4.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-05-09 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.4.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: []
|