google-apis-dataplex_v1 0.87.0 → 0.89.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: 8eef13d3836da5ec5396df8f949df752a13655a9307a6be8aabb3ed1ef973892
|
|
4
|
+
data.tar.gz: 838ac8cbe60bff6d258aa1b58caa6b78147a3c4a02215b9d9d07932ff1704a7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4dfba5deae2dd1bae3b145f79ef5cb0ecf1bc1f69bbfb8a79322de767b87157f0357e5def1a82c2d2a0e54ec8b9244bfbb7e1d14eefcf4c746b82447ff7eddf
|
|
7
|
+
data.tar.gz: f93d09f9927feb317e977f56287657a6c178270c7791379d620a2c77db568005468bfb624d354f25c04d21ebc7811320e72115e2d754bc4a50d80b25fda093b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
|
2
2
|
|
|
3
|
+
### v0.89.0 (2025-10-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251012
|
|
6
|
+
|
|
7
|
+
### v0.88.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250924
|
|
10
|
+
|
|
3
11
|
### v0.87.0 (2025-09-28)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250919
|
|
@@ -431,6 +431,11 @@ module Google
|
|
|
431
431
|
# @return [String]
|
|
432
432
|
attr_accessor :create_time
|
|
433
433
|
|
|
434
|
+
# Optional. Immutable. Stores data classification of the aspect.
|
|
435
|
+
# Corresponds to the JSON property `dataClassification`
|
|
436
|
+
# @return [String]
|
|
437
|
+
attr_accessor :data_classification
|
|
438
|
+
|
|
434
439
|
# Optional. Description of the AspectType.
|
|
435
440
|
# Corresponds to the JSON property `description`
|
|
436
441
|
# @return [String]
|
|
@@ -489,6 +494,7 @@ module Google
|
|
|
489
494
|
def update!(**args)
|
|
490
495
|
@authorization = args[:authorization] if args.key?(:authorization)
|
|
491
496
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
497
|
+
@data_classification = args[:data_classification] if args.key?(:data_classification)
|
|
492
498
|
@description = args[:description] if args.key?(:description)
|
|
493
499
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
494
500
|
@etag = args[:etag] if args.key?(:etag)
|
|
@@ -2012,7 +2018,7 @@ module Google
|
|
|
2012
2018
|
include Google::Apis::Core::Hashable
|
|
2013
2019
|
|
|
2014
2020
|
# Output only. The service-qualified full resource name of the cloud resource.
|
|
2015
|
-
# Ex: bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
|
2021
|
+
# Ex: //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
|
2016
2022
|
# TABLE_ID
|
|
2017
2023
|
# Corresponds to the JSON property `name`
|
|
2018
2024
|
# @return [String]
|
|
@@ -4491,6 +4497,12 @@ module Google
|
|
|
4491
4497
|
# @return [String]
|
|
4492
4498
|
attr_accessor :create_time
|
|
4493
4499
|
|
|
4500
|
+
# Optional. Represent the state of CMEK opt-in for metastore.
|
|
4501
|
+
# Corresponds to the JSON property `enableMetastoreEncryption`
|
|
4502
|
+
# @return [Boolean]
|
|
4503
|
+
attr_accessor :enable_metastore_encryption
|
|
4504
|
+
alias_method :enable_metastore_encryption?, :enable_metastore_encryption
|
|
4505
|
+
|
|
4494
4506
|
# Output only. The state of encryption of the databases.
|
|
4495
4507
|
# Corresponds to the JSON property `encryptionState`
|
|
4496
4508
|
# @return [String]
|
|
@@ -4532,6 +4544,7 @@ module Google
|
|
|
4532
4544
|
# Update properties of this object
|
|
4533
4545
|
def update!(**args)
|
|
4534
4546
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
4547
|
+
@enable_metastore_encryption = args[:enable_metastore_encryption] if args.key?(:enable_metastore_encryption)
|
|
4535
4548
|
@encryption_state = args[:encryption_state] if args.key?(:encryption_state)
|
|
4536
4549
|
@etag = args[:etag] if args.key?(:etag)
|
|
4537
4550
|
@failure_details = args[:failure_details] if args.key?(:failure_details)
|
|
@@ -9478,6 +9491,13 @@ module Google
|
|
|
9478
9491
|
# @return [Array<Google::Apis::DataplexV1::GoogleLongrunningOperation>]
|
|
9479
9492
|
attr_accessor :operations
|
|
9480
9493
|
|
|
9494
|
+
# Unordered list. Unreachable resources. Populated when the request sets
|
|
9495
|
+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
|
|
9496
|
+
# when attempting to list all resources across all supported locations.
|
|
9497
|
+
# Corresponds to the JSON property `unreachable`
|
|
9498
|
+
# @return [Array<String>]
|
|
9499
|
+
attr_accessor :unreachable
|
|
9500
|
+
|
|
9481
9501
|
def initialize(**args)
|
|
9482
9502
|
update!(**args)
|
|
9483
9503
|
end
|
|
@@ -9486,6 +9506,7 @@ module Google
|
|
|
9486
9506
|
def update!(**args)
|
|
9487
9507
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
9488
9508
|
@operations = args[:operations] if args.key?(:operations)
|
|
9509
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
9489
9510
|
end
|
|
9490
9511
|
end
|
|
9491
9512
|
|
|
@@ -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.89.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251012"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1554,6 +1554,7 @@ module Google
|
|
|
1554
1554
|
property :authorization, as: 'authorization', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectTypeAuthorization, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1AspectTypeAuthorization::Representation
|
|
1555
1555
|
|
|
1556
1556
|
property :create_time, as: 'createTime'
|
|
1557
|
+
property :data_classification, as: 'dataClassification'
|
|
1557
1558
|
property :description, as: 'description'
|
|
1558
1559
|
property :display_name, as: 'displayName'
|
|
1559
1560
|
property :etag, as: 'etag'
|
|
@@ -2656,6 +2657,7 @@ module Google
|
|
|
2656
2657
|
# @private
|
|
2657
2658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2658
2659
|
property :create_time, as: 'createTime'
|
|
2660
|
+
property :enable_metastore_encryption, as: 'enableMetastoreEncryption'
|
|
2659
2661
|
property :encryption_state, as: 'encryptionState'
|
|
2660
2662
|
property :etag, as: 'etag'
|
|
2661
2663
|
property :failure_details, as: 'failureDetails', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails::Representation
|
|
@@ -3936,6 +3938,7 @@ module Google
|
|
|
3936
3938
|
property :next_page_token, as: 'nextPageToken'
|
|
3937
3939
|
collection :operations, as: 'operations', class: Google::Apis::DataplexV1::GoogleLongrunningOperation, decorator: Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
|
|
3938
3940
|
|
|
3941
|
+
collection :unreachable, as: 'unreachable'
|
|
3939
3942
|
end
|
|
3940
3943
|
end
|
|
3941
3944
|
|
|
@@ -482,6 +482,13 @@ module Google
|
|
|
482
482
|
# The standard list page size.
|
|
483
483
|
# @param [String] page_token
|
|
484
484
|
# The standard list page token.
|
|
485
|
+
# @param [Boolean] return_partial_success
|
|
486
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
487
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
488
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
489
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
490
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
491
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
485
492
|
# @param [String] fields
|
|
486
493
|
# Selector specifying which fields to include in a partial response.
|
|
487
494
|
# @param [String] quota_user
|
|
@@ -499,7 +506,7 @@ module Google
|
|
|
499
506
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
500
507
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
501
508
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
502
|
-
def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
509
|
+
def list_organization_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
503
510
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
504
511
|
command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse::Representation
|
|
505
512
|
command.response_class = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse
|
|
@@ -507,6 +514,7 @@ module Google
|
|
|
507
514
|
command.query['filter'] = filter unless filter.nil?
|
|
508
515
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
509
516
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
517
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
510
518
|
command.query['fields'] = fields unless fields.nil?
|
|
511
519
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
512
520
|
execute_or_queue_command(command, &block)
|
|
@@ -1020,6 +1028,127 @@ module Google
|
|
|
1020
1028
|
execute_or_queue_command(command, &block)
|
|
1021
1029
|
end
|
|
1022
1030
|
|
|
1031
|
+
# Gets the access control policy for a resource. Returns an empty policy if the
|
|
1032
|
+
# resource exists and does not have a policy set.
|
|
1033
|
+
# @param [String] resource
|
|
1034
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
|
1035
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
|
1036
|
+
# appropriate value for this field.
|
|
1037
|
+
# @param [Fixnum] options_requested_policy_version
|
|
1038
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
1039
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
1040
|
+
# rejected.Requests for policies with any conditional role bindings must specify
|
|
1041
|
+
# version 3. Policies with no conditional role bindings may specify any valid
|
|
1042
|
+
# value or leave the field unset.The policy in the response might use the policy
|
|
1043
|
+
# version that you specified, or it might use a lower policy version. For
|
|
1044
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
1045
|
+
# bindings, the response uses version 1.To learn which resources support
|
|
1046
|
+
# conditions in their IAM policies, see the IAM documentation (https://cloud.
|
|
1047
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
1048
|
+
# @param [String] fields
|
|
1049
|
+
# Selector specifying which fields to include in a partial response.
|
|
1050
|
+
# @param [String] quota_user
|
|
1051
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1052
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1053
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1054
|
+
# Request-specific options
|
|
1055
|
+
#
|
|
1056
|
+
# @yield [result, err] Result & error if block supplied
|
|
1057
|
+
# @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1Policy] parsed result object
|
|
1058
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1059
|
+
#
|
|
1060
|
+
# @return [Google::Apis::DataplexV1::GoogleIamV1Policy]
|
|
1061
|
+
#
|
|
1062
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1063
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1064
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1065
|
+
def get_project_location_change_request_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1066
|
+
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
|
1067
|
+
command.response_representation = Google::Apis::DataplexV1::GoogleIamV1Policy::Representation
|
|
1068
|
+
command.response_class = Google::Apis::DataplexV1::GoogleIamV1Policy
|
|
1069
|
+
command.params['resource'] = resource unless resource.nil?
|
|
1070
|
+
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
|
1071
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1072
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1073
|
+
execute_or_queue_command(command, &block)
|
|
1074
|
+
end
|
|
1075
|
+
|
|
1076
|
+
# Sets the access control policy on the specified resource. Replaces any
|
|
1077
|
+
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
|
1078
|
+
# errors.
|
|
1079
|
+
# @param [String] resource
|
|
1080
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
|
1081
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
|
1082
|
+
# appropriate value for this field.
|
|
1083
|
+
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
|
1084
|
+
# @param [String] fields
|
|
1085
|
+
# Selector specifying which fields to include in a partial response.
|
|
1086
|
+
# @param [String] quota_user
|
|
1087
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1088
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1089
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1090
|
+
# Request-specific options
|
|
1091
|
+
#
|
|
1092
|
+
# @yield [result, err] Result & error if block supplied
|
|
1093
|
+
# @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1Policy] parsed result object
|
|
1094
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1095
|
+
#
|
|
1096
|
+
# @return [Google::Apis::DataplexV1::GoogleIamV1Policy]
|
|
1097
|
+
#
|
|
1098
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1099
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1100
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1101
|
+
def set_project_location_change_request_iam_policy(resource, google_iam_v1_set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1102
|
+
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
|
1103
|
+
command.request_representation = Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest::Representation
|
|
1104
|
+
command.request_object = google_iam_v1_set_iam_policy_request_object
|
|
1105
|
+
command.response_representation = Google::Apis::DataplexV1::GoogleIamV1Policy::Representation
|
|
1106
|
+
command.response_class = Google::Apis::DataplexV1::GoogleIamV1Policy
|
|
1107
|
+
command.params['resource'] = resource unless resource.nil?
|
|
1108
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1109
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1110
|
+
execute_or_queue_command(command, &block)
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1113
|
+
# Returns permissions that a caller has on the specified resource. If the
|
|
1114
|
+
# resource does not exist, this will return an empty set of permissions, not a
|
|
1115
|
+
# NOT_FOUND error.Note: This operation is designed to be used for building
|
|
1116
|
+
# permission-aware UIs and command-line tools, not for authorization checking.
|
|
1117
|
+
# This operation may "fail open" without warning.
|
|
1118
|
+
# @param [String] resource
|
|
1119
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
|
1120
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
|
1121
|
+
# appropriate value for this field.
|
|
1122
|
+
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
|
1123
|
+
# @param [String] fields
|
|
1124
|
+
# Selector specifying which fields to include in a partial response.
|
|
1125
|
+
# @param [String] quota_user
|
|
1126
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1127
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1128
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1129
|
+
# Request-specific options
|
|
1130
|
+
#
|
|
1131
|
+
# @yield [result, err] Result & error if block supplied
|
|
1132
|
+
# @yieldparam result [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse] parsed result object
|
|
1133
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1134
|
+
#
|
|
1135
|
+
# @return [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse]
|
|
1136
|
+
#
|
|
1137
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1138
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1139
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1140
|
+
def test_project_location_change_request_iam_permissions(resource, google_iam_v1_test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1141
|
+
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
|
1142
|
+
command.request_representation = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest::Representation
|
|
1143
|
+
command.request_object = google_iam_v1_test_iam_permissions_request_object
|
|
1144
|
+
command.response_representation = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse::Representation
|
|
1145
|
+
command.response_class = Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsResponse
|
|
1146
|
+
command.params['resource'] = resource unless resource.nil?
|
|
1147
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1148
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1149
|
+
execute_or_queue_command(command, &block)
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1023
1152
|
# Create a DataAttributeBinding resource.
|
|
1024
1153
|
# @param [String] parent
|
|
1025
1154
|
# Required. The resource name of the parent data taxonomy projects/`
|
|
@@ -8024,6 +8153,13 @@ module Google
|
|
|
8024
8153
|
# The standard list page size.
|
|
8025
8154
|
# @param [String] page_token
|
|
8026
8155
|
# The standard list page token.
|
|
8156
|
+
# @param [Boolean] return_partial_success
|
|
8157
|
+
# When set to true, operations that are reachable are returned as normal, and
|
|
8158
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
8159
|
+
# unreachable field.This can only be true when reading across collections e.g.
|
|
8160
|
+
# when parent is set to "projects/example/locations/-".This field is not by
|
|
8161
|
+
# default supported and will result in an UNIMPLEMENTED error if set unless
|
|
8162
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
8027
8163
|
# @param [String] fields
|
|
8028
8164
|
# Selector specifying which fields to include in a partial response.
|
|
8029
8165
|
# @param [String] quota_user
|
|
@@ -8041,7 +8177,7 @@ module Google
|
|
|
8041
8177
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
8042
8178
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
8043
8179
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
8044
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8180
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
8045
8181
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
|
8046
8182
|
command.response_representation = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse::Representation
|
|
8047
8183
|
command.response_class = Google::Apis::DataplexV1::GoogleLongrunningListOperationsResponse
|
|
@@ -8049,6 +8185,7 @@ module Google
|
|
|
8049
8185
|
command.query['filter'] = filter unless filter.nil?
|
|
8050
8186
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
8051
8187
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
8188
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
8052
8189
|
command.query['fields'] = fields unless fields.nil?
|
|
8053
8190
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
8054
8191
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.89.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.89.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|