xref: /aosp_15_r20/external/googleapis/google/cloud/baremetalsolution/v2/common.proto (revision d5c09012810ac0c9f33fe448fb6da8260d444cc9)
1// Copyright 2023 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
16
17package google.cloud.baremetalsolution.v2;
18
19option csharp_namespace = "Google.Cloud.BareMetalSolution.V2";
20option go_package = "cloud.google.com/go/baremetalsolution/apiv2/baremetalsolutionpb;baremetalsolutionpb";
21option java_multiple_files = true;
22option java_outer_classname = "CommonProto";
23option java_package = "com.google.cloud.baremetalsolution.v2";
24option php_namespace = "Google\\Cloud\\BareMetalSolution\\V2";
25option ruby_package = "Google::Cloud::BareMetalSolution::V2";
26
27// Performance tier of the Volume.
28enum VolumePerformanceTier {
29  // Value is not specified.
30  VOLUME_PERFORMANCE_TIER_UNSPECIFIED = 0;
31
32  // Regular volumes, shared aggregates.
33  VOLUME_PERFORMANCE_TIER_SHARED = 1;
34
35  // Assigned aggregates.
36  VOLUME_PERFORMANCE_TIER_ASSIGNED = 2;
37
38  // High throughput aggregates.
39  VOLUME_PERFORMANCE_TIER_HT = 3;
40}
41
42// The possible values for a workload profile.
43enum WorkloadProfile {
44  // The workload profile is in an unknown state.
45  WORKLOAD_PROFILE_UNSPECIFIED = 0;
46
47  // The workload profile is generic.
48  WORKLOAD_PROFILE_GENERIC = 1;
49
50  // The workload profile is hana.
51  WORKLOAD_PROFILE_HANA = 2;
52}
53