Update the generated.go file with the new option

This commit is contained in:
Ankita Kejriwal 2022-11-15 11:57:35 -08:00
parent ca8375c8ec
commit 08c9ee7198
1 changed files with 5 additions and 0 deletions

View File

@ -497,6 +497,11 @@ func (o TransactionOptions) SetRawAccess() error {
return o.setOpt(303, nil)
}
// Allows this transaction to bypass storage quota enforcement. Should only be used for transactions that directly or indirectly decrease the size of the tenant group's data.
func (o TransactionOptions) SetBypassStorageQuota() error {
return o.setOpt(304, nil)
}
// Not yet implemented.
func (o TransactionOptions) SetDebugRetryLogging(param string) error {
return o.setOpt(401, []byte(param))