google-apis-compute_v1 0.130.0 → 0.131.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: 67c13d8222e6ee4144e61472104fd52c6f386d1c9011b0a1b2055b8216ac7872
|
4
|
+
data.tar.gz: bbd4b4b12c88270aa333dc2cee00c30809e05b155e536171c32cae383b1a130b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0aef167a5ebdf0e263c0eb6a8136b580b3db8d43a9fbf11ce37c606910f47b40bfae2f0ed42d711cfd5040ba0819d939ca2a54db348d4121d624eff8f163c2be
|
7
|
+
data.tar.gz: 1df891afe22d9cd663d2d956e6f2b9879bf267e56bce8781efa14b02c717c2ccc458d813e03f67a79ee63ae3768edb49173852f19f06cab9538cbf24cf287272
|
data/CHANGELOG.md
CHANGED
@@ -23369,6 +23369,13 @@ module Google
|
|
23369
23369
|
# @return [String]
|
23370
23370
|
attr_accessor :self_link
|
23371
23371
|
|
23372
|
+
# [Output Only] URLs of the other locations that can pair up with this location
|
23373
|
+
# to support Single-Region 99.99% SLA. E.g. iad-zone1-1 and iad-zone2-5467 are
|
23374
|
+
# Single-Region 99.99% peer locations of each other.
|
23375
|
+
# Corresponds to the JSON property `singleRegionProductionCriticalPeerLocations`
|
23376
|
+
# @return [Array<String>]
|
23377
|
+
attr_accessor :single_region_production_critical_peer_locations
|
23378
|
+
|
23372
23379
|
# [Output Only] The status of this InterconnectLocation, which can take one of
|
23373
23380
|
# the following values: - CLOSED: The InterconnectLocation is closed and is
|
23374
23381
|
# unavailable for provisioning new Interconnects. - AVAILABLE: The
|
@@ -23405,6 +23412,7 @@ module Google
|
|
23405
23412
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
23406
23413
|
@region_infos = args[:region_infos] if args.key?(:region_infos)
|
23407
23414
|
@self_link = args[:self_link] if args.key?(:self_link)
|
23415
|
+
@single_region_production_critical_peer_locations = args[:single_region_production_critical_peer_locations] if args.key?(:single_region_production_critical_peer_locations)
|
23408
23416
|
@status = args[:status] if args.key?(:status)
|
23409
23417
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
23410
23418
|
end
|
@@ -23858,6 +23866,13 @@ module Google
|
|
23858
23866
|
# @return [Fixnum]
|
23859
23867
|
attr_accessor :max_lag_size10_gbps
|
23860
23868
|
|
23869
|
+
# [Output Only] The maximum number of 400 Gbps ports supported in a link
|
23870
|
+
# aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot
|
23871
|
+
# exceed max_lag_size_400_gbps.
|
23872
|
+
# Corresponds to the JSON property `maxLagSize400Gbps`
|
23873
|
+
# @return [Fixnum]
|
23874
|
+
attr_accessor :max_lag_size400_gbps
|
23875
|
+
|
23861
23876
|
# [Output Only] Name of the resource.
|
23862
23877
|
# Corresponds to the JSON property `name`
|
23863
23878
|
# @return [String]
|
@@ -23914,6 +23929,7 @@ module Google
|
|
23914
23929
|
@lacp = args[:lacp] if args.key?(:lacp)
|
23915
23930
|
@max_lag_size100_gbps = args[:max_lag_size100_gbps] if args.key?(:max_lag_size100_gbps)
|
23916
23931
|
@max_lag_size10_gbps = args[:max_lag_size10_gbps] if args.key?(:max_lag_size10_gbps)
|
23932
|
+
@max_lag_size400_gbps = args[:max_lag_size400_gbps] if args.key?(:max_lag_size400_gbps)
|
23917
23933
|
@name = args[:name] if args.key?(:name)
|
23918
23934
|
@peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
|
23919
23935
|
@permitted_connections = args[:permitted_connections] if args.key?(:permitted_connections)
|
@@ -36374,6 +36390,11 @@ module Google
|
|
36374
36390
|
# @return [String]
|
36375
36391
|
attr_accessor :backend_service
|
36376
36392
|
|
36393
|
+
# The percentage of requests to be mirrored to `backend_service`.
|
36394
|
+
# Corresponds to the JSON property `mirrorPercent`
|
36395
|
+
# @return [Float]
|
36396
|
+
attr_accessor :mirror_percent
|
36397
|
+
|
36377
36398
|
def initialize(**args)
|
36378
36399
|
update!(**args)
|
36379
36400
|
end
|
@@ -36381,6 +36402,7 @@ module Google
|
|
36381
36402
|
# Update properties of this object
|
36382
36403
|
def update!(**args)
|
36383
36404
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
36405
|
+
@mirror_percent = args[:mirror_percent] if args.key?(:mirror_percent)
|
36384
36406
|
end
|
36385
36407
|
end
|
36386
36408
|
|
@@ -47780,6 +47802,12 @@ module Google
|
|
47780
47802
|
# @return [Array<String>]
|
47781
47803
|
attr_accessor :system_reserved_internal_ipv6_ranges
|
47782
47804
|
|
47805
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
47806
|
+
# of allocated and free IPs in each range.
|
47807
|
+
# Corresponds to the JSON property `utilizationDetails`
|
47808
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetails]
|
47809
|
+
attr_accessor :utilization_details
|
47810
|
+
|
47783
47811
|
def initialize(**args)
|
47784
47812
|
update!(**args)
|
47785
47813
|
end
|
@@ -47816,6 +47844,7 @@ module Google
|
|
47816
47844
|
@state = args[:state] if args.key?(:state)
|
47817
47845
|
@system_reserved_external_ipv6_ranges = args[:system_reserved_external_ipv6_ranges] if args.key?(:system_reserved_external_ipv6_ranges)
|
47818
47846
|
@system_reserved_internal_ipv6_ranges = args[:system_reserved_internal_ipv6_ranges] if args.key?(:system_reserved_internal_ipv6_ranges)
|
47847
|
+
@utilization_details = args[:utilization_details] if args.key?(:utilization_details)
|
47819
47848
|
end
|
47820
47849
|
end
|
47821
47850
|
|
@@ -48190,6 +48219,101 @@ module Google
|
|
48190
48219
|
end
|
48191
48220
|
end
|
48192
48221
|
|
48222
|
+
# The current IP utilization of all subnetwork ranges. Contains the total number
|
48223
|
+
# of allocated and free IPs in each range.
|
48224
|
+
class SubnetworkUtilizationDetails
|
48225
|
+
include Google::Apis::Core::Hashable
|
48226
|
+
|
48227
|
+
# The IPV6 utilization of a single IP range.
|
48228
|
+
# Corresponds to the JSON property `externalIpv6InstanceUtilization`
|
48229
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48230
|
+
attr_accessor :external_ipv6_instance_utilization
|
48231
|
+
|
48232
|
+
# The IPV6 utilization of a single IP range.
|
48233
|
+
# Corresponds to the JSON property `externalIpv6LbUtilization`
|
48234
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48235
|
+
attr_accessor :external_ipv6_lb_utilization
|
48236
|
+
|
48237
|
+
# The IPV6 utilization of a single IP range.
|
48238
|
+
# Corresponds to the JSON property `internalIpv6Utilization`
|
48239
|
+
# @return [Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization]
|
48240
|
+
attr_accessor :internal_ipv6_utilization
|
48241
|
+
|
48242
|
+
# Utilizations of all IPV4 IP ranges. For primary ranges, the range name will be
|
48243
|
+
# empty.
|
48244
|
+
# Corresponds to the JSON property `ipv4Utilizations`
|
48245
|
+
# @return [Array<Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv4Utilization>]
|
48246
|
+
attr_accessor :ipv4_utilizations
|
48247
|
+
|
48248
|
+
def initialize(**args)
|
48249
|
+
update!(**args)
|
48250
|
+
end
|
48251
|
+
|
48252
|
+
# Update properties of this object
|
48253
|
+
def update!(**args)
|
48254
|
+
@external_ipv6_instance_utilization = args[:external_ipv6_instance_utilization] if args.key?(:external_ipv6_instance_utilization)
|
48255
|
+
@external_ipv6_lb_utilization = args[:external_ipv6_lb_utilization] if args.key?(:external_ipv6_lb_utilization)
|
48256
|
+
@internal_ipv6_utilization = args[:internal_ipv6_utilization] if args.key?(:internal_ipv6_utilization)
|
48257
|
+
@ipv4_utilizations = args[:ipv4_utilizations] if args.key?(:ipv4_utilizations)
|
48258
|
+
end
|
48259
|
+
end
|
48260
|
+
|
48261
|
+
# The IPV4 utilization of a single IP range.
|
48262
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
48263
|
+
include Google::Apis::Core::Hashable
|
48264
|
+
|
48265
|
+
# Will be set for secondary range. Empty for primary IPv4 range.
|
48266
|
+
# Corresponds to the JSON property `rangeName`
|
48267
|
+
# @return [String]
|
48268
|
+
attr_accessor :range_name
|
48269
|
+
|
48270
|
+
#
|
48271
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
48272
|
+
# @return [Fixnum]
|
48273
|
+
attr_accessor :total_allocated_ip
|
48274
|
+
|
48275
|
+
#
|
48276
|
+
# Corresponds to the JSON property `totalFreeIp`
|
48277
|
+
# @return [Fixnum]
|
48278
|
+
attr_accessor :total_free_ip
|
48279
|
+
|
48280
|
+
def initialize(**args)
|
48281
|
+
update!(**args)
|
48282
|
+
end
|
48283
|
+
|
48284
|
+
# Update properties of this object
|
48285
|
+
def update!(**args)
|
48286
|
+
@range_name = args[:range_name] if args.key?(:range_name)
|
48287
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
48288
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
48289
|
+
end
|
48290
|
+
end
|
48291
|
+
|
48292
|
+
# The IPV6 utilization of a single IP range.
|
48293
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
48294
|
+
include Google::Apis::Core::Hashable
|
48295
|
+
|
48296
|
+
#
|
48297
|
+
# Corresponds to the JSON property `totalAllocatedIp`
|
48298
|
+
# @return [Google::Apis::ComputeV1::Uint128]
|
48299
|
+
attr_accessor :total_allocated_ip
|
48300
|
+
|
48301
|
+
#
|
48302
|
+
# Corresponds to the JSON property `totalFreeIp`
|
48303
|
+
# @return [Google::Apis::ComputeV1::Uint128]
|
48304
|
+
attr_accessor :total_free_ip
|
48305
|
+
|
48306
|
+
def initialize(**args)
|
48307
|
+
update!(**args)
|
48308
|
+
end
|
48309
|
+
|
48310
|
+
# Update properties of this object
|
48311
|
+
def update!(**args)
|
48312
|
+
@total_allocated_ip = args[:total_allocated_ip] if args.key?(:total_allocated_ip)
|
48313
|
+
@total_free_ip = args[:total_free_ip] if args.key?(:total_free_ip)
|
48314
|
+
end
|
48315
|
+
end
|
48316
|
+
|
48193
48317
|
#
|
48194
48318
|
class SubnetworksExpandIpCidrRangeRequest
|
48195
48319
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.131.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
|
@@ -6286,6 +6286,24 @@ module Google
|
|
6286
6286
|
include Google::Apis::Core::JsonObjectSupport
|
6287
6287
|
end
|
6288
6288
|
|
6289
|
+
class SubnetworkUtilizationDetails
|
6290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6291
|
+
|
6292
|
+
include Google::Apis::Core::JsonObjectSupport
|
6293
|
+
end
|
6294
|
+
|
6295
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
6296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6297
|
+
|
6298
|
+
include Google::Apis::Core::JsonObjectSupport
|
6299
|
+
end
|
6300
|
+
|
6301
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
6302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6303
|
+
|
6304
|
+
include Google::Apis::Core::JsonObjectSupport
|
6305
|
+
end
|
6306
|
+
|
6289
6307
|
class SubnetworksExpandIpCidrRangeRequest
|
6290
6308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6291
6309
|
|
@@ -12839,6 +12857,7 @@ module Google
|
|
12839
12857
|
collection :region_infos, as: 'regionInfos', class: Google::Apis::ComputeV1::InterconnectLocationRegionInfo, decorator: Google::Apis::ComputeV1::InterconnectLocationRegionInfo::Representation
|
12840
12858
|
|
12841
12859
|
property :self_link, as: 'selfLink'
|
12860
|
+
collection :single_region_production_critical_peer_locations, as: 'singleRegionProductionCriticalPeerLocations'
|
12842
12861
|
property :status, as: 'status'
|
12843
12862
|
property :supports_pzs, as: 'supportsPzs'
|
12844
12863
|
end
|
@@ -12953,6 +12972,7 @@ module Google
|
|
12953
12972
|
property :lacp, as: 'lacp'
|
12954
12973
|
property :max_lag_size100_gbps, as: 'maxLagSize100Gbps'
|
12955
12974
|
property :max_lag_size10_gbps, as: 'maxLagSize10Gbps'
|
12975
|
+
property :max_lag_size400_gbps, as: 'maxLagSize400Gbps'
|
12956
12976
|
property :name, as: 'name'
|
12957
12977
|
property :peeringdb_facility_id, as: 'peeringdbFacilityId'
|
12958
12978
|
collection :permitted_connections, as: 'permittedConnections', class: Google::Apis::ComputeV1::InterconnectRemoteLocationPermittedConnections, decorator: Google::Apis::ComputeV1::InterconnectRemoteLocationPermittedConnections::Representation
|
@@ -16156,6 +16176,7 @@ module Google
|
|
16156
16176
|
# @private
|
16157
16177
|
class Representation < Google::Apis::Core::JsonRepresentation
|
16158
16178
|
property :backend_service, as: 'backendService'
|
16179
|
+
property :mirror_percent, as: 'mirrorPercent'
|
16159
16180
|
end
|
16160
16181
|
end
|
16161
16182
|
|
@@ -18990,6 +19011,8 @@ module Google
|
|
18990
19011
|
property :state, as: 'state'
|
18991
19012
|
collection :system_reserved_external_ipv6_ranges, as: 'systemReservedExternalIpv6Ranges'
|
18992
19013
|
collection :system_reserved_internal_ipv6_ranges, as: 'systemReservedInternalIpv6Ranges'
|
19014
|
+
property :utilization_details, as: 'utilizationDetails', class: Google::Apis::ComputeV1::SubnetworkUtilizationDetails, decorator: Google::Apis::ComputeV1::SubnetworkUtilizationDetails::Representation
|
19015
|
+
|
18993
19016
|
end
|
18994
19017
|
end
|
18995
19018
|
|
@@ -19086,6 +19109,39 @@ module Google
|
|
19086
19109
|
end
|
19087
19110
|
end
|
19088
19111
|
|
19112
|
+
class SubnetworkUtilizationDetails
|
19113
|
+
# @private
|
19114
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
19115
|
+
property :external_ipv6_instance_utilization, as: 'externalIpv6InstanceUtilization', class: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
19116
|
+
|
19117
|
+
property :external_ipv6_lb_utilization, as: 'externalIpv6LbUtilization', class: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
19118
|
+
|
19119
|
+
property :internal_ipv6_utilization, as: 'internalIpv6Utilization', class: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization, decorator: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv6Utilization::Representation
|
19120
|
+
|
19121
|
+
collection :ipv4_utilizations, as: 'ipv4Utilizations', class: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv4Utilization, decorator: Google::Apis::ComputeV1::SubnetworkUtilizationDetailsIpv4Utilization::Representation
|
19122
|
+
|
19123
|
+
end
|
19124
|
+
end
|
19125
|
+
|
19126
|
+
class SubnetworkUtilizationDetailsIpv4Utilization
|
19127
|
+
# @private
|
19128
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
19129
|
+
property :range_name, as: 'rangeName'
|
19130
|
+
property :total_allocated_ip, :numeric_string => true, as: 'totalAllocatedIp'
|
19131
|
+
property :total_free_ip, :numeric_string => true, as: 'totalFreeIp'
|
19132
|
+
end
|
19133
|
+
end
|
19134
|
+
|
19135
|
+
class SubnetworkUtilizationDetailsIpv6Utilization
|
19136
|
+
# @private
|
19137
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
19138
|
+
property :total_allocated_ip, as: 'totalAllocatedIp', class: Google::Apis::ComputeV1::Uint128, decorator: Google::Apis::ComputeV1::Uint128::Representation
|
19139
|
+
|
19140
|
+
property :total_free_ip, as: 'totalFreeIp', class: Google::Apis::ComputeV1::Uint128, decorator: Google::Apis::ComputeV1::Uint128::Representation
|
19141
|
+
|
19142
|
+
end
|
19143
|
+
end
|
19144
|
+
|
19089
19145
|
class SubnetworksExpandIpCidrRangeRequest
|
19090
19146
|
# @private
|
19091
19147
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -24892,7 +24892,14 @@ module Google
|
|
24892
24892
|
execute_or_queue_command(command, &block)
|
24893
24893
|
end
|
24894
24894
|
|
24895
|
-
#
|
24895
|
+
# Starting September 29, 2025, you can't use the moveDisk API on new projects.
|
24896
|
+
# To move a disk to a different region or zone, follow the steps in [Change the
|
24897
|
+
# location of a disk](https://`$universe.dns_names.final_documentation_domain`/
|
24898
|
+
# compute/docs/disks/migrate-to-hyperdisk#migrate-to-hd). Projects that already
|
24899
|
+
# use the moveDisk API can continue usage until September 29, 2026. Starting
|
24900
|
+
# November 1, 2025, API responses will include a warning message in the response
|
24901
|
+
# body about the upcoming deprecation. You can skip the message to continue
|
24902
|
+
# using the service without interruption.
|
24896
24903
|
# @param [String] project
|
24897
24904
|
# Project ID for this request.
|
24898
24905
|
# @param [Google::Apis::ComputeV1::MoveDiskRequest] move_disk_request_object
|
@@ -42479,6 +42486,9 @@ module Google
|
|
42479
42486
|
# Name of the region scoping this request.
|
42480
42487
|
# @param [String] subnetwork
|
42481
42488
|
# Name of the Subnetwork resource to return.
|
42489
|
+
# @param [Array<String>, String] views
|
42490
|
+
# Defines the extra views returned back in the subnetwork resource. Supported
|
42491
|
+
# values: - WITH_UTILIZATION: Utilization data is included in the response.
|
42482
42492
|
# @param [String] fields
|
42483
42493
|
# Selector specifying which fields to include in a partial response.
|
42484
42494
|
# @param [String] quota_user
|
@@ -42498,13 +42508,14 @@ module Google
|
|
42498
42508
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
42499
42509
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
42500
42510
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
42501
|
-
def get_subnetwork(project, region, subnetwork, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
42511
|
+
def get_subnetwork(project, region, subnetwork, views: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
42502
42512
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/subnetworks/{subnetwork}', options)
|
42503
42513
|
command.response_representation = Google::Apis::ComputeV1::Subnetwork::Representation
|
42504
42514
|
command.response_class = Google::Apis::ComputeV1::Subnetwork
|
42505
42515
|
command.params['project'] = project unless project.nil?
|
42506
42516
|
command.params['region'] = region unless region.nil?
|
42507
42517
|
command.params['subnetwork'] = subnetwork unless subnetwork.nil?
|
42518
|
+
command.query['views'] = views unless views.nil?
|
42508
42519
|
command.query['fields'] = fields unless fields.nil?
|
42509
42520
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
42510
42521
|
command.query['userIp'] = user_ip unless user_ip.nil?
|
@@ -42663,6 +42674,9 @@ module Google
|
|
42663
42674
|
# failure. The default value is false. For example, when partial success
|
42664
42675
|
# behavior is enabled, aggregatedList for a single zone scope either returns all
|
42665
42676
|
# resources in the zone or no resources, with an error code.
|
42677
|
+
# @param [Array<String>, String] views
|
42678
|
+
# Defines the extra views returned back in the subnetwork resource. Supported
|
42679
|
+
# values: - WITH_UTILIZATION: Utilization data is included in the response.
|
42666
42680
|
# @param [String] fields
|
42667
42681
|
# Selector specifying which fields to include in a partial response.
|
42668
42682
|
# @param [String] quota_user
|
@@ -42682,7 +42696,7 @@ module Google
|
|
42682
42696
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
42683
42697
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
42684
42698
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
42685
|
-
def list_subnetworks(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
42699
|
+
def list_subnetworks(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, views: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
42686
42700
|
command = make_simple_command(:get, 'projects/{project}/regions/{region}/subnetworks', options)
|
42687
42701
|
command.response_representation = Google::Apis::ComputeV1::SubnetworkList::Representation
|
42688
42702
|
command.response_class = Google::Apis::ComputeV1::SubnetworkList
|
@@ -42693,6 +42707,7 @@ module Google
|
|
42693
42707
|
command.query['orderBy'] = order_by unless order_by.nil?
|
42694
42708
|
command.query['pageToken'] = page_token unless page_token.nil?
|
42695
42709
|
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
42710
|
+
command.query['views'] = views unless views.nil?
|
42696
42711
|
command.query['fields'] = fields unless fields.nil?
|
42697
42712
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
42698
42713
|
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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.131.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.131.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|