google-apis-dataplex_v1 0.3.0 → 0.6.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: 9b6f6ea4ba3536e5876b29ea0eef4dafc9d9b1b9ce85d9875f27b58c7edab945
4
- data.tar.gz: ddad77ea1b8b0c2ccd321d7acc416efc3fc2308fbbc29810d876ef47d12adfa2
3
+ metadata.gz: 444ea3c00b3d3e7696d19b1d518c72fcd51761db36a8652cb90d82d8720bc67a
4
+ data.tar.gz: b9c1745ca4d73d8fdb6efd47929f4955eddebaad9168ee3a0c8b0f7e2b3db5a1
5
5
  SHA512:
6
- metadata.gz: 3b0319f111e2b770c16c949736885829bbd0b0fe06ded2fb49479dd4e05b6de7dd5ba8f3fb67998b359c3b92663aedf29109d826a576a25471471b5edcdd5a36
7
- data.tar.gz: 07c8dc0518d8bd4e9c01d835752613d59154685db889b5c230abb69fcacc2cb10c3b46134adb633a553a4cf533f841308d90589d846445a0fa45e8407c10fdaa
6
+ metadata.gz: 9c75b1bbca0270a9fd0cd1cd0dbcd1dd2d0686b39733a8df3bb40fdf782763681c6dfcf211e852063d0c3ae434e63f89986c4695a7d46a6ee1a6a74e27d62207
7
+ data.tar.gz: 2f782a6619fe98ac3111a4863ed0b49fd9e41d928bb035082f21c402800427608914d7d2aedaf395c0f5576b6bb090937ce4c8823e51d941731b4d122d3de3cf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.6.0 (2022-06-06)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+
7
+ ### v0.5.0 (2022-05-15)
8
+
9
+ * Regenerated from discovery document revision 20220509
10
+
11
+ ### v0.4.0 (2022-05-08)
12
+
13
+ * Regenerated from discovery document revision 20220502
14
+
3
15
  ### v0.3.0 (2022-04-07)
4
16
 
5
17
  * Regenerated from discovery document revision 20220328
@@ -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
@@ -2727,13 +2766,15 @@ module Google
2727
2766
  class GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
2728
2767
  include Google::Apis::Core::Hashable
2729
2768
 
2730
- # Optional. Total number of job executors.
2769
+ # Optional. Total number of job executors. Executor Count should be between 2
2770
+ # and 100. Default=2
2731
2771
  # Corresponds to the JSON property `executorsCount`
2732
2772
  # @return [Fixnum]
2733
2773
  attr_accessor :executors_count
2734
2774
 
2735
2775
  # Optional. Max configurable executors. If max_executors_count > executors_count,
2736
- # then auto-scaling is enabled.
2776
+ # then auto-scaling is enabled. Max Executor Count should be between 2 and 1000.
2777
+ # Default=1000
2737
2778
  # Corresponds to the JSON property `maxExecutorsCount`
2738
2779
  # @return [Fixnum]
2739
2780
  attr_accessor :max_executors_count
@@ -3353,7 +3394,7 @@ module Google
3353
3394
  # @return [Google::Apis::DataplexV1::GoogleTypeExpr]
3354
3395
  attr_accessor :condition
3355
3396
 
3356
- # Specifies the principals requesting access for a Cloud Platform resource.
3397
+ # Specifies the principals requesting access for a Google Cloud resource.
3357
3398
  # members can have the following values: allUsers: A special identifier that
3358
3399
  # represents anyone who is on the internet; with or without a Google account.
3359
3400
  # allAuthenticatedUsers: A special identifier that represents anyone who is
@@ -3551,8 +3592,8 @@ module Google
3551
3592
  include Google::Apis::Core::Hashable
3552
3593
 
3553
3594
  # The set of permissions to check for the resource. Permissions with wildcards (
3554
- # such as '*' or 'storage.*') are not allowed. For more information see IAM
3555
- # Overview (https://cloud.google.com/iam/docs/overview#permissions).
3595
+ # such as * or storage.*) are not allowed. For more information see IAM Overview
3596
+ # (https://cloud.google.com/iam/docs/overview#permissions).
3556
3597
  # Corresponds to the JSON property `permissions`
