google-apis-dataplex_v1 0.2.0 → 0.5.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: 7cb881d3be3e58139fd259a768efb212d50a413765a8b9a7b27dda4ea61c9289
4
- data.tar.gz: 69ecd28509d29487967c6d2b4d45bf4abc10d939c77e3946286a502c3f0e8427
3
+ metadata.gz: b7e71720e6310c15d7bcb6f9597cb440575bd97ba79e8db886ba012b9bbbfc93
4
+ data.tar.gz: 070757b13da6a4feec670cb2876e8a8496250cf72dcdb433ee16fd2ad3036469
5
5
  SHA512:
6
- metadata.gz: 734c84bb62f80192d60f348683393b56631dd555e0c4e2f915624138416059082d00c3fbc6357938d62fd4fa5375543368bc38bbe7a864182d948f13a184b603
7
- data.tar.gz: 5e8068aad61a80b7fd77ca7755b6454b02f15cfb9767b4158e5cd0e7da29f77bcd26329e4512188e4f734075d7f2788d2616a3ca68a74c2a6ce41bf656daf0b2
6
+ metadata.gz: 0db009067077b16ff08dc22ef7c599844d8474b92c31394fe6e489c0224bb73ae0e273e30152fefcc944149c5869af67e62435ff04146462931c96f694ad8ab3
7
+ data.tar.gz: 95a5cdcfb07052eb4eb7618c05a58e43654ce66ba609165cd0ef1ecc19adbd63c97d7edd4c5a78156121288dfb580fe4f73f9b0205e54259935d70ab4568cfd1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-dataplex_v1
2
2
 
3
+ ### v0.5.0 (2022-05-15)
4
+
5
+ * Regenerated from discovery document revision 20220509
6
+
7
+ ### v0.4.0 (2022-05-08)
8
+
9
+ * Regenerated from discovery document revision 20220502
10
+
11
+ ### v0.3.0 (2022-04-07)
12
+
13
+ * Regenerated from discovery document revision 20220328
14
+
3
15
  ### v0.2.0 (2022-03-06)
4
16
 
5
17
  * Regenerated from discovery document revision 20220223
@@ -25,8 +25,7 @@ module Google
25
25
  # A generic empty message that you can re-use to avoid defining duplicated empty
26
26
  # messages in your APIs. A typical example is to use it as the request or the
27
27
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
28
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
29
- # Empty is empty JSON object ``.
28
+ # protobuf.Empty) returns (google.protobuf.Empty); `
30
29
  class Empty
31
30
  include Google::Apis::Core::Hashable
32
31
 
@@ -1051,6 +1050,12 @@ module Google
1051
1050
  # @return [String]
1052
1051
  attr_accessor :partition
1053
1052
 
1053
+ # The locations of the data items (e.g., a Cloud Storage objects) sampled for
1054
+ # metadata inference.
1055
+ # Corresponds to the JSON property `sampledDataLocations`
1056
+ # @return [Array<String>]
1057
+ attr_accessor :sampled_data_locations
1058
+
1054
1059
  # The type of the containing entity resource.
1055
1060
  # Corresponds to the JSON property `type`
1056
1061
  # @return [String]
@@ -1064,6 +1069,7 @@ module Google
1064
1069
  def update!(**args)
1065
1070
  @entity = args[:entity] if args.key?(:entity)
1066
1071
  @partition = args[:partition] if args.key?(:partition)
1072
+ @sampled_data_locations = args[:sampled_data_locations] if args.key?(:sampled_data_locations)
1067
1073
  @type = args[:type] if args.key?(:type)
1068
1074
  end
1069
1075
  end
@@ -2590,6 +2596,11 @@ module Google
2590
2596
  # @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec]
2591
2597
  attr_accessor :execution_spec
2592
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
+
2593
2604
  # Optional. User-defined labels for the task.
2594
2605
  # Corresponds to the JSON property `labels`
2595
2606
  # @return [Hash<String,String>]
@@ -2637,6 +2648,7 @@ module Google
2637
2648
  @description = args[:description] if args.key?(:description)
2638
2649
  @display_name = args[:display_name] if args.key?(:display_name)
2639
2650
  @execution_spec = args[:execution_spec] if args.key?(:execution_spec)
2651
+ @execution_status = args[:execution_status] if args.key?(:execution_status)
2640
2652
  @labels = args[:labels] if args.key?(:labels)
2641
2653
  @name = args[:name] if args.key?(:name)
2642
2654
  @spark = args[:spark] if args.key?(:spark)
