File tree Expand file tree Collapse file tree
google/cloud/parallelstore/v1beta Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -190,6 +190,19 @@ enum DirectoryStripeLevel {
190190 DIRECTORY_STRIPE_LEVEL_MAX = 3 ;
191191}
192192
193+ // Represents the deployment type for the instance.
194+ enum DeploymentType {
195+ // Default Deployment Type
196+ // It is equivalent to SCRATCH
197+ DEPLOYMENT_TYPE_UNSPECIFIED = 0 ;
198+
199+ // Scratch
200+ SCRATCH = 1 ;
201+
202+ // Persistent
203+ PERSISTENT = 2 ;
204+ }
205+
193206// A Parallelstore instance.
194207message Instance {
195208 option (google.api.resource ) = {
@@ -307,6 +320,12 @@ message Instance {
307320 // number of files.
308321 DirectoryStripeLevel directory_stripe_level = 16
309322 [(google.api.field_behavior ) = OPTIONAL ];
323+
324+ // Optional. The deployment type of the instance. Allowed values are:
325+ //
326+ // * `SCRATCH`: the instance is a scratch instance.
327+ // * `PERSISTENT`: the instance is a persistent instance.
328+ DeploymentType deployment_type = 17 [(google.api.field_behavior ) = OPTIONAL ];
310329}
311330
312331// List instances request.
You can’t perform that action at this time.
0 commit comments