Skip to content

Commit 9ea2c56

Browse files
Google APIscopybara-github
authored andcommitted
feat: A new enum DeploymentType is added
feat: A new field `deployment_type` is added to message `.google.cloud.parallelstore.v1beta.Instance` PiperOrigin-RevId: 702831788
1 parent e865ba0 commit 9ea2c56

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

google/cloud/parallelstore/v1beta/parallelstore.proto

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
194207
message 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.

0 commit comments

Comments
 (0)