Skip to content

Commit 0c26f13

Browse files
feat: [google-cloud-compute] Update Compute Engine v1 API to revision 20250717 (#1074) (#14169)
- [ ] Regenerate this pull request now. Source-Link: googleapis/googleapis@6764f0e Source-Link: googleapis/googleapis-gen@6c2b3c1 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWNvbXB1dGUvLk93bEJvdC55YW1sIiwiaCI6IjZjMmIzYzFkNTM0YWI2MWIzYWQxMTkwMGU0ZmVhYTc5M2I1NTYyMjMifQ== --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent e35550f commit 0c26f13

File tree

10 files changed

+407
-3
lines changed

10 files changed

+407
-3
lines changed

packages/google-cloud-compute/google/cloud/compute/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@
339339
AllocationAggregateReservationReservedResourceInfoAccelerator,
340340
AllocationReservationSharingPolicy,
341341
AllocationResourceStatus,
342+
AllocationResourceStatusHealthInfo,
342343
AllocationResourceStatusSpecificSKUAllocation,
343344
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk,
344345
AllocationSpecificSKUAllocationReservedInstanceProperties,
@@ -1435,6 +1436,7 @@
14351436
ReservationAffinity,
14361437
ReservationAggregatedList,
14371438
ReservationBlock,
1439+
ReservationBlockHealthInfo,
14381440
ReservationBlockPhysicalTopology,
14391441
ReservationBlockPhysicalTopologyInstance,
14401442
ReservationBlockPhysicalTopologyInstancePhysicalHostTopology,
@@ -1446,6 +1448,7 @@
14461448
ReservationsResizeRequest,
14471449
ReservationsScopedList,
14481450
ReservationSubBlock,
1451+
ReservationSubBlockHealthInfo,
14491452
ReservationSubBlockPhysicalTopology,
14501453
ReservationSubBlocksGetResponse,
14511454
ReservationSubBlocksListResponse,
@@ -2085,6 +2088,7 @@
20852088
"AllocationAggregateReservationReservedResourceInfoAccelerator",
20862089
"AllocationReservationSharingPolicy",
20872090
"AllocationResourceStatus",
2091+
"AllocationResourceStatusHealthInfo",
20882092
"AllocationResourceStatusSpecificSKUAllocation",
20892093
"AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk",
20902094
"AllocationSpecificSKUAllocationReservedInstanceProperties",
@@ -3181,6 +3185,7 @@
31813185
"ReservationAffinity",
31823186
"ReservationAggregatedList",
31833187
"ReservationBlock",
3188+
"ReservationBlockHealthInfo",
31843189
"ReservationBlockPhysicalTopology",
31853190
"ReservationBlockPhysicalTopologyInstance",
31863191
"ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
@@ -3192,6 +3197,7 @@
31923197
"ReservationsResizeRequest",
31933198
"ReservationsScopedList",
31943199
"ReservationSubBlock",
3200+
"ReservationSubBlockHealthInfo",
31953201
"ReservationSubBlockPhysicalTopology",
31963202
"ReservationSubBlocksGetResponse",
31973203
"ReservationSubBlocksListResponse",

packages/google-cloud-compute/google/cloud/compute/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.33.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-compute/google/cloud/compute_v1/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@
213213
AllocationAggregateReservationReservedResourceInfoAccelerator,
214214
AllocationReservationSharingPolicy,
215215
AllocationResourceStatus,
216+
AllocationResourceStatusHealthInfo,
216217
AllocationResourceStatusSpecificSKUAllocation,
217218
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk,
218219
AllocationSpecificSKUAllocationReservedInstanceProperties,
@@ -1309,6 +1310,7 @@
13091310
ReservationAffinity,
13101311
ReservationAggregatedList,
13111312
ReservationBlock,
1313+
ReservationBlockHealthInfo,
13121314
ReservationBlockPhysicalTopology,
13131315
ReservationBlockPhysicalTopologyInstance,
13141316
ReservationBlockPhysicalTopologyInstancePhysicalHostTopology,
@@ -1320,6 +1322,7 @@
13201322
ReservationsResizeRequest,
13211323
ReservationsScopedList,
13221324
ReservationSubBlock,
1325+
ReservationSubBlockHealthInfo,
13231326
ReservationSubBlockPhysicalTopology,
13241327
ReservationSubBlocksGetResponse,
13251328
ReservationSubBlocksListResponse,
@@ -1859,6 +1862,7 @@
18591862
"AllocationAggregateReservationReservedResourceInfoAccelerator",
18601863
"AllocationReservationSharingPolicy",
18611864
"AllocationResourceStatus",
1865+
"AllocationResourceStatusHealthInfo",
18621866
"AllocationResourceStatusSpecificSKUAllocation",
18631867
"AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk",
18641868
"AllocationSpecificSKUAllocationReservedInstanceProperties",
@@ -3027,6 +3031,7 @@
30273031
"ReservationAffinity",
30283032
"ReservationAggregatedList",
30293033
"ReservationBlock",
3034+
"ReservationBlockHealthInfo",
30303035
"ReservationBlockPhysicalTopology",
30313036
"ReservationBlockPhysicalTopologyInstance",
30323037
"ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
@@ -3035,6 +3040,7 @@
30353040
"ReservationBlocksListResponse",
30363041
"ReservationList",
30373042
"ReservationSubBlock",
3043+
"ReservationSubBlockHealthInfo",
30383044
"ReservationSubBlockPhysicalTopology",
30393045
"ReservationSubBlocksClient",
30403046
"ReservationSubBlocksGetResponse",

packages/google-cloud-compute/google/cloud/compute_v1/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "1.33.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-cloud-compute/google/cloud/compute_v1/types/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
AllocationAggregateReservationReservedResourceInfoAccelerator,
100100
AllocationReservationSharingPolicy,
101101
AllocationResourceStatus,
102+
AllocationResourceStatusHealthInfo,
102103
AllocationResourceStatusSpecificSKUAllocation,
103104
AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk,
104105
AllocationSpecificSKUAllocationReservedInstanceProperties,
@@ -1195,6 +1196,7 @@
11951196
ReservationAffinity,
11961197
ReservationAggregatedList,
11971198
ReservationBlock,
1199+
ReservationBlockHealthInfo,
11981200
ReservationBlockPhysicalTopology,
11991201
ReservationBlockPhysicalTopologyInstance,
12001202
ReservationBlockPhysicalTopologyInstancePhysicalHostTopology,
@@ -1206,6 +1208,7 @@
12061208
ReservationsResizeRequest,
12071209
ReservationsScopedList,
12081210
ReservationSubBlock,
1211+
ReservationSubBlockHealthInfo,
12091212
ReservationSubBlockPhysicalTopology,
12101213
ReservationSubBlocksGetResponse,
12111214
ReservationSubBlocksListResponse,
@@ -1742,6 +1745,7 @@
17421745
"AllocationAggregateReservationReservedResourceInfoAccelerator",
17431746
"AllocationReservationSharingPolicy",
17441747
"AllocationResourceStatus",
1748+
"AllocationResourceStatusHealthInfo",
17451749
"AllocationResourceStatusSpecificSKUAllocation",
17461750
"AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk",
17471751
"AllocationSpecificSKUAllocationReservedInstanceProperties",
@@ -2838,6 +2842,7 @@
28382842
"ReservationAffinity",
28392843
"ReservationAggregatedList",
28402844
"ReservationBlock",
2845+
"ReservationBlockHealthInfo",
28412846
"ReservationBlockPhysicalTopology",
28422847
"ReservationBlockPhysicalTopologyInstance",
28432848
"ReservationBlockPhysicalTopologyInstancePhysicalHostTopology",
@@ -2849,6 +2854,7 @@
28492854
"ReservationsResizeRequest",
28502855
"ReservationsScopedList",
28512856
"ReservationSubBlock",
2857+
"ReservationSubBlockHealthInfo",
28522858
"ReservationSubBlockPhysicalTopology",
28532859
"ReservationSubBlocksGetResponse",
28542860
"ReservationSubBlocksListResponse",

0 commit comments

Comments
 (0)