|
4269 | 4269 | }
|
4270 | 4270 | }
|
4271 | 4271 | },
|
4272 |
| - "revision": "20230626", |
| 4272 | + "revision": "20230628", |
4273 | 4273 | "rootUrl": "https://dataplex.googleapis.com/",
|
4274 | 4274 | "schemas": {
|
4275 | 4275 | "Empty": {
|
|
5629 | 5629 | "properties": {},
|
5630 | 5630 | "type": "object"
|
5631 | 5631 | },
|
| 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 | + }, |
5632 | 5733 | "GoogleCloudDataplexV1DataQualitySpec": {
|
5633 | 5734 | "description": "DataQualityScan related setting.",
|
5634 | 5735 | "id": "GoogleCloudDataplexV1DataQualitySpec",
|
|
6472 | 6573 | "type": "object"
|
6473 | 6574 | },
|
6474 | 6575 | "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.", |
6476 | 6577 | "id": "GoogleCloudDataplexV1Environment",
|
6477 | 6578 | "properties": {
|
6478 | 6579 | "createTime": {
|
|
0 commit comments