3557
3598
  # @return [Array<String>]
3558
3599
  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.3.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220328"
25
+ REVISION = "20220509"
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 the
238
- # operation documentation for the appropriate value for this field.
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 the
372
- # operation documentation for the appropriate value for this field.
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 the
410
- # operation documentation for the appropriate value for this field.
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 the
486
- # operation documentation for the appropriate value for this field.
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 the
531
- # operation documentation for the appropriate value for this field.
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 the
569
- # operation documentation for the appropriate value for this field.
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 the
902
- # operation documentation for the appropriate value for this field.
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 the
1036
- # operation documentation for the appropriate value for this field.
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 the
1074
- # operation documentation for the appropriate value for this field.
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.
@@ -1107,6 +1116,13 @@ module Google
1107
1116
  # Required. The resource name of the parent environment: projects/`
1108
1117
  # project_number`/locations/`location_id`/lakes/`lake_id`/environment/`
1109
1118
  # environment_id`
1119
+ # @param [String] filter
1120
+ # Optional. Filter request. The following mode filter is supported to return
1121
+ # only the sessions belonging to the requester when the mode is USER and return
1122
+ # sessions of all the users when the mode is ADMIN. When no filter is sent
1123
+ # default to USER mode. NOTE: When the mode is ADMIN, the requester should have
1124
+ # dataplex.environments.listAllSessions permission to list all sessions, in
1125
+ # absence of the permission, the request fails.mode = ADMIN | USER
1110
1126
  # @param [Fixnum] page_size
1111
1127
  # Optional. Maximum number of sessions to return. The service may return fewer
1112
1128
  # than this value. If unspecified, at most 10 sessions will be returned. The
