@maxim_mazurok/gapi.client.dataplex-v1 0.0.20230721 → 0.0.20230806
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 +16 -16
- package/package.json +2 -2
- package/tests.ts +1 -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: 20230806
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -632,7 +632,7 @@ declare namespace gapi.client {
|
|
|
632
632
|
GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport;
|
|
633
633
|
}
|
|
634
634
|
interface GoogleCloudDataplexV1DataProfileSpecPostScanActionsBigQueryExport {
|
|
635
|
-
/** Optional. The BigQuery table to export DataProfileScan results to. Format: projects/
|
|
635
|
+
/** Optional. The BigQuery table to export DataProfileScan results to. Format: //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID */
|
|
636
636
|
resultsTable?:
|
|
637
637
|
string;
|
|
638
638
|
}
|
|
@@ -756,7 +756,7 @@ declare namespace gapi.client {
|
|
|
756
756
|
boolean;
|
|
757
757
|
}
|
|
758
758
|
interface GoogleCloudDataplexV1DataQualityRuleRegexExpectation {
|
|
759
|
-
/** A regular expression the column value is expected to match. */
|
|
759
|
+
/** Optional. A regular expression the column value is expected to match. */
|
|
760
760
|
regex?:
|
|
761
761
|
string;
|
|
762
762
|
}
|
|
@@ -787,34 +787,34 @@ declare namespace gapi.client {
|
|
|
787
787
|
GoogleCloudDataplexV1DataQualityRule;
|
|
788
788
|
}
|
|
789
789
|
interface GoogleCloudDataplexV1DataQualityRuleRowConditionExpectation {
|
|
790
|
-
/** The SQL expression. */
|
|
790
|
+
/** Optional. The SQL expression. */
|
|
791
791
|
sqlExpression?:
|
|
792
792
|
string;
|
|
793
793
|
}
|
|
794
794
|
interface GoogleCloudDataplexV1DataQualityRuleSetExpectation {
|
|
795
|
-
/** Expected values for the column value. */
|
|
795
|
+
/** Optional. Expected values for the column value. */
|
|
796
796
|
values?:
|
|
797
797
|
string[];
|
|
798
798
|
}
|
|
799
799
|
interface GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectation {
|
|
800
|
-
/** The maximum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided. */
|
|
800
|
+
/** Optional. The maximum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided. */
|
|
801
801
|
maxValue?:
|
|
802
802
|
string;
|
|
803
|
-
/** The minimum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided. */
|
|
803
|
+
/** Optional. The minimum column statistic value allowed for a row to pass this validation.At least one of min_value and max_value need to be provided. */
|
|
804
804
|
minValue?:
|
|
805
805
|
string;
|
|
806
|
-
/** The aggregate metric to evaluate. */
|
|
806
|
+
/** Optional. The aggregate metric to evaluate. */
|
|
807
807
|
statistic?:
|
|
808
808
|
string;
|
|
809
|
-
/** Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false. */
|
|
809
|
+
/** Optional. Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false. */
|
|
810
810
|
strictMaxEnabled?:
|
|
811
811
|
boolean;
|
|
812
|
-
/** Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false. */
|
|
812
|
+
/** Optional. Whether column statistic needs to be strictly greater than ('>') the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false. */
|
|
813
813
|
strictMinEnabled?:
|
|
814
814
|
boolean;
|
|
815
815
|
}
|
|
816
816
|
interface GoogleCloudDataplexV1DataQualityRuleTableConditionExpectation {
|
|
817
|
-
/** The SQL expression. */
|
|
817
|
+
/** Optional. The SQL expression. */
|
|
818
818
|
sqlExpression?:
|
|
819
819
|
string;
|
|
820
820
|
}
|
|
@@ -869,7 +869,7 @@ declare namespace gapi.client {
|
|
|
869
869
|
*/
|
|
870
870
|
rowFilter?:
|
|
871
871
|
string;
|
|
872
|
-
/** The list of rules to evaluate against a data source. At least one rule is required. */
|
|
872
|
+
/** Required. The list of rules to evaluate against a data source. At least one rule is required. */
|
|
873
873
|
rules?:
|
|
874
874
|
GoogleCloudDataplexV1DataQualityRule[];
|
|
875
875
|
/**
|
|
@@ -885,7 +885,7 @@ declare namespace gapi.client {
|
|
|
885
885
|
GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport;
|
|
886
886
|
}
|
|
887
887
|
interface GoogleCloudDataplexV1DataQualitySpecPostScanActionsBigQueryExport {
|
|
888
|
-
/** Optional. The BigQuery table to export DataQualityScan results to. Format: projects/
|
|
888
|
+
/** Optional. The BigQuery table to export DataQualityScan results to. Format: //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID */
|
|
889
889
|
resultsTable?:
|
|
890
890
|
string;
|
|
891
891
|
}
|
|
@@ -2401,9 +2401,9 @@ declare namespace gapi.client {
|
|
|
2401
2401
|
name?:
|
|
2402
2402
|
string;
|
|
2403
2403
|
/**
|
|
2404
|
-
* The normal response of the operation
|
|
2405
|
-
*
|
|
2406
|
-
*
|
|
2404
|
+
* The normal, successful response of the operation. If the original method returns no data on success, such as Delete, the response is google.protobuf.Empty. If the original method is
|
|
2405
|
+
* standard Get/Create/Update, the response should be the resource. For other methods, the response should have the type XxxResponse, where Xxx is the original method name. For
|
|
2406
|
+
* example, if the original method name is TakeSnapshot(), the inferred response type is TakeSnapshotResponse.
|
|
2407
2407
|
*/
|
|
2408
2408
|
response?:
|
|
2409
2409
|
{ [P in string]: any };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxim_mazurok/gapi.client.dataplex-v1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20230806",
|
|
4
4
|
"description": "TypeScript typings for Cloud Dataplex API v1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -15,6 +15,6 @@
|
|
|
15
15
|
"types": "index.d.ts",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@types/gapi.client": "*",
|
|
18
|
-
"@types/gapi.client.discovery": "*"
|
|
18
|
+
"@types/gapi.client.discovery-v1": "*"
|
|
19
19
|
}
|
|
20
20
|
}
|
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: 20230806
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|