@maxim_mazurok/gapi.client.dataplex-v1 0.0.20230721 → 0.0.20230801
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 +11 -11
- package/package.json +1 -1
- 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: 20230801
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -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
|
/**
|
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: 20230801
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|