@@ -1132,11 +1148,12 @@ module Google
1132
1148
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1133
1149
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1134
1150
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1135
- def list_project_location_lake_environment_sessions(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1151
+ def list_project_location_lake_environment_sessions(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1136
1152
  command = make_simple_command(:get, 'v1/{+parent}/sessions', options)
1137
1153
  command.response_representation = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListSessionsResponse::Representation
1138
1154
  command.response_class = Google::Apis::DataplexV1::GoogleCloudDataplexV1ListSessionsResponse
1139
1155
  command.params['parent'] = parent unless parent.nil?
1156
+ command.query['filter'] = filter unless filter.nil?
1140
1157
  command.query['pageSize'] = page_size unless page_size.nil?
1141
1158
  command.query['pageToken'] = page_token unless page_token.nil?
1142
1159
  command.query['fields'] = fields unless fields.nil?
@@ -1250,8 +1267,9 @@ module Google
1250
1267
  # Gets the access control policy for a resource. Returns an empty policy if the
1251
1268
  # resource exists and does not have a policy set.
1252
1269
  # @param [String] resource
1253
- # REQUIRED: The resource for which the policy is being requested. See the
1254
- # operation documentation for the appropriate value for this field.
1270
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1271
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1272
+ # appropriate value for this field.
1255
1273
  # @param [Fixnum] options_requested_policy_version
1256
1274
  # Optional. The maximum policy version that will be used to format the policy.
1257
1275
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -1383,8 +1401,9 @@ module Google
1383
1401
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1384
1402
  # errors.
1385
1403
  # @param [String] resource
1386
- # REQUIRED: The resource for which the policy is being specified. See the
1387
- # operation documentation for the appropriate value for this field.
1404
+ # REQUIRED: The resource for which the policy is being specified. See Resource
1405
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1406
+ # appropriate value for this field.
1388
1407
  # @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
1389
1408
  # @param [String] fields
1390
1409
  # Selector specifying which fields to include in a partial response.
@@ -1421,8 +1440,9 @@ module Google
1421
1440
  # permission-aware UIs and command-line tools, not for authorization checking.
1422
1441
  # This operation may "fail open" without warning.
1423
1442
  # @param [String] resource
1424
- # REQUIRED: The resource for which the policy detail is being requested. See the
1425
- # operation documentation for the appropriate value for this field.
1443
+ # REQUIRED: The resource for which the policy detail is being requested. See
1444
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
1445
+ # appropriate value for this field.
1426
1446
  # @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
1427
1447
  # @param [String] fields
1428
1448
  # Selector specifying which fields to include in a partial response.
@@ -1671,8 +1691,9 @@ module Google
1671
1691
  # Gets the access control policy for a resource. Returns an empty policy if the
1672
1692
  # resource exists and does not have a policy set.
1673
1693
  # @param [String] resource
1674
- # REQUIRED: The resource for which the policy is being requested. See the
1675
- # operation documentation for the appropriate value for this field.
1694
+ # REQUIRED: The resource for which the policy is being requested. See Resource
1695
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1696
+ # appropriate value for this field.
1676
1697
  # @param [Fixnum] options_requested_policy_version
1677
1698
  # Optional. The maximum policy version that will be used to format the policy.
1678
1699
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -1804,8 +1825,9 @@ module Google
1804
1825
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
1805
1826
  # errors.
1806
1827
  # @param [String] resource
1807
- # REQUIRED: The resource for which the policy is being specified. See the
1808
- # operation documentation for the appropriate value for this field.
1828
+ # REQUIRED: The resource for which the policy is being specified. See Resource
1829
+ # names (https://cloud.google.com/apis/design/resource_names) for the
1830
+ # appropriate value for this field.
1809
1831
  # @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
1810
1832
  # @param [String] fields
1811
1833
  # Selector specifying which fields to include in a partial response.
@@ -1842,8 +1864,9 @@ module Google
1842
1864
  # permission-aware UIs and command-line tools, not for authorization checking.
1843
1865
  # This operation may "fail open" without warning.
1844
1866
  # @param [String] resource
1845
- # REQUIRED: The resource for which the policy detail is being requested. See the
1846
- # operation documentation for the appropriate value for this field.
1867
+ # REQUIRED: The resource for which the policy detail is being requested. See
1868
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
1869
+ # appropriate value for this field.
1847
1870
  # @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
1848
1871
  # @param [String] fields
1849
1872
  # Selector specifying which fields to include in a partial response.
@@ -2026,8 +2049,9 @@ module Google
2026
2049
  # Gets the access control policy for a resource. Returns an empty policy if the
2027
2050
  # resource exists and does not have a policy set.
2028
2051
  # @param [String] resource
2029
- # REQUIRED: The resource for which the policy is being requested. See the
2030
- # operation documentation for the appropriate value for this field.
2052
+ # REQUIRED: The resource for which the policy is being requested. See Resource
2053
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2054
+ # appropriate value for this field.
2031
2055
  # @param [Fixnum] options_requested_policy_version
2032
2056
  # Optional. The maximum policy version that will be used to format the policy.
2033
2057
  # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
@@ -2160,8 +2184,9 @@ module Google
2160
2184
  # existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
2161
2185
  # errors.
2162
2186
  # @param [String] resource
2163
- # REQUIRED: The resource for which the policy is being specified. See the
2164
- # operation documentation for the appropriate value for this field.
2187
+ # REQUIRED: The resource for which the policy is being specified. See Resource
2188
+ # names (https://cloud.google.com/apis/design/resource_names) for the
2189
+ # appropriate value for this field.
2165
2190
  # @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
2166
2191
  # @param [String] fields
2167
2192
  # Selector specifying which fields to include in a partial response.
@@ -2198,8 +2223,9 @@ module Google
2198
2223
  # permission-aware UIs and command-line tools, not for authorization checking.
2199
2224
  # This operation may "fail open" without warning.
2200
2225
  # @param [String] resource
2201
- # REQUIRED: The resource for which the policy detail is being requested. See the
2202
- # operation documentation for the appropriate value for this field.
2226
+ # REQUIRED: The resource for which the policy detail is being requested. See
2227
+ # Resource names (https://cloud.google.com/apis/design/resource_names) for the
2228
+ # appropriate value for this field.
2203
2229
  # @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
2204
2230
  # @param [String] fields
2205
2231
  # 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.3.0
4
+ version: 0.6.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-04-11 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.6.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: []
@@ -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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Dataplex API V1