Skip to content

Commit

Permalink
feat(dataplex): update the api
Browse files Browse the repository at this point in the history
#### dataplex:v1

The following keys were added:
- resources.projects.resources.locations.resources.aspectTypes.methods.getIamPolicy (Total Keys: 14)
- resources.projects.resources.locations.resources.aspectTypes.methods.setIamPolicy (Total Keys: 12)
- resources.projects.resources.locations.resources.aspectTypes.methods.testIamPermissions (Total Keys: 12)
- resources.projects.resources.locations.resources.entryGroups.methods.getIamPolicy (Total Keys: 14)
- resources.projects.resources.locations.resources.entryGroups.methods.setIamPolicy (Total Keys: 12)
- resources.projects.resources.locations.resources.entryGroups.methods.testIamPermissions (Total Keys: 12)
- resources.projects.resources.locations.resources.entryTypes.methods.getIamPolicy (Total Keys: 14)
- resources.projects.resources.locations.resources.entryTypes.methods.setIamPolicy (Total Keys: 12)
- resources.projects.resources.locations.resources.entryTypes.methods.testIamPermissions (Total Keys: 12)
- schemas.GoogleCloudDataplexV1DataProfileSpec.properties.rowFilter.type (Total Keys: 1)
- schemas.GoogleCloudDataplexV1DataProfileSpec.properties.samplingPercent (Total Keys: 2)
- schemas.GoogleCloudDataplexV1DataQualitySpec.properties.rowFilter.type (Total Keys: 1)
- schemas.GoogleCloudDataplexV1DataQualitySpec.properties.samplingPercent (Total Keys: 2)
- schemas.GoogleCloudDataplexV1DataScanEvent.properties.dataProfileConfigs.$ref (Total Keys: 1)
- schemas.GoogleCloudDataplexV1DataScanEvent.properties.dataQualityConfigs.$ref (Total Keys: 1)
- schemas.GoogleCloudDataplexV1DataScanEventDataProfileAppliedConfigs (Total Keys: 5)
- schemas.GoogleCloudDataplexV1DataScanEventDataQualityAppliedConfigs (Total Keys: 5)
- schemas.GoogleCloudDataplexV1Job.properties.executionSpec (Total Keys: 2)
- schemas.GoogleCloudDataplexV1Job.properties.labels (Total Keys: 3)
- schemas.GoogleCloudDataplexV1Job.properties.trigger (Total Keys: 2)
- schemas.GoogleCloudDataplexV1RunTaskRequest.properties.args (Total Keys: 2)
- schemas.GoogleCloudDataplexV1RunTaskRequest.properties.labels (Total Keys: 2)
  • Loading branch information
yoshi-automation committed May 24, 2023
1 parent 9dd8562 commit 63d0c72
Show file tree
Hide file tree
Showing 9 changed files with 1,311 additions and 20 deletions.
258 changes: 258 additions & 0 deletions docs/dyn/dataplex_v1.projects.locations.aspectTypes.html

Large diffs are not rendered by default.

