google-apis-compute_beta 0.121.0 → 0.123.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a8d15f7098928ef95a83730ae30d5d6e79e87fa2a3cf109f3abc1585c287f6a
|
4
|
+
data.tar.gz: 60443cd208448f391c2ba7256fe0890c0fd6e91a377883bcf940562b3b7dd3f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d98663c1fd9d4ee80c94c3562a55ccb270bae86750fd1641bec3e73a60337e2a15e145883b303d26a2d8cbd959ae6cd78dc39661e2548c57ff6d0d960910400d
|
7
|
+
data.tar.gz: bad3fb125a509cdf5c515aaefd2e5abea58a07cf01da497302675588432bc6c11c5d27b8505326206a277fe05d48c9c047e71f619df96ccd783972cbca28222a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.123.0 (2025-09-21)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250909
|
6
|
+
|
7
|
+
### v0.122.0 (2025-09-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250902
|
10
|
+
|
3
11
|
### v0.121.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250810
|
@@ -1222,6 +1222,23 @@ module Google
|
|
1222
1222
|
class AllocationAggregateReservation
|
1223
1223
|
include Google::Apis::Core::Hashable
|
1224
1224
|
|
1225
|
+
# Count of reserved hosts of specified VM family. The host has fixed number of
|
1226
|
+
# accelerators based on the accelerator/vm-family selected.
|
1227
|
+
# Corresponds to the JSON property `hostCount`
|
1228
|
+
# @return [Fixnum]
|
1229
|
+
attr_accessor :host_count
|
1230
|
+
|
1231
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
1232
|
+
# the host, it is considered in use.
|
1233
|
+
# Corresponds to the JSON property `inUseHostCount`
|
1234
|
+
# @return [Fixnum]
|
1235
|
+
attr_accessor :in_use_host_count
|
1236
|
+
|
1237
|
+
# Number of instances currently in use in this reservation.
|
1238
|
+
# Corresponds to the JSON property `inUseInstanceCount`
|
1239
|
+
# @return [Fixnum]
|
1240
|
+
attr_accessor :in_use_instance_count
|
1241
|
+
|
1225
1242
|
# [Output only] List of resources currently in use.
|
1226
1243
|
# Corresponds to the JSON property `inUseResources`
|
1227
1244
|
# @return [Array<Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo>]
|
@@ -1249,6 +1266,9 @@ module Google
|
|
1249
1266
|
|
1250
1267
|
# Update properties of this object
|
1251
1268
|
def update!(**args)
|
1269
|
+
@host_count = args[:host_count] if args.key?(:host_count)
|
1270
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
1271
|
+
@in_use_instance_count = args[:in_use_instance_count] if args.key?(:in_use_instance_count)
|
1252
1272
|
@in_use_resources = args[:in_use_resources] if args.key?(:in_use_resources)
|
1253
1273
|
@reserved_resources = args[:reserved_resources] if args.key?(:reserved_resources)
|
1254
1274
|
@vm_family = args[:vm_family] if args.key?(:vm_family)
|
@@ -3268,8 +3288,8 @@ module Google
|
|
3268
3288
|
# CDN will apply the following default TTLs to these status codes: HTTP 300 (
|
3269
3289
|
# Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found),
|
3270
3290
|
# 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not
|
3271
|
-
# Found),
|
3272
|
-
#
|
3291
|
+
# Found), 501 (Not Implemented): 60s. These defaults can be overridden in
|
3292
|
+
# negative_caching_policy.
|
3273
3293
|
# Corresponds to the JSON property `negativeCaching`
|
3274
3294
|
# @return [Boolean]
|
3275
3295
|
attr_accessor :negative_caching
|
@@ -4461,8 +4481,8 @@ module Google
|
|
4461
4481
|
# CDN will apply the following default TTLs to these status codes: HTTP 300 (
|
4462
4482
|
# Multiple Choice), 301, 308 (Permanent Redirects): 10m HTTP 404 (Not Found),
|
4463
4483
|
# 410 (Gone), 451 (Unavailable For Legal Reasons): 120s HTTP 405 (Method Not
|
4464
|
-
# Found),
|
4465
|
-
#
|
4484
|
+
# Found), 501 (Not Implemented): 60s. These defaults can be overridden in
|
4485
|
+
# negative_caching_policy.
|
4466
4486
|
# Corresponds to the JSON property `negativeCaching`
|
4467
4487
|
# @return [Boolean]
|
4468
4488
|
attr_accessor :negative_caching
|
@@ -6006,6 +6026,13 @@ module Google
|
|
6006
6026
|
# @return [Array<Fixnum>]
|
6007
6027
|
attr_accessor :asns
|
6008
6028
|
|
6029
|
+
# [Output only] ASNs in the path segment. This field is for better support of 32
|
6030
|
+
# bit ASNs as the other asns field suffers from overflow when the ASN is larger.
|
6031
|
+
# When type is SEQUENCE, these are ordered.
|
6032
|
+
# Corresponds to the JSON property `asns32`
|
6033
|
+
# @return [Array<Fixnum>]
|
6034
|
+
attr_accessor :asns32
|
6035
|
+
|
6009
6036
|
# [Output only] Type of AS-PATH segment (SEQUENCE or SET)
|
6010
6037
|
# Corresponds to the JSON property `type`
|
6011
6038
|
# @return [String]
|
@@ -6018,6 +6045,7 @@ module Google
|
|
6018
6045
|
# Update properties of this object
|
6019
6046
|
def update!(**args)
|
6020
6047
|
@asns = args[:asns] if args.key?(:asns)
|
6048
|
+
@asns32 = args[:asns32] if args.key?(:asns32)
|
6021
6049
|
@type = args[:type] if args.key?(:type)
|
6022
6050
|
end
|
6023
6051
|
end
|
@@ -10785,6 +10813,12 @@ module Google
|
|
10785
10813
|
# @return [String]
|
10786
10814
|
attr_accessor :parent
|
10787
10815
|
|
10816
|
+
# [Output Only] Source of this Firewall Policy. USER_DEFINED if created by a
|
10817
|
+
# Cloud user, or SYSTEM if created by managed services like GKE.
|
10818
|
+
# Corresponds to the JSON property `policySource`
|
10819
|
+
# @return [String]
|
10820
|
+
attr_accessor :policy_source
|
10821
|
+
|
10788
10822
|
# The type of the firewall policy. This field can be either VPC_POLICY or
|
10789
10823
|
# RDMA_ROCE_POLICY. Note: if not specified then VPC_POLICY will be used.
|
10790
10824
|
# Corresponds to the JSON property `policyType`
|
@@ -10852,6 +10886,7 @@ module Google
|
|
10852
10886
|
@name = args[:name] if args.key?(:name)
|
10853
10887
|
@packet_mirroring_rules = args[:packet_mirroring_rules] if args.key?(:packet_mirroring_rules)
|
10854
10888
|
@parent = args[:parent] if args.key?(:parent)
|
10889
|
+
@policy_source = args[:policy_source] if args.key?(:policy_source)
|
10855
10890
|
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
10856
10891
|
@region = args[:region] if args.key?(:region)
|
10857
10892
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
@@ -11108,6 +11143,17 @@ module Google
|
|
11108
11143
|
# @return [String]
|
11109
11144
|
attr_accessor :security_profile_group
|
11110
11145
|
|
11146
|
+
# A list of forwarding rules to which this rule applies. This field allows you
|
11147
|
+
# to control which load balancers get this rule. For example, the following are
|
11148
|
+
# valid values: - https://www.googleapis.com/compute/v1/projects/project /global/
|
11149
|
+
# forwardingRules/forwardingRule - https://www.googleapis.com/compute/v1/
|
11150
|
+
# projects/project/regions/region /forwardingRules/forwardingRule - projects/
|
11151
|
+
# project/global/ forwardingRules/forwardingRule - projects/project/regions/
|
11152
|
+
# region/forwardingRules/ forwardingRule
|
11153
|
+
# Corresponds to the JSON property `targetForwardingRules`
|
11154
|
+
# @return [Array<String>]
|
11155
|
+
attr_accessor :target_forwarding_rules
|
11156
|
+
|
11111
11157
|
# A list of network resource URLs to which this rule applies. This field allows
|
11112
11158
|
# you to control which network's VMs get this rule. If this field is left blank,
|
11113
11159
|
# all VMs within the organization will receive the rule.
|
@@ -11133,6 +11179,11 @@ module Google
|
|
11133
11179
|
# @return [Array<String>]
|
11134
11180
|
attr_accessor :target_service_accounts
|
11135
11181
|
|
11182
|
+
# Target types of the firewall policy rule. Default value is INSTANCES.
|
11183
|
+
# Corresponds to the JSON property `targetType`
|
11184
|
+
# @return [String]
|
11185
|
+
attr_accessor :target_type
|
11186
|
+
|
11136
11187
|
# Boolean flag indicating if the traffic should be TLS decrypted. Can be set
|
11137
11188
|
# only if action = 'apply_security_profile_group' and cannot be set for other
|
11138
11189
|
# actions.
|
@@ -11158,9 +11209,11 @@ module Google
|
|
11158
11209
|
@rule_name = args[:rule_name] if args.key?(:rule_name)
|
11159
11210
|
@rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
|
11160
11211
|
@security_profile_group = args[:security_profile_group] if args.key?(:security_profile_group)
|
11212
|
+
@target_forwarding_rules = args[:target_forwarding_rules] if args.key?(:target_forwarding_rules)
|
11161
11213
|
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
11162
11214
|
@target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
|
11163
11215
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
11216
|
+
@target_type = args[:target_type] if args.key?(:target_type)
|
11164
11217
|
@tls_inspect = args[:tls_inspect] if args.key?(:tls_inspect)
|
11165
11218
|
end
|
11166
11219
|
end
|
@@ -12385,6 +12438,11 @@ module Google
|
|
12385
12438
|
# @return [String]
|
12386
12439
|
attr_accessor :planning_status
|
12387
12440
|
|
12441
|
+
# Protection tier for the workload.
|
12442
|
+
# Corresponds to the JSON property `protectionTier`
|
12443
|
+
# @return [String]
|
12444
|
+
attr_accessor :protection_tier
|
12445
|
+
|
12388
12446
|
# The reservation mode which determines reservation-termination behavior and
|
12389
12447
|
# expected pricing.
|
12390
12448
|
# Corresponds to the JSON property `reservationMode`
|
@@ -12469,6 +12527,7 @@ module Google
|
|
12469
12527
|
@name = args[:name] if args.key?(:name)
|
12470
12528
|
@name_prefix = args[:name_prefix] if args.key?(:name_prefix)
|
12471
12529
|
@planning_status = args[:planning_status] if args.key?(:planning_status)
|
12530
|
+
@protection_tier = args[:protection_tier] if args.key?(:protection_tier)
|
12472
12531
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
12473
12532
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
12474
12533
|
@scheduling_type = args[:scheduling_type] if args.key?(:scheduling_type)
|
@@ -21194,6 +21253,14 @@ module Google
|
|
21194
21253
|
class InstanceParams
|
21195
21254
|
include Google::Apis::Core::Hashable
|
21196
21255
|
|
21256
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
21257
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
21258
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
21259
|
+
# 000 years.
|
21260
|
+
# Corresponds to the JSON property `requestValidForDuration`
|
21261
|
+
# @return [Google::Apis::ComputeBeta::Duration]
|
21262
|
+
attr_accessor :request_valid_for_duration
|
21263
|
+
|
21197
21264
|
# Resource manager tags to be bound to the instance. Tag keys and values have
|
21198
21265
|
# the same definition as resource manager tags. Keys must be in the format `
|
21199
21266
|
# tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
|
@@ -21208,6 +21275,7 @@ module Google
|
|
21208
21275
|
|
21209
21276
|
# Update properties of this object
|
21210
21277
|
def update!(**args)
|
21278
|
+
@request_valid_for_duration = args[:request_valid_for_duration] if args.key?(:request_valid_for_duration)
|
21211
21279
|
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
21212
21280
|
end
|
21213
21281
|
end
|
@@ -24658,9 +24726,7 @@ module Google
|
|
24658
24726
|
# @return [String]
|
24659
24727
|
attr_accessor :is_active
|
24660
24728
|
|
24661
|
-
# Whether this Attachment is active, and if so, whether BGP is up.
|
24662
|
-
# on the statuses available in the Pantheon UI here: http://google3/java/com/
|
24663
|
-
# google/cloud/boq/clientapi/gce/hybrid/api/interconnect_models.proto
|
24729
|
+
# Whether this Attachment is active, and if so, whether BGP is up.
|
24664
24730
|
# Corresponds to the JSON property `status`
|
24665
24731
|
# @return [String]
|
24666
24732
|
attr_accessor :status
|
@@ -26193,6 +26259,13 @@ module Google
|
|
26193
26259
|
# @return [String]
|
26194
26260
|
attr_accessor :self_link
|
26195
26261
|
|
26262
|
+
# [Output Only] URLs of the other locations that can pair up with this location
|
26263
|
+
# to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and iad-zone2-5467 are
|
26264
|
+
# Single-Region 99.99% peer locations of each other.
|
26265
|
+
# Corresponds to the JSON property `singleRegionProductionCriticalPeerLocations`
|
26266
|
+
# @return [Array<String>]
|
26267
|
+
attr_accessor :single_region_production_critical_peer_locations
|
26268
|
+
|
26196
26269
|
# [Output Only] The status of this InterconnectLocation, which can take one of
|
26197
26270
|
# the following values: - CLOSED: The InterconnectLocation is closed and is
|
26198
26271
|
# unavailable for provisioning new Interconnects. - AVAILABLE: The
|
@@ -26230,6 +26303,7 @@ module Google
|
|
26230
26303
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
26231
26304
|
@region_infos = args[:region_infos] if args.key?(:region_infos)
|
26232
26305
|
@self_link = args[:self_link] if args.key?(:self_link)
|
26306
|
+
@single_region_production_critical_peer_locations = args[:single_region_production_critical_peer_locations] if args.key?(:single_region_production_critical_peer_locations)
|
26233
26307
|
@status = args[:status] if args.key?(:status)
|
26234
26308
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
26235
26309
|
end
|
@@ -26705,6 +26779,13 @@ module Google
|
|
26705
26779
|
# @return [Fixnum]
|
26706
26780
|
attr_accessor :max_lag_size10_gbps
|
26707
26781
|
|
26782
|
+
# [Output Only] The maximum number of 400 Gbps ports supported in a link
|
26783
|
+
# aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot
|
26784
|
+
# exceed max_lag_size_400_gbps.
|
26785
|
+
# Corresponds to the JSON property `maxLagSize400Gbps`
|
26786
|
+
# @return [Fixnum]
|
26787
|
+
attr_accessor :max_lag_size400_gbps
|
26788
|
+
|
26708
26789
|
# [Output Only] Name of the resource.
|
26709
26790
|
# Corresponds to the JSON property `name`
|
26710
26791
|
# @return [String]
|
@@ -26761,6 +26842,7 @@ module Google
|
|
26761
26842
|
@lacp = args[:lacp] if args.key?(:lacp)
|
26762
26843
|
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
26763
26844
|
@max_lag_size10_gbps = args[:max_lag_size10_gbps] if args.key?(:max_lag_size10_gbps)
|
26845
|
+
@max_lag_size400_gbps = args[:max_lag_size400_gbps] if args.key?(:max_lag_size400_gbps)
|
26764
26846
|
@name = args[:name] if args.key?(:name)
|
26765
26847
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
26766
26848
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -32175,6 +32257,11 @@ module Google
|
|
32175
32257
|
# @return [String]
|
32176
32258
|
attr_accessor :name
|
32177
32259
|
|
32260
|
+
# [Output Only] Type of the network profile.
|
32261
|
+
# Corresponds to the JSON property `profileType`
|
32262
|
+
# @return [Google::Apis::ComputeBeta::NetworkProfileProfileType]
|
32263
|
+
attr_accessor :profile_type
|
32264
|
+
|
32178
32265
|
# [Output Only] Server-defined URL for the resource.
|
32179
32266
|
# Corresponds to the JSON property `selfLink`
|
32180
32267
|
# @return [String]
|
@@ -32198,6 +32285,7 @@ module Google
|
|
32198
32285
|
@kind = args[:kind] if args.key?(:kind)
|
32199
32286
|
@location = args[:location] if args.key?(:location)
|
32200
32287
|
@name = args[:name] if args.key?(:name)
|
32288
|
+
@profile_type = args[:profile_type] if args.key?(:profile_type)
|
32201
32289
|
@self_link = args[:self_link] if args.key?(:self_link)
|
32202
32290
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
32203
32291
|
end
|
@@ -32412,6 +32500,43 @@ module Google
|
|
32412
32500
|
end
|
32413
32501
|
end
|
32414
32502
|
|
32503
|
+
#
|
32504
|
+
class NetworkProfileProfileType
|
32505
|
+
include Google::Apis::Core::Hashable
|
32506
|
+
|
32507
|
+
#
|
32508
|
+
# Corresponds to the JSON property `networkType`
|
32509
|
+
# @return [String]
|
32510
|
+
attr_accessor :network_type
|
32511
|
+
|
32512
|
+
#
|
32513
|
+
# Corresponds to the JSON property `rdmaSubtype`
|
32514
|
+
# @return [String]
|
32515
|
+
attr_accessor :rdma_subtype
|
32516
|
+
|
32517
|
+
#
|
32518
|
+
# Corresponds to the JSON property `ullSubtype`
|
32519
|
+
# @return [String]
|
32520
|
+
attr_accessor :ull_subtype
|
32521
|
+
|
32522
|
+
#
|
32523
|
+
# Corresponds to the JSON property `vpcSubtype`
|
32524
|
+
# @return [String]
|
32525
|
+
attr_accessor :vpc_subtype
|
32526
|
+
|
32527
|
+
def initialize(**args)
|
32528
|
+
update!(**args)
|
32529
|
+
end
|
32530
|
+
|
32531
|
+
# Update properties of this object
|
32532
|
+
def update!(**args)
|
32533
|
+
@network_type = args[:network_type] if args.key?(:network_type)
|
32534
|
+
@rdma_subtype = args[:rdma_subtype] if args.key?(:rdma_subtype)
|
32535
|
+
@ull_subtype = args[:ull_subtype] if args.key?(:ull_subtype)
|
32536
|
+
@vpc_subtype = args[:vpc_subtype] if args.key?(:vpc_subtype)
|
32537
|
+
end
|
32538
|
+
end
|
32539
|
+
|
32415
32540
|
# Contains a list of network profiles.
|
32416
32541
|
class NetworkProfilesListResponse
|
32417
32542
|
include Google::Apis::Core::Hashable
|
@@ -40854,6 +40979,12 @@ module Google
|
|
40854
40979
|
# @return [Fixnum]
|
40855
40980
|
attr_accessor :in_use_count
|
40856
40981
|
|
40982
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
40983
|
+
# the host, it is considered in use.
|
40984
|
+
# Corresponds to the JSON property `inUseHostCount`
|
40985
|
+
# @return [Fixnum]
|
40986
|
+
attr_accessor :in_use_host_count
|
40987
|
+
|
40857
40988
|
# [Output Only] Type of the resource. Always compute#reservationBlock for
|
40858
40989
|
# reservation blocks.
|
40859
40990
|
# Corresponds to the JSON property `kind`
|
@@ -40921,6 +41052,7 @@ module Google
|
|
40921
41052
|
@health_info = args[:health_info] if args.key?(:health_info)
|
40922
41053
|
@id = args[:id] if args.key?(:id)
|
40923
41054
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
41055
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
40924
41056
|
@kind = args[:kind] if args.key?(:kind)
|
40925
41057
|
@name = args[:name] if args.key?(:name)
|
40926
41058
|
@physical_topology = args[:physical_topology] if args.key?(:physical_topology)
|
@@ -41340,6 +41472,12 @@ module Google
|
|
41340
41472
|
# @return [Fixnum]
|
41341
41473
|
attr_accessor :in_use_count
|
41342
41474
|
|
41475
|
+
# Number of hosts currently in use. If there is one or more Instances running on
|
41476
|
+
# the host, it is considered in use.
|
41477
|
+
# Corresponds to the JSON property `inUseHostCount`
|
41478
|
+
# @return [Fixnum]
|
41479
|
+
attr_accessor :in_use_host_count
|
41480
|
+
|
41343
41481
|
# [Output Only] Type of the resource. Always compute#reservationSubBlock for
|
41344
41482
|
# reservation subBlocks.
|
41345
41483
|
# Corresponds to the JSON property `kind`
|
@@ -41394,6 +41532,7 @@ module Google
|
|
41394
41532
|
@health_info = args[:health_info] if args.key?(:health_info)
|
41395
41533
|
@id = args[:id] if args.key?(:id)
|
41396
41534
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
41535
|
+
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
41397
41536
|
@kind = args[:kind] if args.key?(:kind)
|
41398
41537
|
@name = args[:name] if args.key?(:name)
|
41399
41538
|
@physical_topology = args[:physical_topology] if args.key?(:physical_topology)
|
@@ -44824,15 +44963,15 @@ module Google
|
|
44824
44963
|
class RouterParams
|
44825
44964
|
include Google::Apis::Core::Hashable
|
44826
44965
|
|
44827
|
-
# Tag keys/values directly bound to this resource.
|
44828
|
-
#
|
44829
|
-
#
|
44830
|
-
#
|
44831
|
-
#
|
44832
|
-
#
|
44833
|
-
#
|
44834
|
-
# "tagValues/444"
|
44835
|
-
#
|
44966
|
+
# Tag keys/values directly bound to this resource. The field is allowed for
|
44967
|
+
# INSERT only. The keys/values to set on the resource should be specified in
|
44968
|
+
# either ID ` : ` or Namespaced format ` : `. For example the following are
|
44969
|
+
# valid inputs: * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/
|
44970
|
+
# 456"` * `"123/environment" : "production", "345/abc" : "xyz"` Note: * Invalid
|
44971
|
+
# combinations of ID & namespaced format is not supported. For instance: `"123/
|
44972
|
+
# environment" : "tagValues/444"` is invalid. * Inconsistent format is not
|
44973
|
+
# supported. For instance: `"tagKeys/333" : "tagValues/444", "123/env" : "prod"`
|
44974
|
+
# is invalid.
|
44836
44975
|
# Corresponds to the JSON property `resourceManagerTags`
|
44837
44976
|
# @return [Hash<String,String>]
|
44838
44977
|
attr_accessor :resource_manager_tags
|
@@ -48433,6 +48572,12 @@ module Google
|
|
48433
48572
|
# @return [String]
|
48434
48573
|
attr_accessor :endpoint
|
48435
48574
|
|
48575
|
+
# NAT IPs of the connected PSC endpoint and those of other endpoints propagated
|
48576
|
+
# from it.
|
48577
|
+
# Corresponds to the JSON property `natIps`
|
48578
|
+
# @return [Array<String>]
|
48579
|
+
attr_accessor :nat_ips
|
48580
|
+
|
48436
48581
|
# The number of consumer Network Connectivity Center spokes that the connected
|
48437
48582
|
# Private Service Connect endpoint has propagated to.
|
48438
48583
|
# Corresponds to the JSON property `propagatedConnectionCount`
|
@@ -48457,6 +48602,7 @@ module Google
|
|
48457
48602
|
def update!(**args)
|
48458
48603
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
48459
48604
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
48605
|
+
@nat_ips = args[:nat_ips] if args.key?(:nat_ips)
|
48460
48606
|
@propagated_connection_count = args[:propagated_connection_count] if args.key?(:propagated_connection_count)
|
48461
48607
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
48462
48608
|
@status = args[:status] if args.key?(:status)
|
@@ -60557,6 +60703,17 @@ module Google
|
|
60557
60703
|
class WireProperties
|
60558
60704
|
include Google::Apis::Core::Hashable
|
60559
60705
|
|
60706
|
+
# The configuration of the bandwidth allocation, one of the following: -
|
60707
|
+
# ALLOCATE_PER_WIRE: configures a separate unmetered bandwidth allocation (and
|
60708
|
+
# associated charges) for each wire in the group. - SHARED_WITH_WIRE_GROUP: this
|
60709
|
+
# is the default behavior, which configures one unmetered bandwidth allocation
|
60710
|
+
# for the wire group. The unmetered bandwidth is divided equally across each
|
60711
|
+
# wire in the group, but dynamic throttling reallocates unused unmetered
|
60712
|
+
# bandwidth from unused or underused wires to other wires in the group.
|
60713
|
+
# Corresponds to the JSON property `bandwidthAllocation`
|
60714
|
+
# @return [String]
|
60715
|
+
attr_accessor :bandwidth_allocation
|
60716
|
+
|
60560
60717
|
# The unmetered bandwidth in Gigabits per second, using decimal units. `10` is
|
60561
60718
|
# 10 Gbps, `100` is 100 Gbps.
|
60562
60719
|
# Corresponds to the JSON property `bandwidthUnmetered`
|
@@ -60576,6 +60733,7 @@ module Google
|
|
60576
60733
|
|
60577
60734
|
# Update properties of this object
|
60578
60735
|
def update!(**args)
|
60736
|
+
@bandwidth_allocation = args[:bandwidth_allocation] if args.key?(:bandwidth_allocation)
|
60579
60737
|
@bandwidth_unmetered = args[:bandwidth_unmetered] if args.key?(:bandwidth_unmetered)
|
60580
60738
|
@fault_response = args[:fault_response] if args.key?(:fault_response)
|
60581
60739
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.123.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250909"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4144,6 +4144,12 @@ module Google
|
|
4144
4144
|
include Google::Apis::Core::JsonObjectSupport
|
4145
4145
|
end
|
4146
4146
|
|
4147
|
+
class NetworkProfileProfileType
|
4148
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4149
|
+
|
4150
|
+
include Google::Apis::Core::JsonObjectSupport
|
4151
|
+
end
|
4152
|
+
|
4147
4153
|
class NetworkProfilesListResponse
|
4148
4154
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4149
4155
|
|
@@ -8389,6 +8395,9 @@ module Google
|
|
8389
8395
|
class AllocationAggregateReservation
|
8390
8396
|
# @private
|
8391
8397
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8398
|
+
property :host_count, as: 'hostCount'
|
8399
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
8400
|
+
property :in_use_instance_count, as: 'inUseInstanceCount'
|
8392
8401
|
collection :in_use_resources, as: 'inUseResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
8393
8402
|
|
8394
8403
|
collection :reserved_resources, as: 'reservedResources', class: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo, decorator: Google::Apis::ComputeBeta::AllocationAggregateReservationReservedResourceInfo::Representation
|
@@ -9451,6 +9460,7 @@ module Google
|
|
9451
9460
|
# @private
|
9452
9461
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9453
9462
|
collection :asns, as: 'asns'
|
9463
|
+
collection :asns32, as: 'asns32'
|
9454
9464
|
property :type, as: 'type'
|
9455
9465
|
end
|
9456
9466
|
end
|
@@ -10585,6 +10595,7 @@ module Google
|
|
10585
10595
|
collection :packet_mirroring_rules, as: 'packetMirroringRules', class: Google::Apis::ComputeBeta::FirewallPolicyRule, decorator: Google::Apis::ComputeBeta::FirewallPolicyRule::Representation
|
10586
10596
|
|
10587
10597
|
property :parent, as: 'parent'
|
10598
|
+
property :policy_source, as: 'policySource'
|
10588
10599
|
property :policy_type, as: 'policyType'
|
10589
10600
|
property :region, as: 'region'
|
10590
10601
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
@@ -10654,10 +10665,12 @@ module Google
|
|
10654
10665
|
property :rule_name, as: 'ruleName'
|
10655
10666
|
property :rule_tuple_count, as: 'ruleTupleCount'
|
10656
10667
|
property :security_profile_group, as: 'securityProfileGroup'
|
10668
|
+
collection :target_forwarding_rules, as: 'targetForwardingRules'
|
10657
10669
|
collection :target_resources, as: 'targetResources'
|
10658
10670
|
collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeBeta::FirewallPolicyRuleSecureTag::Representation
|
10659
10671
|
|
10660
10672
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
10673
|
+
property :target_type, as: 'targetType'
|
10661
10674
|
property :tls_inspect, as: 'tlsInspect'
|
10662
10675
|
end
|
10663
10676
|
end
|
@@ -10900,6 +10913,7 @@ module Google
|
|
10900
10913
|
property :name, as: 'name'
|
10901
10914
|
property :name_prefix, as: 'namePrefix'
|
10902
10915
|
property :planning_status, as: 'planningStatus'
|
10916
|
+
property :protection_tier, as: 'protectionTier'
|
10903
10917
|
property :reservation_mode, as: 'reservationMode'
|
10904
10918
|
property :reservation_name, as: 'reservationName'
|
10905
10919
|
property :scheduling_type, as: 'schedulingType'
|
@@ -13098,6 +13112,8 @@ module Google
|
|
13098
13112
|
class InstanceParams
|
13099
13113
|
# @private
|
13100
13114
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13115
|
+
property :request_valid_for_duration, as: 'requestValidForDuration', class: Google::Apis::ComputeBeta::Duration, decorator: Google::Apis::ComputeBeta::Duration::Representation
|
13116
|
+
|
13101
13117
|
hash :resource_manager_tags, as: 'resourceManagerTags'
|
13102
13118
|
end
|
13103
13119
|
end
|
@@ -14379,6 +14395,7 @@ module Google
|
|
14379
14395
|
collection :region_infos, as: 'regionInfos', class: Google::Apis::ComputeBeta::InterconnectLocationRegionInfo, decorator: Google::Apis::ComputeBeta::InterconnectLocationRegionInfo::Representation
|
14380
14396
|
|
14381
14397
|
property :self_link, as: 'selfLink'
|
14398
|
+
collection :single_region_production_critical_peer_locations, as: 'singleRegionProductionCriticalPeerLocations'
|
14382
14399
|
property :status, as: 'status'
|
14383
14400
|
property :supports_pzs, as: 'supportsPzs'
|
14384
14401
|
end
|
@@ -14500,6 +14517,7 @@ module Google
|
|
14500
14517
|
property :lacp, as: 'lacp'
|
14501
14518
|
property :max_lag_size100_gbps, as: 'maxLagSize100Gbps'
|
14502
14519
|
property :max_lag_size10_gbps, as: 'maxLagSize10Gbps'
|
14520
|
+
property :max_lag_size400_gbps, as: 'maxLagSize400Gbps'
|
14503
14521
|
property :name, as: 'name'
|
14504
14522
|
property :peeringdb_facility_id, as: 'peeringdbFacilityId'
|
14505
14523
|
collection :permitted_connections, as: 'permittedConnections', class: Google::Apis::ComputeBeta::InterconnectRemoteLocationPermittedConnections, decorator: Google::Apis::ComputeBeta::InterconnectRemoteLocationPermittedConnections::Representation
|
@@ -15881,6 +15899,8 @@ module Google
|
|
15881
15899
|
property :location, as: 'location', class: Google::Apis::ComputeBeta::NetworkProfileLocation, decorator: Google::Apis::ComputeBeta::NetworkProfileLocation::Representation
|
15882
15900
|
|
15883
15901
|
property :name, as: 'name'
|
15902
|
+
property :profile_type, as: 'profileType', class: Google::Apis::ComputeBeta::NetworkProfileProfileType, decorator: Google::Apis::ComputeBeta::NetworkProfileProfileType::Representation
|
15903
|
+
|
15884
15904
|
property :self_link, as: 'selfLink'
|
15885
15905
|
property :self_link_with_id, as: 'selfLinkWithId'
|
15886
15906
|
end
|
@@ -15928,6 +15948,16 @@ module Google
|
|
15928
15948
|
end
|
15929
15949
|
end
|
15930
15950
|
|
15951
|
+
class NetworkProfileProfileType
|
15952
|
+
# @private
|
15953
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15954
|
+
property :network_type, as: 'networkType'
|
15955
|
+
property :rdma_subtype, as: 'rdmaSubtype'
|
15956
|
+
property :ull_subtype, as: 'ullSubtype'
|
15957
|
+
property :vpc_subtype, as: 'vpcSubtype'
|
15958
|
+
end
|
15959
|
+
end
|
15960
|
+
|
15931
15961
|
class NetworkProfilesListResponse
|
15932
15962
|
# @private
|
15933
15963
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18144,6 +18174,7 @@ module Google
|
|
18144
18174
|
|
18145
18175
|
property :id, :numeric_string => true, as: 'id'
|
18146
18176
|
property :in_use_count, as: 'inUseCount'
|
18177
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
18147
18178
|
property :kind, as: 'kind'
|
18148
18179
|
property :name, as: 'name'
|
18149
18180
|
property :physical_topology, as: 'physicalTopology', class: Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology, decorator: Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology::Representation
|
@@ -18277,6 +18308,7 @@ module Google
|
|
18277
18308
|
|
18278
18309
|
property :id, :numeric_string => true, as: 'id'
|
18279
18310
|
property :in_use_count, as: 'inUseCount'
|
18311
|
+
property :in_use_host_count, as: 'inUseHostCount'
|
18280
18312
|
property :kind, as: 'kind'
|
18281
18313
|
property :name, as: 'name'
|
18282
18314
|
property :physical_topology, as: 'physicalTopology', class: Google::Apis::ComputeBeta::ReservationSubBlockPhysicalTopology, decorator: Google::Apis::ComputeBeta::ReservationSubBlockPhysicalTopology::Representation
|
@@ -20012,6 +20044,7 @@ module Google
|
|
20012
20044
|
class Representation < Google::Apis::Core::JsonRepresentation
|
20013
20045
|
property :consumer_network, as: 'consumerNetwork'
|
20014
20046
|
property :endpoint, as: 'endpoint'
|
20047
|
+
collection :nat_ips, as: 'natIps'
|
20015
20048
|
property :propagated_connection_count, as: 'propagatedConnectionCount'
|
20016
20049
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
20017
20050
|
property :status, as: 'status'
|
@@ -23064,6 +23097,7 @@ module Google
|
|
23064
23097
|
class WireProperties
|
23065
23098
|
# @private
|
23066
23099
|
class Representation < Google::Apis::Core::JsonRepresentation
|
23100
|
+
property :bandwidth_allocation, as: 'bandwidthAllocation'
|
23067
23101
|
property :bandwidth_unmetered, :numeric_string => true, as: 'bandwidthUnmetered'
|
23068
23102
|
property :fault_response, as: 'faultResponse'
|
23069
23103
|
end
|
@@ -26710,6 +26710,8 @@ module Google
|
|
26710
26710
|
# second request. This prevents clients from accidentally creating duplicate
|
26711
26711
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
26712
26712
|
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
26713
|
+
# @param [String] update_mask
|
26714
|
+
# Indicates fields to be cleared as part of this request.
|
26713
26715
|
# @param [String] fields
|
26714
26716
|
# Selector specifying which fields to include in a partial response.
|
26715
26717
|
# @param [String] quota_user
|
@@ -26729,7 +26731,7 @@ module Google
|
|
26729
26731
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
26730
26732
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
26731
26733
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
26732
|
-
def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
26734
|
+
def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
26733
26735
|
command = make_simple_command(:patch, 'locations/global/securityPolicies/{securityPolicy}', options)
|
26734
26736
|
command.request_representation = Google::Apis::ComputeBeta::SecurityPolicy::Representation
|
26735
26737
|
command.request_object = security_policy_object
|
@@ -26737,6 +26739,7 @@ module Google
|
|
26737
26739
|
command.response_class = Google::Apis::ComputeBeta::Operation
|
26738
26740
|
command.params['securityPolicy'] = security_policy unless security_policy.nil?
|
26739
26741
|
command.query['requestId'] = request_id unless request_id.nil?
|
26742
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
26740
26743
|
command.query['fields'] = fields unless fields.nil?
|
26741
26744
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
26742
26745
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
@@ -26760,6 +26763,8 @@ module Google
|
|
26760
26763
|
# second request. This prevents clients from accidentally creating duplicate
|
26761
26764
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
26762
26765
|
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
26766
|
+
# @param [String] update_mask
|
26767
|
+
# Indicates fields to be cleared as part of this request.
|
26763
26768
|
# @param [String] fields
|
26764
26769
|
# Selector specifying which fields to include in a partial response.
|
26765
26770
|
# @param [String] quota_user
|
@@ -26779,7 +26784,7 @@ module Google
|
|
26779
26784
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
26780
26785
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
26781
26786
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
26782
|
-
def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
26787
|
+
def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
26783
26788
|
command = make_simple_command(:post, 'locations/global/securityPolicies/{securityPolicy}/patchRule', options)
|
26784
26789
|
command.request_representation = Google::Apis::ComputeBeta::SecurityPolicyRule::Representation
|
26785
26790
|
command.request_object = security_policy_rule_object
|
@@ -26788,6 +26793,7 @@ module Google
|
|
26788
26793
|
command.params['securityPolicy'] = security_policy unless security_policy.nil?
|
26789
26794
|
command.query['priority'] = priority unless priority.nil?
|
26790
26795
|
command.query['requestId'] = request_id unless request_id.nil?
|
26796
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
26791
26797
|
command.query['fields'] = fields unless fields.nil?
|
26792
26798
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
26793
26799
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
@@ -27947,7 +27953,14 @@ module Google
|
|
27947
27953
|
execute_or_queue_command(command, &block)
|
27948
27954
|
end
|
27949
27955
|
|
27950
|
-
#
|
27956
|
+
# Starting September 29, 2025, you can't use the moveDisk API on new projects.
|
27957
|
+
# To move a disk to a different region or zone, follow the steps in [Change the
|
27958
|
+
# location of a disk](https://`$universe.dns_names.final_documentation_domain`/
|
27959
|
+
# compute/docs/disks/migrate-to-hyperdisk#migrate-to-hd). Projects that already
|
27960
|
+
# use the moveDisk API can continue usage until September 29, 2026. Starting
|
27961
|
+
# November 1, 2025, API responses will include a warning message in the response
|
27962
|
+
# body about the upcoming deprecation. You can skip the message to continue
|
27963
|
+
# using the service without interruption.
|
27951
27964
|
# @param [String] project
|
27952
27965
|
# Project ID for this request.
|
27953
27966
|
# @param [Google::Apis::ComputeBeta::DiskMoveRequest] disk_move_request_object
|
@@ -44985,6 +44998,8 @@ module Google
|
|
44985
44998
|
# Name of the region of this request.
|
44986
44999
|
# @param [String] service_attachment
|
44987
45000
|
# Name of the ServiceAttachment resource to return.
|
45001
|
+
# @param [Boolean] show_nat_ips
|
45002
|
+
# Indicates whether NAT IPs should be included in the response.
|
44988
45003
|
# @param [String] fields
|
44989
45004
|
# Selector specifying which fields to include in a partial response.
|
44990
45005
|
# @param [String] quota_user
|
@@ -45004,13 +45019,14 @@ module Google
|
|
45004
45019
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
45005
45020
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
45006
45021
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
45007
|
-
def get_service_attachment(project, region, service_attachment, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
45022
|
+
def get_service_attachment(project, region, service_attachment, show_nat_ips: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
45008
45023
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/serviceAttachments/{serviceAttachment}', options)
|
45009
45024
|
command.response_representation = Google::Apis::ComputeBeta::ServiceAttachment::Representation
|
45010
45025
|
command.response_class = Google::Apis::ComputeBeta::ServiceAttachment
|
45011
45026
|
command.params['project'] = project unless project.nil?
|
45012
45027
|
command.params['region'] = region unless region.nil?
|
45013
45028
|
command.params['serviceAttachment'] = service_attachment unless service_attachment.nil?
|
45029
|
+
command.query['showNatIps'] = show_nat_ips unless show_nat_ips.nil?
|
45014
45030
|
command.query['fields'] = fields unless fields.nil?
|
45015
45031
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
45016
45032
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.123.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.123.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|