Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4f67fe

Browse files
committedJul 11, 2023
feat(dataplex): update the api
#### dataplex:v1 The following keys were added: - schemas.GoogleCloudDataplexV1DataQualityScanRuleResult (Total Keys: 18)
1 parent c275ece commit a4f67fe

File tree

2 files changed

+107
-6
lines changed

2 files changed

+107
-6
lines changed
 

‎docs/dyn/dataplex_v1.projects.locations.lakes.environments.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ <h3>Method Details</h3>
124124
body: object, The request body.
125125
The object takes the form of:
126126

127-
{ # Environment represents a user-visible compute infrastructure for analytics within a lake. LINT.IfChange
127+
{ # Environment represents a user-visible compute infrastructure for analytics within a lake.
128128
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Environment creation time.
129129
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the environment.
130130
&quot;displayName&quot;: &quot;A String&quot;, # Optional. User friendly display name.
@@ -247,7 +247,7 @@ <h3>Method Details</h3>
247247
Returns:
248248
An object of the form:
249249

250-
{ # Environment represents a user-visible compute infrastructure for analytics within a lake. LINT.IfChange
250+
{ # Environment represents a user-visible compute infrastructure for analytics within a lake.
251251
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Environment creation time.
252252
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the environment.
253253
&quot;displayName&quot;: &quot;A String&quot;, # Optional. User friendly display name.
@@ -359,7 +359,7 @@ <h3>Method Details</h3>
359359

360360
{ # List environments response.
361361
&quot;environments&quot;: [ # Environments under the given parent lake.
362-
{ # Environment represents a user-visible compute infrastructure for analytics within a lake. LINT.IfChange
362+
{ # Environment represents a user-visible compute infrastructure for analytics within a lake.
363363
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Environment creation time.
364364
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the environment.
365365
&quot;displayName&quot;: &quot;A String&quot;, # Optional. User friendly display name.
@@ -429,7 +429,7 @@ <h3>Method Details</h3>
429429
body: object, The request body.
430430
The object takes the form of:
431431

432-
{ # Environment represents a user-visible compute infrastructure for analytics within a lake. LINT.IfChange
432+
{ # Environment represents a user-visible compute infrastructure for analytics within a lake.
433433
&quot;createTime&quot;: &quot;A String&quot;, # Output only. Environment creation time.
434434
&quot;description&quot;: &quot;A String&quot;, # Optional. Description of the environment.
435435
&quot;displayName&quot;: &quot;A String&quot;, # Optional. User friendly display name.

‎googleapiclient/discovery_cache/documents/dataplex.v1.json

+103-2
Original file line numberDiff line numberDiff line change
@@ -4269,7 +4269,7 @@
42694269
}
42704270
}
42714271
},
4272-
"revision": "20230626",
4272+
"revision": "20230628",
42734273
"rootUrl": "https://dataplex.googleapis.com/",
42744274
"schemas": {
42754275
"Empty": {
@@ -5629,6 +5629,107 @@
56295629
"properties": {},
56305630
"type": "object"
56315631
},
5632+
"GoogleCloudDataplexV1DataQualityScanRuleResult": {
5633+
"description": "Information about the result of a data quality rule for data quality scan. The monitored resource is 'DataScan'.",
5634+
"id": "GoogleCloudDataplexV1DataQualityScanRuleResult",
5635+
"properties": {
5636+
"column": {
5637+
"description": "The column which this rule is evaluated against.",
5638+
"type": "string"
5639+
},
5640+
"dataSource": {
5641+
"description": "The data source of the data scan (e.g. BigQuery table name).",
5642+
"type": "string"
5643+
},
5644+
"evaluatedRowCount": {
5645+
"description": "The number of rows evaluated against the data quality rule. This field is only valid for rules of PER_ROW evaluation type.",
5646+
"format": "int64",
5647+
"type": "string"
5648+
},
5649+
"evalutionType": {
5650+
"description": "The evaluation type of the data quality rule.",
5651+
"enum": [
5652+
"EVALUATION_TYPE_UNSPECIFIED",
5653+
"PER_ROW",
5654+
"AGGREGATE"
5655+
],
5656+
"enumDescriptions": [
5657+
"An unspecified evaluation type.",
5658+
"The rule evaluation is done at per row level.",
5659+
"The rule evaluation is done for an aggregate of rows."
5660+
],
5661+
"type": "string"
5662+
},
5663+
"jobId": {
5664+
"description": "Identifier of the specific data scan job this log entry is for.",
5665+
"type": "string"
5666+
},
5667+
"nullRowCount": {
5668+
"description": "The number of rows with null values in the specified column.",
5669+
"format": "int64",
5670+
"type": "string"
5671+
},
5672+
"passedRowCount": {
5673+
"description": "The number of rows which passed a rule evaluation. This field is only valid for rules of PER_ROW evaluation type.",
5674+
"format": "int64",
5675+
"type": "string"
5676+
},
5677+
"result": {
5678+
"description": "The result of the data quality rule.",
5679+
"enum": [
5680+
"RESULT_UNSPECIFIED",
5681+
"PASSED",
5682+
"FAILED"
5683+
],
5684+
"enumDescriptions": [
5685+
"An unspecified result.",
5686+
"The data quality rule passed.",
5687+
"The data quality rule failed."
5688+
],
5689+
"type": "string"
5690+
},
5691+
"ruleDimension": {
5692+
"description": "The dimension of the data quality rule.",
5693+
"type": "string"
5694+
},
5695+
"ruleName": {
5696+
"description": "The name of the data quality rule.",
5697+
"type": "string"
5698+
},
5699+
"ruleType": {
5700+
"description": "The type of the data quality rule.",
5701+
"enum": [
5702+
"RULE_TYPE_UNSPECIFIED",
5703+
"NON_NULL_EXPECTATION",
5704+
"RANGE_EXPECTATION",
5705+
"REGEX_EXPECTATION",
5706+
"ROW_CONDITION_EXPECTATION",
5707+
"SET_EXPECTATION",
5708+
"STATISTIC_RANGE_EXPECTATION",
5709+
"TABLE_CONDITION_EXPECTATION",
5710+
"UNIQUENESS_EXPECTATION"
5711+
],
5712+
"enumDescriptions": [
5713+
"An unspecified rule type.",
5714+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#nonnullexpectation.",
5715+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#rangeexpectation.",
5716+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#regexexpectation.",
5717+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#rowconditionexpectation.",
5718+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#setexpectation.",
5719+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#statisticrangeexpectation.",
5720+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#tableconditionexpectation.",
5721+
"Please see https://cloud.google.com/dataplex/docs/reference/rest/v1/DataQualityRule#uniquenessexpectation."
5722+
],
5723+
"type": "string"
5724+
},
5725+
"thresholdPercent": {
5726+
"description": "The passing threshold (0.0, 100.0) of the data quality rule.",
5727+
"format": "double",
5728+
"type": "number"
5729+
}
5730+
},
5731+
"type": "object"
5732+
},
56325733
"GoogleCloudDataplexV1DataQualitySpec": {
56335734
"description": "DataQualityScan related setting.",
56345735
"id": "GoogleCloudDataplexV1DataQualitySpec",
@@ -6472,7 +6573,7 @@
64726573
"type": "object"
64736574
},
64746575
"GoogleCloudDataplexV1Environment": {
6475-
"description": "Environment represents a user-visible compute infrastructure for analytics within a lake. LINT.IfChange",
6576+
"description": "Environment represents a user-visible compute infrastructure for analytics within a lake.",
64766577
"id": "GoogleCloudDataplexV1Environment",
64776578
"properties": {
64786579
"createTime": {

0 commit comments

Comments
 (0)
Please sign in to comment.