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 89c2a7d

Browse files
committedNov 1, 2022
feat(dataplex): update the api
#### dataplex:v1 The following keys were added: - schemas.GoogleCloudDataplexV1DataScanEvent (Total Keys: 27)
1 parent 0005b66 commit 89c2a7d

File tree

1 file changed

+137
-1
lines changed

1 file changed

+137
-1
lines changed
 

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

+137-1
Original file line numberDiff line numberDiff line change
@@ -2764,7 +2764,7 @@
27642764
}
27652765
}
27662766
},
2767-
"revision": "20221015",
2767+
"revision": "20221021",
27682768
"rootUrl": "https://dataplex.googleapis.com/",
27692769
"schemas": {
27702770
"Empty": {
@@ -3428,6 +3428,142 @@
34283428
},
34293429
"type": "object"
34303430
},
3431+
"GoogleCloudDataplexV1DataScanEvent": {
3432+
"description": "These messages contain information about the execution of a datascan. The monitored resource is 'DataScan'",
3433+
"id": "GoogleCloudDataplexV1DataScanEvent",
3434+
"properties": {
3435+
"dataProfile": {
3436+
"$ref": "GoogleCloudDataplexV1DataScanEventDataProfileResult",
3437+
"description": "Data profile result for data profile type data scan."
3438+
},
3439+
"dataQuality": {
3440+
"$ref": "GoogleCloudDataplexV1DataScanEventDataQualityResult",
3441+
"description": "Data quality result for data quality type data scan."
3442+
},
3443+
"dataSource": {
3444+
"description": "The data source of the data scan",
3445+
"type": "string"
3446+
},
3447+
"endTime": {
3448+
"description": "The time when the data scan job finished.",
3449+
"format": "google-datetime",
3450+
"type": "string"
3451+
},
3452+
"jobId": {
3453+
"description": "The identifier of the specific data scan job this log entry is for.",
3454+
"type": "string"
3455+
},
3456+
"message": {
3457+
"description": "The message describing the data scan job event.",
3458+
"type": "string"
3459+
},
3460+
"scope": {
3461+
"description": "The scope of the data scan (e.g. full, incremental).",
3462+
"enum": [
3463+
"SCOPE_UNSPECIFIED",
3464+
"FULL",
3465+
"INCREMENTAL"
3466+
],
3467+
"enumDescriptions": [
3468+
"An unspecified scope type.",
3469+
"Data scan runs on all of the data.",
3470+
"Data scan runs on incremental data."
3471+
],
3472+
"type": "string"
3473+
},
3474+
"specVersion": {
3475+
"description": "A version identifier of the spec which was used to execute this job.",
3476+
"type": "string"
3477+
},
3478+
"startTime": {
3479+
"description": "The time when the data scan job started to run.",
3480+
"format": "google-datetime",
3481+
"type": "string"
3482+
},
3483+
"state": {
3484+
"description": "The status of the data scan job.",
3485+
"enum": [
3486+
"STATE_UNSPECIFIED",
3487+
"STARTED",
3488+
"SUCCEEDED",
3489+
"FAILED",
3490+
"CANCELLED"
3491+
],
3492+
"enumDescriptions": [
3493+
"Unspecified job state.",
3494+
"Data scan started.",
3495+
"Data scan successfully completed.",
3496+
"Data scan was unsuccessful.",
3497+
"Data scan was cancelled."
3498+
],
3499+
"type": "string"
3500+
},
3501+
"trigger": {
3502+
"description": "The trigger type of the data scan job.",
3503+
"enum": [
3504+
"TRIGGER_UNSPECIFIED",
3505+
"ON_DEMAND",
3506+
"SCHEDULE"
3507+
],
3508+
"enumDescriptions": [
3509+
"An unspecified trigger type.",
3510+
"Data scan triggers on demand.",
3511+
"Data scan triggers as per schedule."
3512+
],
3513+
"type": "string"
3514+
},
3515+
"type": {
3516+
"description": "The type of the data scan.",
3517+
"enum": [
3518+
"SCAN_TYPE_UNSPECIFIED",
3519+
"DATA_PROFILE",
3520+
"DATA_QUALITY"
3521+
],
3522+
"enumDescriptions": [
3523+
"An unspecified data scan type.",
3524+
"Data scan for data profile.",
3525+
"Data scan for data quality."
3526+
],
3527+
"type": "string"
3528+
}
3529+
},
3530+
"type": "object"
3531+
},
3532+
"GoogleCloudDataplexV1DataScanEventDataProfileResult": {
3533+
"description": "Data profile result for data scan job.",
3534+
"id": "GoogleCloudDataplexV1DataScanEventDataProfileResult",
3535+
"properties": {
3536+
"rowCount": {
3537+
"description": "The count of rows processed in the data scan job.",
3538+
"format": "int64",
3539+
"type": "string"
3540+
}
3541+
},
3542+
"type": "object"
3543+
},
3544+
"GoogleCloudDataplexV1DataScanEventDataQualityResult": {
3545+
"description": "Data quality result for data scan job.",
3546+
"id": "GoogleCloudDataplexV1DataScanEventDataQualityResult",
3547+
"properties": {
3548+
"dimensionPassed": {
3549+
"additionalProperties": {
3550+
"type": "boolean"
3551+
},
3552+
"description": "The result of each dimension for data quality result. The key of the map is the name of the dimension. The value is the bool value depicting whether the dimension result was pass or not.",
3553+
"type": "object"
3554+
},
3555+
"passed": {
3556+
"description": "Whether the data quality result was pass or not.",
3557+
"type": "boolean"
3558+
},
3559+
"rowCount": {
3560+
"description": "The count of rows processed in the data scan job.",
3561+
"format": "int64",
3562+
"type": "string"
3563+
}
3564+
},
3565+
"type": "object"
3566+
},
34313567
"GoogleCloudDataplexV1DiscoveryEvent": {
34323568
"description": "The payload associated with Discovery data processing.",
34333569
"id": "GoogleCloudDataplexV1DiscoveryEvent",

0 commit comments

Comments
 (0)
Please sign in to comment.