40 changes: 30 additions & 10 deletions docs/dyn/dataplex_v1.projects.locations.dataScans.html

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions docs/dyn/dataplex_v1.projects.locations.dataScans.jobs.html
Expand Up @@ -165,6 +165,8 @@ <h3>Method Details</h3>
},
},
&quot;dataProfileSpec&quot;: { # DataProfileScan related setting. # Output only. DataProfileScan related setting.
&quot;rowFilter&quot;: &quot;A String&quot;, # Optional. A filter applied to all rows in a single DataScan job. The filter needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL syntax. Example: col1 &gt;= 0 AND col2 &lt; 10
&quot;samplingPercent&quot;: 3.14, # Optional. The percentage of the records to be selected from the dataset for DataScan. Value can range between 0.0 and 100.0 with up to 3 significant decimal digits. Sampling is not applied if sampling_percent is not specified, 0 or 100.
},
&quot;dataQualityResult&quot;: { # The output of a DataQualityScan. # Output only. The result of the data quality scan.
&quot;dimensions&quot;: [ # A list of results at the dimension level.
Expand Down Expand Up @@ -208,7 +210,7 @@ <h3>Method Details</h3>
&quot;statisticRangeExpectation&quot;: { # Evaluates whether the column aggregate statistic lies between a specified range. # ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
&quot;maxValue&quot;: &quot;A String&quot;, # 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.
&quot;minValue&quot;: &quot;A String&quot;, # 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.
&quot;statistic&quot;: &quot;A String&quot;,
&quot;statistic&quot;: &quot;A String&quot;, # The aggregate metric to evaluate.
&quot;strictMaxEnabled&quot;: True or False, # Whether column statistic needs to be strictly lesser than (&#x27;&lt;&#x27;) the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false.
&quot;strictMinEnabled&quot;: True or False, # Whether column statistic needs to be strictly greater than (&#x27;&gt;&#x27;) the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false.
},
Expand All @@ -230,6 +232,7 @@ <h3>Method Details</h3>
},
},
&quot;dataQualitySpec&quot;: { # DataQualityScan related setting. # Output only. DataQualityScan related setting.
&quot;rowFilter&quot;: &quot;A String&quot;, # Optional. A filter applied to all rows in a single DataScan job. The filter needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL syntax. Example: col1 &gt;= 0 AND col2 &lt; 10
&quot;rules&quot;: [ # The list of rules to evaluate against a data source. At least one rule is required.
{ # A rule captures data quality intent about a data source.
&quot;column&quot;: &quot;A String&quot;, # Optional. The unnested column which this rule is evaluated against.
Expand Down Expand Up @@ -257,7 +260,7 @@ <h3>Method Details</h3>
&quot;statisticRangeExpectation&quot;: { # Evaluates whether the column aggregate statistic lies between a specified range. # ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
&quot;maxValue&quot;: &quot;A String&quot;, # 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.
&quot;minValue&quot;: &quot;A String&quot;, # 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.
&quot;statistic&quot;: &quot;A String&quot;,
&quot;statistic&quot;: &quot;A String&quot;, # The aggregate metric to evaluate.
&quot;strictMaxEnabled&quot;: True or False, # Whether column statistic needs to be strictly lesser than (&#x27;&lt;&#x27;) the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false.
&quot;strictMinEnabled&quot;: True or False, # Whether column statistic needs to be strictly greater than (&#x27;&gt;&#x27;) the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false.
},
Expand All @@ -269,6 +272,7 @@ <h3>Method Details</h3>
},
},
],
&quot;samplingPercent&quot;: 3.14, # Optional. The percentage of the records to be selected from the dataset for DataScan. Value can range between 0.0 and 100.0 with up to 3 significant decimal digits. Sampling is not applied if sampling_percent is not specified, 0 or 100.
},
&quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the DataScanJob ended.
&quot;message&quot;: &quot;A String&quot;, # Output only. Additional information about the current state.
Expand Down Expand Up @@ -352,6 +356,8 @@ <h3>Method Details</h3>
},
},
&quot;dataProfileSpec&quot;: { # DataProfileScan related setting. # Output only. DataProfileScan related setting.
&quot;rowFilter&quot;: &quot;A String&quot;, # Optional. A filter applied to all rows in a single DataScan job. The filter needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL syntax. Example: col1 &gt;= 0 AND col2 &lt; 10
&quot;samplingPercent&quot;: 3.14, # Optional. The percentage of the records to be selected from the dataset for DataScan. Value can range between 0.0 and 100.0 with up to 3 significant decimal digits. Sampling is not applied if sampling_percent is not specified, 0 or 100.
},
&quot;dataQualityResult&quot;: { # The output of a DataQualityScan. # Output only. The result of the data quality scan.
&quot;dimensions&quot;: [ # A list of results at the dimension level.
Expand Down Expand Up @@ -395,7 +401,7 @@ <h3>Method Details</h3>
&quot;statisticRangeExpectation&quot;: { # Evaluates whether the column aggregate statistic lies between a specified range. # ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
&quot;maxValue&quot;: &quot;A String&quot;, # 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.
&quot;minValue&quot;: &quot;A String&quot;, # 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.
&quot;statistic&quot;: &quot;A String&quot;,
&quot;statistic&quot;: &quot;A String&quot;, # The aggregate metric to evaluate.
&quot;strictMaxEnabled&quot;: True or False, # Whether column statistic needs to be strictly lesser than (&#x27;&lt;&#x27;) the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false.
&quot;strictMinEnabled&quot;: True or False, # Whether column statistic needs to be strictly greater than (&#x27;&gt;&#x27;) the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false.
},
Expand All @@ -417,6 +423,7 @@ <h3>Method Details</h3>
},
},
&quot;dataQualitySpec&quot;: { # DataQualityScan related setting. # Output only. DataQualityScan related setting.
&quot;rowFilter&quot;: &quot;A String&quot;, # Optional. A filter applied to all rows in a single DataScan job. The filter needs to be a valid SQL expression for a WHERE clause in BigQuery standard SQL syntax. Example: col1 &gt;= 0 AND col2 &lt; 10
&quot;rules&quot;: [ # The list of rules to evaluate against a data source. At least one rule is required.
{ # A rule captures data quality intent about a data source.
&quot;column&quot;: &quot;A String&quot;, # Optional. The unnested column which this rule is evaluated against.
Expand Down Expand Up @@ -444,7 +451,7 @@ <h3>Method Details</h3>
&quot;statisticRangeExpectation&quot;: { # Evaluates whether the column aggregate statistic lies between a specified range. # ColumnAggregate rule which evaluates whether the column aggregate statistic lies between a specified range.
&quot;maxValue&quot;: &quot;A String&quot;, # 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.
&quot;minValue&quot;: &quot;A String&quot;, # 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.
&quot;statistic&quot;: &quot;A String&quot;,
&quot;statistic&quot;: &quot;A String&quot;, # The aggregate metric to evaluate.
&quot;strictMaxEnabled&quot;: True or False, # Whether column statistic needs to be strictly lesser than (&#x27;&lt;&#x27;) the maximum, or if equality is allowed.Only relevant if a max_value has been defined. Default = false.
&quot;strictMinEnabled&quot;: True or False, # Whether column statistic needs to be strictly greater than (&#x27;&gt;&#x27;) the minimum, or if equality is allowed.Only relevant if a min_value has been defined. Default = false.
},
Expand All @@ -456,6 +463,7 @@ <h3>Method Details</h3>
},
},
],
&quot;samplingPercent&quot;: 3.14, # Optional. The percentage of the records to be selected from the dataset for DataScan. Value can range between 0.0 and 100.0 with up to 3 significant decimal digits. Sampling is not applied if sampling_percent is not specified, 0 or 100.
},
&quot;endTime&quot;: &quot;A String&quot;, # Output only. The time when the DataScanJob ended.
&quot;message&quot;: &quot;A String&quot;, # Output only. Additional information about the current state.
Expand Down

0 comments on commit 63d0c72

Please sign in to comment.