123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- syntax = "proto3";
- package google.cloud.baremetalsolution.v2;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- option csharp_namespace = "Google.Cloud.BareMetalSolution.V2";
- option go_package = "google.golang.org/genproto/googleapis/cloud/baremetalsolution/v2;baremetalsolution";
- option java_multiple_files = true;
- option java_outer_classname = "LunProto";
- option java_package = "com.google.cloud.baremetalsolution.v2";
- option php_namespace = "Google\\Cloud\\BareMetalSolution\\V2";
- option ruby_package = "Google::Cloud::BareMetalSolution::V2";
- message Lun {
- option (google.api.resource) = {
- type: "baremetalsolution.googleapis.com/Lun"
- pattern: "projects/{project}/locations/{location}/volumes/{volume}/luns/{lun}"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- CREATING = 1;
-
- UPDATING = 2;
-
- READY = 3;
-
- DELETING = 4;
- }
-
- enum MultiprotocolType {
-
- MULTIPROTOCOL_TYPE_UNSPECIFIED = 0;
-
- LINUX = 1;
- }
-
- enum StorageType {
-
- STORAGE_TYPE_UNSPECIFIED = 0;
-
- SSD = 1;
-
- HDD = 2;
- }
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- string id = 10;
-
- State state = 2;
-
- int64 size_gb = 3;
-
-
- MultiprotocolType multiprotocol_type = 4;
-
- string storage_volume = 5 [(google.api.resource_reference) = {
- type: "baremetalsolution.googleapis.com/Volume"
- }];
-
- bool shareable = 6;
-
- bool boot_lun = 7;
-
- StorageType storage_type = 8;
-
- string wwid = 9;
- }
- message GetLunRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "baremetalsolution.googleapis.com/Lun"
- }
- ];
- }
- message ListLunsRequest {
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "baremetalsolution.googleapis.com/Volume"
- }
- ];
-
-
- int32 page_size = 2;
-
- string page_token = 3;
- }
- message ListLunsResponse {
-
- repeated Lun luns = 1;
-
- string next_page_token = 2;
-
- repeated string unreachable = 3;
- }
|