google-apis-dataplex_v1 0.57.0 → 0.58.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: b7b4fc1dd733c11e9af5874a4c141e8ed06e2099830d9458892b886f5e83ea45
|
4
|
+
data.tar.gz: ac358212371a824232bb3129962a8d3b1083616308cd231749e8b72855990c2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed2083f130adcc1692de99a9b6229ed992845249ac29731d0e584e290e6e9fd15d7558a70e0148daedd5991f4137785aa87dc90997db4361b0490590debcf296
|
7
|
+
data.tar.gz: 7eeca34670568a51c07e5fc9f0a6a1864a4dab4ad49a37d309e5e3874007d388a40eef1b83d06f1f32d223912314c6b4843674317bd370fc88af89c555d9f462
|
data/CHANGELOG.md
CHANGED
@@ -3377,6 +3377,11 @@ module Google
|
|
3377
3377
|
class GoogleCloudDataplexV1DataScanExecutionStatus
|
3378
3378
|
include Google::Apis::Core::Hashable
|
3379
3379
|
|
3380
|
+
# Optional. The time when the DataScanJob execution was created.
|
3381
|
+
# Corresponds to the JSON property `latestJobCreateTime`
|
3382
|
+
# @return [String]
|
3383
|
+
attr_accessor :latest_job_create_time
|
3384
|
+
|
3380
3385
|
# The time when the latest DataScanJob ended.
|
3381
3386
|
# Corresponds to the JSON property `latestJobEndTime`
|
3382
3387
|
# @return [String]
|
@@ -3393,6 +3398,7 @@ module Google
|
|
3393
3398
|
|
3394
3399
|
# Update properties of this object
|
3395
3400
|
def update!(**args)
|
3401
|
+
@latest_job_create_time = args[:latest_job_create_time] if args.key?(:latest_job_create_time)
|
3396
3402
|
@latest_job_end_time = args[:latest_job_end_time] if args.key?(:latest_job_end_time)
|
3397
3403
|
@latest_job_start_time = args[:latest_job_start_time] if args.key?(:latest_job_start_time)
|
3398
3404
|
end
|
@@ -4129,6 +4135,14 @@ module Google
|
|
4129
4135
|
# @return [Hash<String,String>]
|
4130
4136
|
attr_accessor :labels
|
4131
4137
|
|
4138
|
+
# Output only. Location of the resource in the source system. Entry will be
|
4139
|
+
# searchable by this location. By default, this should match the location of the
|
4140
|
+
# EntryGroup containing this entry. A different value allows capturing source
|
4141
|
+
# location for data external to GCP.
|
4142
|
+
# Corresponds to the JSON property `location`
|
4143
|
+
# @return [String]
|
4144
|
+
attr_accessor :location
|
4145
|
+
|
4132
4146
|
# The platform containing the source system. The maximum size of the field is 64
|
4133
4147
|
# characters.
|
4134
4148
|
# Corresponds to the JSON property `platform`
|
@@ -4162,6 +4176,7 @@ module Google
|
|
4162
4176
|
@description = args[:description] if args.key?(:description)
|
4163
4177
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4164
4178
|
@labels = args[:labels] if args.key?(:labels)
|
4179
|
+
@location = args[:location] if args.key?(:location)
|
4165
4180
|
@platform = args[:platform] if args.key?(:platform)
|
4166
4181
|
@resource = args[:resource] if args.key?(:resource)
|
4167
4182
|
@system = args[:system] if args.key?(:system)
|
@@ -4600,7 +4615,7 @@ module Google
|
|
4600
4615
|
end
|
4601
4616
|
end
|
4602
4617
|
|
4603
|
-
#
|
4618
|
+
# Request details for generating data quality rule recommendations.
|
4604
4619
|
class GoogleCloudDataplexV1GenerateDataQualityRulesRequest
|
4605
4620
|
include Google::Apis::Core::Hashable
|
4606
4621
|
|
@@ -4613,11 +4628,12 @@ module Google
|
|
4613
4628
|
end
|
4614
4629
|
end
|
4615
4630
|
|
4616
|
-
#
|
4631
|
+
# Response details for data quality rule recommendations.
|
4617
4632
|
class GoogleCloudDataplexV1GenerateDataQualityRulesResponse
|
4618
4633
|
include Google::Apis::Core::Hashable
|
4619
4634
|
|
4620
|
-
#
|
4635
|
+
# The data quality rules that Dataplex generates based on the results of a data
|
4636
|
+
# profiling scan.
|
4621
4637
|
# Corresponds to the JSON property `rule`
|
4622
4638
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataQualityRule>]
|
4623
4639
|
attr_accessor :rule
|
@@ -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.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2112,6 +2112,7 @@ module Google
|
|
2112
2112
|
class GoogleCloudDataplexV1DataScanExecutionStatus
|
2113
2113
|
# @private
|
2114
2114
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2115
|
+
property :latest_job_create_time, as: 'latestJobCreateTime'
|
2115
2116
|
property :latest_job_end_time, as: 'latestJobEndTime'
|
2116
2117
|
property :latest_job_start_time, as: 'latestJobStartTime'
|
2117
2118
|
end
|
@@ -2300,6 +2301,7 @@ module Google
|
|
2300
2301
|
property :description, as: 'description'
|
2301
2302
|
property :display_name, as: 'displayName'
|
2302
2303
|
hash :labels, as: 'labels'
|
2304
|
+
property :location, as: 'location'
|
2303
2305
|
property :platform, as: 'platform'
|
2304
2306
|
property :resource, as: 'resource'
|
2305
2307
|
property :system, as: 'system'
|
@@ -944,11 +944,13 @@ module Google
|
|
944
944
|
execute_or_queue_command(command, &block)
|
945
945
|
end
|
946
946
|
|
947
|
-
# Generates recommended
|
947
|
+
# Generates recommended data quality rules based on the results of a data
|
948
|
+
# profiling scan.Use the recommendations to build rules for a data quality scan.
|
948
949
|
# @param [String] name
|
949
|
-
# Required. The name
|
950
|
-
# successful completed data profiling job
|
951
|
-
# completed data profiling
|
950
|
+
# Required. The name must be one of the following: The name of a data scan with
|
951
|
+
# at least one successful, completed data profiling job The name of a successful,
|
952
|
+
# completed data profiling job (a data scan job where the job type is data
|
953
|
+
# profiling)
|
952
954
|
# @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GenerateDataQualityRulesRequest] google_cloud_dataplex_v1_generate_data_quality_rules_request_object
|
953
955
|
# @param [String] fields
|
954
956
|
# Selector specifying which fields to include in a partial response.
|
@@ -1262,11 +1264,13 @@ module Google
|
|
1262
1264
|
execute_or_queue_command(command, &block)
|
1263
1265
|
end
|
1264
1266
|
|
1265
|
-
# Generates recommended
|
1267
|
+
# Generates recommended data quality rules based on the results of a data
|
1268
|
+
# profiling scan.Use the recommendations to build rules for a data quality scan.
|
1266
1269
|
# @param [String] name
|
1267
|
-
# Required. The name
|
1268
|
-
# successful completed data profiling job
|
1269
|
-
# completed data profiling
|
1270
|
+
# Required. The name must be one of the following: The name of a data scan with
|
1271
|
+
# at least one successful, completed data profiling job The name of a successful,
|
1272
|
+
# completed data profiling job (a data scan job where the job type is data
|
1273
|
+
# profiling)
|
1270
1274
|
# @param [Google::Apis::DataplexV1::GoogleCloudDataplexV1GenerateDataQualityRulesRequest] google_cloud_dataplex_v1_generate_data_quality_rules_request_object
|
1271
1275
|
# @param [String] fields
|
1272
1276
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataplex_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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: 2024-06-
|
11
|
+
date: 2024-06-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.58.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: []
|