Skip to content

Commit

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

The following keys were added:
- schemas.BigQueryDestination (Total Keys: 4)
- schemas.Evaluation.properties.bigQueryDestination.$ref (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 16, 2024
1 parent 6ba411f commit bd72e8b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/dyn/workloadmanager_v1.projects.locations.evaluations.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ <h3>Method Details</h3>
The object takes the form of:

{ # LINT.IfChange Message describing Evaluation object
&quot;bigQueryDestination&quot;: { # Message describing big query destination # Optional. BigQuery destination
&quot;createNewResultsTable&quot;: True or False, # Optional. determine if results will be saved in a new table
&quot;destinationDataset&quot;: &quot;A String&quot;, # Optional. destination dataset to save evaluation results
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. [Output only] Create time stamp
&quot;customRulesBucket&quot;: &quot;A String&quot;, # The Cloud Storage bucket name for custom rules.
&quot;description&quot;: &quot;A String&quot;, # Description of the Evaluation
Expand Down Expand Up @@ -195,6 +199,10 @@ <h3>Method Details</h3>
An object of the form:

{ # LINT.IfChange Message describing Evaluation object
&quot;bigQueryDestination&quot;: { # Message describing big query destination # Optional. BigQuery destination
&quot;createNewResultsTable&quot;: True or False, # Optional. determine if results will be saved in a new table
&quot;destinationDataset&quot;: &quot;A String&quot;, # Optional. destination dataset to save evaluation results
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. [Output only] Create time stamp
&quot;customRulesBucket&quot;: &quot;A String&quot;, # The Cloud Storage bucket name for custom rules.
&quot;description&quot;: &quot;A String&quot;, # Description of the Evaluation
Expand Down Expand Up @@ -256,6 +264,10 @@ <h3>Method Details</h3>
{ # Message for response to listing Evaluations
&quot;evaluations&quot;: [ # The list of Evaluation
{ # LINT.IfChange Message describing Evaluation object
&quot;bigQueryDestination&quot;: { # Message describing big query destination # Optional. BigQuery destination
&quot;createNewResultsTable&quot;: True or False, # Optional. determine if results will be saved in a new table
&quot;destinationDataset&quot;: &quot;A String&quot;, # Optional. destination dataset to save evaluation results
},
&quot;createTime&quot;: &quot;A String&quot;, # Output only. [Output only] Create time stamp
&quot;customRulesBucket&quot;: &quot;A String&quot;, # The Cloud Storage bucket name for custom rules.
&quot;description&quot;: &quot;A String&quot;, # Description of the Evaluation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -707,9 +707,24 @@
}
}
},
"revision": "20231211",
"revision": "20240103",
"rootUrl": "https://workloadmanager.googleapis.com/",
"schemas": {
"BigQueryDestination": {
"description": "Message describing big query destination",
"id": "BigQueryDestination",
"properties": {
"createNewResultsTable": {
"description": "Optional. determine if results will be saved in a new table",
"type": "boolean"
},
"destinationDataset": {
"description": "Optional. destination dataset to save evaluation results",
"type": "string"
}
},
"type": "object"
},
"CancelOperationRequest": {
"description": "The request message for Operations.CancelOperation.",
"id": "CancelOperationRequest",
Expand All @@ -726,6 +741,10 @@
"description": "LINT.IfChange Message describing Evaluation object",
"id": "Evaluation",
"properties": {
"bigQueryDestination": {
"$ref": "BigQueryDestination",
"description": "Optional. BigQuery destination"
},
"createTime": {
"description": "Output only. [Output only] Create time stamp",
"format": "google-datetime",
Expand Down

0 comments on commit bd72e8b

Please sign in to comment.