Skip to content

Commit 8ffa3d0

Browse files
yoshi-automationsofisl
authored andcommitted
feat(vault): update the API
#### vault:v1 The following keys were added: - schemas.Matter.properties.matterRegion.description - schemas.Matter.properties.matterRegion.enum - schemas.Matter.properties.matterRegion.enumDescriptions - schemas.Matter.properties.matterRegion.type
1 parent a9c6028 commit 8ffa3d0

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

discovery/vault-v1.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@
12031203
}
12041204
}
12051205
},
1206-
"revision": "20240617",
1206+
"revision": "20240806",
12071207
"rootUrl": "https://vault.googleapis.com/",
12081208
"schemas": {
12091209
"AccountCount": {
@@ -2297,6 +2297,22 @@
22972297
},
22982298
"type": "array"
22992299
},
2300+
"matterRegion": {
2301+
"description": "Optional. The requested data region for the matter.",
2302+
"enum": [
2303+
"MATTER_REGION_UNSPECIFIED",
2304+
"ANY",
2305+
"US",
2306+
"EUROPE"
2307+
],
2308+
"enumDescriptions": [
2309+
"The region is unspecified. Defaults to ANY.",
2310+
"Any region.",
2311+
"United States region.",
2312+
"Europe region."
2313+
],
2314+
"type": "string"
2315+
},
23002316
"name": {
23012317
"description": "The name of the matter.",
23022318
"type": "string"

src/apis/vault/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -857,6 +857,10 @@ export namespace vault_v1 {
857857
* Lists the users and their permission for the matter. Currently there is no programmer defined limit on the number of permissions a matter can have.
858858
*/
859859
matterPermissions?: Schema$MatterPermission[];
860+
/**
861+
* Optional. The requested data region for the matter.
862+
*/
863+
matterRegion?: string | null;
860864
/**
861865
* The name of the matter.
862866
*/

0 commit comments

Comments
 (0)