instance.proto 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. // Copyright 2022 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. syntax = "proto3";
  15. package google.cloud.baremetalsolution.v2;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/cloud/baremetalsolution/v2/lun.proto";
  19. import "google/cloud/baremetalsolution/v2/network.proto";
  20. import "google/protobuf/field_mask.proto";
  21. import "google/protobuf/timestamp.proto";
  22. option csharp_namespace = "Google.Cloud.BareMetalSolution.V2";
  23. option go_package = "google.golang.org/genproto/googleapis/cloud/baremetalsolution/v2;baremetalsolution";
  24. option java_multiple_files = true;
  25. option java_outer_classname = "InstanceProto";
  26. option java_package = "com.google.cloud.baremetalsolution.v2";
  27. option php_namespace = "Google\\Cloud\\BareMetalSolution\\V2";
  28. option ruby_package = "Google::Cloud::BareMetalSolution::V2";
  29. // A server.
  30. message Instance {
  31. option (google.api.resource) = {
  32. type: "baremetalsolution.googleapis.com/Instance"
  33. pattern: "projects/{project}/locations/{location}/instances/{instance}"
  34. };
  35. // The possible states for this server.
  36. enum State {
  37. // The server is in an unknown state.
  38. STATE_UNSPECIFIED = 0;
  39. // The server is being provisioned.
  40. PROVISIONING = 1;
  41. // The server is running.
  42. RUNNING = 2;
  43. // The server has been deleted.
  44. DELETED = 3;
  45. }
  46. // Output only. The resource name of this `Instance`.
  47. // Resource names are schemeless URIs that follow the conventions in
  48. // https://cloud.google.com/apis/design/resource_names.
  49. // Format:
  50. // `projects/{project}/locations/{location}/instances/{instance}`
  51. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  52. // An identifier for the `Instance`, generated by the backend.
  53. string id = 11;
  54. // Output only. Create a time stamp.
  55. google.protobuf.Timestamp create_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  56. // Output only. Update a time stamp.
  57. google.protobuf.Timestamp update_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  58. // The server type.
  59. // [Available server
  60. // types](https://cloud.google.com/bare-metal/docs/bms-planning#server_configurations)
  61. string machine_type = 4;
  62. // The state of the server.
  63. State state = 5;
  64. // True if you enable hyperthreading for the server, otherwise false.
  65. // The default value is false.
  66. bool hyperthreading_enabled = 6;
  67. // Labels as key value pairs.
  68. map<string, string> labels = 7;
  69. // List of LUNs associated with this server.
  70. repeated Lun luns = 8;
  71. // List of networks associated with this server.
  72. repeated Network networks = 9;
  73. // True if the interactive serial console feature is enabled for the instance,
  74. // false otherwise.
  75. // The default value is false.
  76. bool interactive_serial_console_enabled = 10;
  77. // The OS image currently installed on the server.
  78. string os_image = 12;
  79. // Immutable. Pod name.
  80. // Pod is an independent part of infrastructure.
  81. // Instance can be connected to the assets (networks, volumes) allocated
  82. // in the same pod only.
  83. string pod = 13 [(google.api.field_behavior) = IMMUTABLE];
  84. // Instance network template name. For eg, bondaa-bondaa, bondab-nic, etc.
  85. // Generally, the template name follows the syntax of
  86. // "bond<bond_mode>" or "nic".
  87. string network_template = 14 [(google.api.resource_reference) = {
  88. type: "baremetalsolution.googleapis.com/ServerNetworkTemplate"
  89. }];
  90. // List of logical interfaces for the instance. The number of logical
  91. // interfaces will be the same as number of hardware bond/nic on the chosen
  92. // network template. For the non-multivlan configurations (for eg, existing
  93. // servers) that use existing default network template (bondaa-bondaa), both
  94. // the Instance.networks field and the Instance.logical_interfaces fields will
  95. // be filled to ensure backward compatibility. For the others, only
  96. // Instance.logical_interfaces will be filled.
  97. repeated LogicalInterface logical_interfaces = 15;
  98. }
  99. // Message for requesting server information.
  100. message GetInstanceRequest {
  101. // Required. Name of the resource.
  102. string name = 1 [
  103. (google.api.field_behavior) = REQUIRED,
  104. (google.api.resource_reference) = {
  105. type: "baremetalsolution.googleapis.com/Instance"
  106. }
  107. ];
  108. }
  109. // Message for requesting the list of servers.
  110. message ListInstancesRequest {
  111. // Required. Parent value for ListInstancesRequest.
  112. string parent = 1 [
  113. (google.api.field_behavior) = REQUIRED,
  114. (google.api.resource_reference) = {
  115. type: "locations.googleapis.com/Location"
  116. }
  117. ];
  118. // Requested page size. Server may return fewer items than requested.
  119. // If unspecified, the server will pick an appropriate default.
  120. int32 page_size = 2;
  121. // A token identifying a page of results from the server.
  122. string page_token = 3;
  123. // List filter.
  124. string filter = 4;
  125. }
  126. // Response message for the list of servers.
  127. message ListInstancesResponse {
  128. // The list of servers.
  129. repeated Instance instances = 1;
  130. // A token identifying a page of results from the server.
  131. string next_page_token = 2;
  132. // Locations that could not be reached.
  133. repeated string unreachable = 3;
  134. }
  135. // Message requesting to updating a server.
  136. message UpdateInstanceRequest {
  137. // Required. The server to update.
  138. //
  139. // The `name` field is used to identify the instance to update.
  140. // Format: projects/{project}/locations/{location}/instances/{instance}
  141. Instance instance = 1 [(google.api.field_behavior) = REQUIRED];
  142. // The list of fields to update.
  143. // The currently supported fields are:
  144. // `labels`
  145. // `hyperthreading_enabled`
  146. // `os_image`
  147. google.protobuf.FieldMask update_mask = 2;
  148. }
  149. // Message requesting to reset a server.
  150. message ResetInstanceRequest {
  151. // Required. Name of the resource.
  152. string name = 1 [
  153. (google.api.field_behavior) = REQUIRED,
  154. (google.api.resource_reference) = {
  155. type: "baremetalsolution.googleapis.com/Instance"
  156. }
  157. ];
  158. }
  159. // Message requesting to start a server.
  160. message StartInstanceRequest {
  161. // Required. Name of the resource.
  162. string name = 1 [
  163. (google.api.field_behavior) = REQUIRED,
  164. (google.api.resource_reference) = {
  165. type: "baremetalsolution.googleapis.com/Instance"
  166. }
  167. ];
  168. }
  169. // Message requesting to stop a server.
  170. message StopInstanceRequest {
  171. // Required. Name of the resource.
  172. string name = 1 [
  173. (google.api.field_behavior) = REQUIRED,
  174. (google.api.resource_reference) = {
  175. type: "baremetalsolution.googleapis.com/Instance"
  176. }
  177. ];
  178. }
  179. // Message for detach specific LUN from an Instance.
  180. message DetachLunRequest {
  181. // Required. Name of the instance.
  182. string instance = 1 [
  183. (google.api.field_behavior) = REQUIRED,
  184. (google.api.resource_reference) = {
  185. type: "baremetalsolution.googleapis.com/Instance"
  186. }
  187. ];
  188. // Required. Name of the Lun to detach.
  189. string lun = 2 [
  190. (google.api.field_behavior) = REQUIRED,
  191. (google.api.resource_reference) = {
  192. type: "baremetalsolution.googleapis.com/Lun"
  193. }
  194. ];
  195. }
  196. // Network template.
  197. message ServerNetworkTemplate {
  198. option (google.api.resource) = {
  199. type: "baremetalsolution.googleapis.com/ServerNetworkTemplate"
  200. pattern: "projects/{project}/locations/{location}/serverNetworkTemplate/{server_network_template}"
  201. };
  202. // Logical interface.
  203. message LogicalInterface {
  204. // Interface type.
  205. enum InterfaceType {
  206. // Unspecified value.
  207. INTERFACE_TYPE_UNSPECIFIED = 0;
  208. // Bond interface type.
  209. BOND = 1;
  210. // NIC interface type.
  211. NIC = 2;
  212. }
  213. // Interface name.
  214. // This is not a globally unique identifier.
  215. // Name is unique only inside the ServerNetworkTemplate. This is of syntax
  216. // <bond><interface_type_index><bond_mode> or <nic><interface_type_index>
  217. // and forms part of the network template name.
  218. string name = 1;
  219. // Interface type.
  220. InterfaceType type = 2;
  221. // If true, interface must have network connected.
  222. bool required = 3;
  223. }
  224. // Output only. Template's unique name. The full resource name follows the pattern:
  225. // `projects/{project}/locations/{location}/serverNetworkTemplate/{server_network_template}`
  226. // Generally, the {server_network_template} follows the syntax of
  227. // "bond<interface_type_index><bond_mode>" or "nic<interface_type_index>".
  228. string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  229. // Instance types this template is applicable to.
  230. repeated string applicable_instance_types = 2;
  231. // Logical interfaces.
  232. repeated LogicalInterface logical_interfaces = 3;
  233. }
  234. // Response message from starting a server.
  235. message StartInstanceResponse {}
  236. // Response message from stopping a server.
  237. message StopInstanceResponse {}