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.Rule.properties.tags (Total Keys: 2)
- schemas.ScannedResource.properties.type.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Jan 30, 2024
1 parent 5b097e7 commit 5632eea
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ <h3>Method Details</h3>
&quot;scannedResources&quot;: [ # All scanned resources in response
{ # Message of scanned resource
&quot;resource&quot;: &quot;A String&quot;, # resource name
&quot;type&quot;: &quot;A String&quot;, # resource type
},
],
}</pre>
Expand Down
3 changes: 3 additions & 0 deletions docs/dyn/workloadmanager_v1.projects.locations.rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ <h3>Method Details</h3>
&quot;revisionId&quot;: &quot;A String&quot;, # Output only. the version of the rule
&quot;secondaryCategory&quot;: &quot;A String&quot;, # the secondary category
&quot;severity&quot;: &quot;A String&quot;, # the severity of the rule
&quot;tags&quot;: [ # List of user-defined tags
&quot;A String&quot;,
],
&quot;uri&quot;: &quot;A String&quot;, # the docuement url for the rule
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@
}
}
},
"revision": "20240103",
"revision": "20240117",
"rootUrl": "https://workloadmanager.googleapis.com/",
"schemas": {
"BigQueryDestination": {
Expand Down Expand Up @@ -1329,6 +1329,13 @@
"description": "the severity of the rule",
"type": "string"
},
"tags": {
"description": "List of user-defined tags",
"items": {
"type": "string"
},
"type": "array"
},
"uri": {
"description": "the docuement url for the rule",
"type": "string"
Expand Down Expand Up @@ -1696,6 +1703,10 @@
"resource": {
"description": "resource name",
"type": "string"
},
"type": {
"description": "resource type",
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 5632eea

Please sign in to comment.