@maxim_mazurok/gapi.client.dataplex-v1 0.0.20230913 → 0.0.20231007
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.
- package/index.d.ts +28 -1
- package/package.json +1 -1
- package/tests.ts +7 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dataplex.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231007
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -644,7 +644,15 @@ declare namespace gapi.client {
|
|
|
644
644
|
fieldNames?:
|
|
645
645
|
string[];
|
|
646
646
|
}
|
|
647
|
+
interface GoogleCloudDataplexV1DataQualityDimension {
|
|
648
|
+
/** The dimension name a rule belongs to. Supported dimensions are "COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS", "INTEGRITY" */
|
|
649
|
+
name?:
|
|
650
|
+
string;
|
|
651
|
+
}
|
|
647
652
|
interface GoogleCloudDataplexV1DataQualityDimensionResult {
|
|
653
|
+
/** Output only. The dimension config specified in the DataQualitySpec, as is. */
|
|
654
|
+
dimension?:
|
|
655
|
+
GoogleCloudDataplexV1DataQualityDimension;
|
|
648
656
|
/** Whether the dimension passed or failed. */
|
|
649
657
|
passed?:
|
|
650
658
|
boolean;
|
|
@@ -1398,6 +1406,25 @@ declare namespace gapi.client {
|
|
|
1398
1406
|
active?:
|
|
1399
1407
|
boolean;
|
|
1400
1408
|
}
|
|
1409
|
+
interface GoogleCloudDataplexV1GovernanceEvent {
|
|
1410
|
+
/** Entity resource information if the log event is associated with a specific entity. */
|
|
1411
|
+
entity?:
|
|
1412
|
+
GoogleCloudDataplexV1GovernanceEventEntity;
|
|
1413
|
+
/** The type of the event. */
|
|
1414
|
+
eventType?:
|
|
1415
|
+
string;
|
|
1416
|
+
/** The log message. */
|
|
1417
|
+
message?:
|
|
1418
|
+
string;
|
|
1419
|
+
}
|
|
1420
|
+
interface GoogleCloudDataplexV1GovernanceEventEntity {
|
|
1421
|
+
/** The Entity resource the log event is associated with. Format: projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id} */
|
|
1422
|
+
entity?:
|
|
1423
|
+
string;
|
|
1424
|
+
/** Type of entity. */
|
|
1425
|
+
entityType?:
|
|
1426
|
+
string;
|
|
1427
|
+
}
|
|
1401
1428
|
interface GoogleCloudDataplexV1Job {
|
|
1402
1429
|
/** Output only. The time when the job ended. */
|
|
1403
1430
|
endTime?:
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20231007
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -313,6 +313,9 @@ gapi.load('client', async () => {
|
|
|
313
313
|
dataQualityResult: {
|
|
314
314
|
dimensions: [
|
|
315
315
|
{
|
|
316
|
+
dimension: {
|
|
317
|
+
name: "Test string",
|
|
318
|
+
},
|
|
316
319
|
passed: true,
|
|
317
320
|
}
|
|
318
321
|
],
|
|
@@ -570,6 +573,9 @@ gapi.load('client', async () => {
|
|
|
570
573
|
dataQualityResult: {
|
|
571
574
|
dimensions: [
|
|
572
575
|
{
|
|
576
|
+
dimension: {
|
|
577
|
+
name: "Test string",
|
|
578
|
+
},
|
|
573
579
|
passed: true,
|
|
574
580
|
}
|
|
575
581
|
],
|