Skip to content

Commit bd72e8b

Browse files
feat(workloadmanager): update the api
#### workloadmanager:v1 The following keys were added: - schemas.BigQueryDestination (Total Keys: 4) - schemas.Evaluation.properties.bigQueryDestination.$ref (Total Keys: 1)
1 parent 6ba411f commit bd72e8b

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

docs/dyn/workloadmanager_v1.projects.locations.evaluations.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ <h3>Method Details</h3>
110110
The object takes the form of:
111111

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

197201
{ # LINT.IfChange Message describing Evaluation object
202+
&quot;bigQueryDestination&quot;: { # Message describing big query destination # Optional. BigQuery destination
203+
&quot;createNewResultsTable&quot;: True or False, # Optional. determine if results will be saved in a new table
204+
&quot;destinationDataset&quot;: &quot;A String&quot;, # Optional. destination dataset to save evaluation results
205+
},
198206
&quot;createTime&quot;: &quot;A String&quot;, # Output only. [Output only] Create time stamp
199207
&quot;customRulesBucket&quot;: &quot;A String&quot;, # The Cloud Storage bucket name for custom rules.
200208
&quot;description&quot;: &quot;A String&quot;, # Description of the Evaluation
@@ -256,6 +264,10 @@ <h3>Method Details</h3>
256264
{ # Message for response to listing Evaluations
257265
&quot;evaluations&quot;: [ # The list of Evaluation
258266
{ # LINT.IfChange Message describing Evaluation object
267+
&quot;bigQueryDestination&quot;: { # Message describing big query destination # Optional. BigQuery destination
268+
&quot;createNewResultsTable&quot;: True or False, # Optional. determine if results will be saved in a new table
269+
&quot;destinationDataset&quot;: &quot;A String&quot;, # Optional. destination dataset to save evaluation results
270+
},
259271
&quot;createTime&quot;: &quot;A String&quot;, # Output only. [Output only] Create time stamp
260272
&quot;customRulesBucket&quot;: &quot;A String&quot;, # The Cloud Storage bucket name for custom rules.
261273
&quot;description&quot;: &quot;A String&quot;, # Description of the Evaluation

googleapiclient/discovery_cache/documents/workloadmanager.v1.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,9 +707,24 @@
707707
}
708708
}
709709
},
710-
"revision": "20231211",
710+
"revision": "20240103",
711711
"rootUrl": "https://workloadmanager.googleapis.com/",
712712
"schemas": {
713+
"BigQueryDestination": {
714+
"description": "Message describing big query destination",
715+
"id": "BigQueryDestination",
716+
"properties": {
717+
"createNewResultsTable": {
718+
"description": "Optional. determine if results will be saved in a new table",
719+
"type": "boolean"
720+
},
721+
"destinationDataset": {
722+
"description": "Optional. destination dataset to save evaluation results",
723+
"type": "string"
724+
}
725+
},
726+
"type": "object"
727+
},
713728
"CancelOperationRequest": {
714729
"description": "The request message for Operations.CancelOperation.",
715730
"id": "CancelOperationRequest",
@@ -726,6 +741,10 @@
726741
"description": "LINT.IfChange Message describing Evaluation object",
727742
"id": "Evaluation",
728743
"properties": {
744+
"bigQueryDestination": {
745+
"$ref": "BigQueryDestination",
746+
"description": "Optional. BigQuery destination"
747+
},
729748
"createTime": {
730749
"description": "Output only. [Output only] Create time stamp",
731750
"format": "google-datetime",

0 commit comments

Comments
 (0)