google-apis-dataplex_v1 0.87.0 → 0.88.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: b269fbaf9aca05fd58c7df0d1e9f3ad88ca6f12ce83853e70100fab31f5002f6
|
4
|
+
data.tar.gz: 434f7fe1979fc16f747652050ee1f9a8b4504cb2c8ae989af42394cbd167e789
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e05eddefb61002160659147dabaf5faeecb2a5f24d6133b07b8354f6714b536dc7745242e1b96c116b83f116bc1e186fb924baa01e88533d44408979df182786
|
7
|
+
data.tar.gz: b80c77bfed889430ea1fa87b3cbb090935b0e5498cdffdaba1231d381b4cb20d517789053fec1bb893230ff277ca975eb5fbffd2231a9d13dbeb10bc6ad4df66
|
data/CHANGELOG.md
CHANGED
@@ -2012,7 +2012,7 @@ module Google
|
|
2012
2012
|
include Google::Apis::Core::Hashable
|
2013
2013
|
|
2014
2014
|
# Output only. The service-qualified full resource name of the cloud resource.
|
2015
|
-
# Ex: bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
2015
|
+
# Ex: //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/
|
2016
2016
|
# TABLE_ID
|
2017
2017
|
# Corresponds to the JSON property `name`
|
2018
2018
|
# @return [String]
|
@@ -4491,6 +4491,12 @@ module Google
|
|
4491
4491
|
# @return [String]
|
4492
4492
|
attr_accessor :create_time
|
4493
4493
|
|
4494
|
+
# Optional. Represent the state of CMEK opt-in for metastore.
|
4495
|
+
# Corresponds to the JSON property `enableMetastoreEncryption`
|
4496
|
+
# @return [Boolean]
|
4497
|
+
attr_accessor :enable_metastore_encryption
|
4498
|
+
alias_method :enable_metastore_encryption?, :enable_metastore_encryption
|
4499
|
+
|
4494
4500
|
# Output only. The state of encryption of the databases.
|
4495
4501
|
# Corresponds to the JSON property `encryptionState`
|
4496
4502
|
# @return [String]
|
@@ -4532,6 +4538,7 @@ module Google
|
|
4532
4538
|
# Update properties of this object
|
4533
4539
|
def update!(**args)
|
4534
4540
|
@create_time = args[:create_time] if args.key?(:create_time)
|
4541
|
+
@enable_metastore_encryption = args[:enable_metastore_encryption] if args.key?(:enable_metastore_encryption)
|
4535
4542
|
@encryption_state = args[:encryption_state] if args.key?(:encryption_state)
|
4536
4543
|
@etag = args[:etag] if args.key?(:etag)
|
4537
4544
|
@failure_details = args[:failure_details] if args.key?(:failure_details)
|
@@ -9478,6 +9485,13 @@ module Google
|
|
9478
9485
|
# @return [Array<Google::Apis::DataplexV1::GoogleLongrunningOperation>]
|
9479
9486
|
attr_accessor :operations
|
9480
9487
|
|
9488
|
+
# Unordered list. Unreachable resources. Populated when the request sets
|
9489
|
+
# ListOperationsRequest.return_partial_success and reads across collections e.g.
|
9490
|
+
# when attempting to list all resources across all supported locations.
|
9491
|
+
# Corresponds to the JSON property `unreachable`
|
9492
|
+
# @return [Array<String>]
|
9493
|
+
attr_accessor :unreachable
|
9494
|
+
|
9481
9495
|
def initialize(**args)
|
9482
9496
|
update!(**args)
|
9483
9497
|
end
|
@@ -9486,6 +9500,7 @@ module Google
|
|
9486
9500
|
def update!(**args)
|
9487
9501
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
9488
9502
|
@operations = args[:operations] if args.key?(:operations)
|
9503
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
9489
9504
|
end
|
9490
9505
|
end
|
9491
9506
|
|
@@ -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.88.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 = "20250924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2656,6 +2656,7 @@ module Google
|
|
2656
2656
|
# @private
|
2657
2657
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2658
2658
|
property :create_time, as: 'createTime'
|
2659
|
+
property :enable_metastore_encryption, as: 'enableMetastoreEncryption'
|
2659
2660
|
property :encryption_state, as: 'encryptionState'
|
2660
2661
|
property :etag, as: 'etag'
|
2661
2662
|
property :failure_details, as: 'failureDetails', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1EncryptionConfigFailureDetails::Representation
|
@@ -3936,6 +3937,7 @@ module Google
|
|
3936
3937
|
property :next_page_token, as: 'nextPageToken'
|
3937
3938
|
collection :operations, as: 'operations', class: Google::Apis::DataplexV1::GoogleLongrunningOperation, decorator: Google::Apis::DataplexV1::GoogleLongrunningOperation::Representation
|
3938
3939
|
|
3940
|
+
collection :unreachable, as: 'unreachable'
|
3939
3941
|
end
|
3940
3942
|
end
|
3941
3943
|
|
@@ -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.88.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.88.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:
|