Skip to content

Commit

Permalink
feat(lifesciences): update the API
Browse files Browse the repository at this point in the history
#### lifesciences:v2beta
The following keys were added:
- schemas.NFSMount.description
- schemas.NFSMount.id
- schemas.NFSMount.properties.target.description
- schemas.NFSMount.properties.target.type
- schemas.NFSMount.type
- schemas.Volume.properties.nfsMount.$ref
- schemas.Volume.properties.nfsMount.description
  • Loading branch information
yoshi-automation authored and bcoe committed Nov 17, 2020
1 parent 53dde6a commit 2ababff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
17 changes: 16 additions & 1 deletion discovery/lifesciences-v2beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
}
}
},
"revision": "20201001",
"revision": "20201105",
"rootUrl": "https://lifesciences.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -787,6 +787,17 @@
},
"type": "object"
},
"NFSMount": {
"description": "Configuration for an `NFSMount` to be attached to the VM.",
"id": "NFSMount",
"properties": {
"target": {
"description": "A target NFS mount. The target must be specified as `address:/mount\".",
"type": "string"
}
},
"type": "object"
},
"Network": {
"description": "VM networking options.",
"id": "Network",
Expand Down Expand Up @@ -1126,6 +1137,10 @@
"$ref": "ExistingDisk",
"description": "Configuration for a existing disk."
},
"nfsMount": {
"$ref": "NFSMount",
"description": "Configuration for an NFS mount."
},
"persistentDisk": {
"$ref": "PersistentDisk",
"description": "Configuration for a persistent disk."
Expand Down
13 changes: 13 additions & 0 deletions src/apis/lifesciences/v2beta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,15 @@ export namespace lifesciences_v2beta {
*/
usePrivateAddress?: boolean | null;
}
/**
* Configuration for an `NFSMount` to be attached to the VM.
*/
export interface Schema$NFSMount {
/**
* A target NFS mount. The target must be specified as `address:/mount".
*/
target?: string | null;
}
/**
* This resource represents a long-running operation that is the result of a network API call.
*/
Expand Down Expand Up @@ -727,6 +736,10 @@ export namespace lifesciences_v2beta {
* Configuration for a existing disk.
*/
existingDisk?: Schema$ExistingDisk;
/**
* Configuration for an NFS mount.
*/
nfsMount?: Schema$NFSMount;
/**
* Configuration for a persistent disk.
*/
Expand Down

0 comments on commit 2ababff

Please sign in to comment.