1414
1515// Generated by the disco-to-proto3-converter. DO NOT EDIT!
1616// Source Discovery file: compute.v1beta.json
17- // Source file revision: 20250626
17+ // Source file revision: 20250708
1818// API name: compute
1919// API version: v1beta
2020
@@ -12262,6 +12262,22 @@ message GetRegionUrlMapRequest {
1226212262
1226312263// A request message for ReservationBlocks.Get. See the method description for details.
1226412264message GetReservationBlockRequest {
12265+ // View of the Block.
12266+ enum View {
12267+ // A value indicating that the enum field is not set.
12268+ UNDEFINED_VIEW = 0;
12269+
12270+ // This view includes basic information about the reservation block
12271+ BASIC = 62970894;
12272+
12273+ // The default / unset value. The API will default to the BASIC view.
12274+ BLOCK_VIEW_UNSPECIFIED = 275070479;
12275+
12276+ // Includes detailed topology view.
12277+ FULL = 2169487;
12278+
12279+ }
12280+
1226512281 // Project ID for this request.
1226612282 string project = 227560217 [(google.api.field_behavior) = REQUIRED];
1226712283
@@ -12271,6 +12287,10 @@ message GetReservationBlockRequest {
1227112287 // The name of the reservation block. Name should conform to RFC1035 or be a resource ID.
1227212288 string reservation_block = 532832858 [(google.api.field_behavior) = REQUIRED];
1227312289
12290+ // View of the Block.
12291+ // Check the View enum for the list of possible values.
12292+ optional string view = 3619493;
12293+
1227412294 // Name of the zone for this request. Zone name should conform to RFC1035.
1227512295 string zone = 3744684 [(google.api.field_behavior) = REQUIRED];
1227612296
@@ -31895,6 +31915,32 @@ message ReservationBlockPhysicalTopology {
3189531915 // The cluster name of the reservation block.
3189631916 optional string cluster = 335221242;
3189731917
31918+ // The detailed instances information for a given Block
31919+ repeated ReservationBlockPhysicalTopologyInstance instances = 29097598;
31920+
31921+ }
31922+
31923+ // The instances information for a given Block
31924+ message ReservationBlockPhysicalTopologyInstance {
31925+ // The InstanceId of the instance
31926+ optional uint64 instance_id = 45488389;
31927+
31928+ // The PhysicalHostTopology of instances within a Block resource.
31929+ optional ReservationBlockPhysicalTopologyInstancePhysicalHostTopology physical_host_topology = 390842814;
31930+
31931+ // Project where the instance lives
31932+ optional uint64 project_id = 177513473;
31933+
31934+ }
31935+
31936+ // The PhysicalHostTopology of the instance within a Block resource.
31937+ message ReservationBlockPhysicalTopologyInstancePhysicalHostTopology {
31938+ // Host hash for a given instance
31939+ optional string host = 3208616;
31940+
31941+ // Sub block hash for a given instance
31942+ optional string sub_block = 478033358;
31943+
3189831944}
3189931945
3190031946//
0 commit comments