@@ -2668,6 +2680,13 @@ module Google
2668
2680
  # @return [String]
2669
2681
  attr_accessor :max_job_execution_lifetime
2670
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
+
2671
2690
  # Required. Service account to use to execute a task. If not provided, the
2672
2691
  # default Compute service account for the project is used.
2673
2692
  # Corresponds to the JSON property `serviceAccount`
@@ -2682,10 +2701,36 @@ module Google
2682
2701
  def update!(**args)
2683
2702
  @args = args[:args] if args.key?(:args)
2684
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)
2685
2705
  @service_account = args[:service_account] if args.key?(:service_account)
2686
2706
  end
2687
2707
  end
2688
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
+
2689
2734
  # Configuration for the underlying infrastructure used to run workloads.
2690
2735
  class GoogleCloudDataplexV1TaskInfrastructureSpec
2691
2736
  include Google::Apis::Core::Hashable
@@ -2721,13 +2766,15 @@ module Google
2721
2766
  class GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
2722
2767
  include Google::Apis::Core::Hashable
2723
2768
 
2724
- # Optional. Total number of job executors.
2769
+ # Optional. Total number of job executors. Executor Count should be between 2
2770
+ # and 100. Default=2
2725
2771
  # Corresponds to the JSON property `executorsCount`
2726
2772
  # @return [Fixnum]
2727
2773
  attr_accessor :executors_count
2728
2774
 
2729
2775
  # Optional. Max configurable executors. If max_executors_count > executors_count,
2730
- # then auto-scaling is enabled.
2776
+ # then auto-scaling is enabled. Max Executor Count should be between 2 and 1000.
2777
+ # Default=1000
2731
2778
  # Corresponds to the JSON property `maxExecutorsCount`
2732
2779
  # @return [Fixnum]
2733
2780
  attr_accessor :max_executors_count
@@ -3347,7 +3394,7 @@ module Google
3347
3394
  # @return [Google::Apis::DataplexV1::GoogleTypeExpr]
3348
3395
  attr_accessor :condition
3349
3396
 
3350
- # Specifies the principals requesting access for a Cloud Platform resource.
3397
+ # Specifies the principals requesting access for a Google Cloud resource.
3351
3398
  # members can have the following values: allUsers: A special identifier that
3352
3399
  # represents anyone who is on the internet; with or without a Google account.
3353
3400
  # allAuthenticatedUsers: A special identifier that represents anyone who is
@@ -3545,8 +3592,8 @@ module Google
3545
3592
  include Google::Apis::Core::Hashable
3546
3593
 
3547
3594
  # The set of permissions to check for the resource. Permissions with wildcards (
3548
- # such as '*' or 'storage.*') are not allowed. For more information see IAM
3549
- # 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).
3550
3597
  # Corresponds to the JSON property `permissions`
3551
3598
  # @return [Array<String>]
3552
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.2.0"
19
+ GEM_VERSION = "0.5.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 = "20220223"
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
 
@@ -873,6 +879,7 @@ module Google
873
879
  class Representation < Google::Apis::Core::JsonRepresentation
874
880
  property :entity, as: 'entity'
875
881
  property :partition, as: 'partition'
882
+ collection :sampled_data_locations, as: 'sampledDataLocations'
876
883
  property :type, as: 'type'
877
884
  end
878
885
  end
@@ -1290,6 +1297,8 @@ module Google
1290
1297
  property :display_name, as: 'displayName'
1291
1298
  property :execution_spec, as: 'executionSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec::Representation
1292
1299
 
1300
+ property :execution_status, as: 'executionStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus::Representation
1301
+
1293
1302
  hash :labels, as: 'labels'
1294
1303
  property :name, as: 'name'
1295
1304
  property :spark, as: 'spark', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig::Representation
@@ -1307,10 +1316,20 @@ module Google
1307
1316
  class Representation < Google::Apis::Core::JsonRepresentation
1308
1317
  hash :args, as: 'args'
1309
1318
  property :max_job_execution_lifetime, as: 'maxJobExecutionLifetime'
1319
+ property :project, as: 'project'
1310
1320
  property :service_account, as: 'serviceAccount'
1311
1321
  end
1312
1322
  end
1313
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
+
1314
1333
  class GoogleCloudDataplexV1TaskInfrastructureSpec
1315
1334
  # @private
1316
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.2.0
4
+ version: 0.5.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-03-07 00:00:00.000000000 Z
11
+ date: 2022-05-16 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.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.5.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: []