google-apis-compute_v1 0.126.0 → 0.128.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: a948137b8e0aa73f0365b5bfc394620ad5587df07a679a0a1265afba55c6f044
4
- data.tar.gz: 4ee25c06a099fe0098dbedf55dfe1861f4c811a8f8eb0a7746594e783c606bad
3
+ metadata.gz: 84365409fcefbb1ef9dc81f536e30b92043e38cd23dd39029eef459b07690f58
4
+ data.tar.gz: 787a865d82247d0404ab634d1ce45317e47a10a63aa73385755eb7b4dd1a4adf
5
5
  SHA512:
6
- metadata.gz: 6fadf115830babf668f7251fe7052a993c7203dd0944ea48ce7797c388475c1a4592d70f054668adf34c34319e1c104a4c7c72506669a73c5cc16257f76564da
7
- data.tar.gz: e9421319ffa28dbb299e4f9e80829d9d2d17ae7b2984448ca5613500810e4874efe67004066ef1191ccc2e0f02d9771baa4f749f07f454ba84d7b6037fca8f65
6
+ metadata.gz: 5890dbb9a0e80de65a45f546a2cbbed7ecf5e585d97f0c86d279f2c66b883d16d4fc7ed225c1932acd935388629f3bcbd1cfa83de86b5110705746e152273c91
7
+ data.tar.gz: b30b1651ba9a822e90d4f8bcc7349a6ed11c440e135355f1cf9fa991657a86324bdb5a3cb777ef00b2675261a3c75ef2a2eb0a96aa53a98672f0d5ee1378ef38
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.128.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250807
6
+
7
+ ### v0.127.0 (2025-08-10)
8
+
9
+ * Regenerated from discovery document revision 20250729
10
+
3
11
  ### v0.126.0 (2025-08-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20250728
@@ -3022,6 +3022,11 @@ module Google
3022
3022
  # @return [String]
3023
3023
  attr_accessor :name
3024
3024
 
3025
+ # Additional Backend Bucket parameters.
3026
+ # Corresponds to the JSON property `params`
3027
+ # @return [Google::Apis::ComputeV1::BackendBucketParams]
3028
+ attr_accessor :params
3029
+
3025
3030
  # [Output Only] Server-defined URL for the resource.
3026
3031
  # Corresponds to the JSON property `selfLink`
3027
3032
  # @return [String]
@@ -3050,6 +3055,7 @@ module Google
3050
3055
  @kind = args[:kind] if args.key?(:kind)
3051
3056
  @load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
3052
3057
  @name = args[:name] if args.key?(:name)
3058
+ @params = args[:params] if args.key?(:params)
3053
3059
  @self_link = args[:self_link] if args.key?(:self_link)
3054
3060
  @used_by = args[:used_by] if args.key?(:used_by)
3055
3061
  end
@@ -3407,6 +3413,32 @@ module Google
3407
3413
  end
3408
3414
  end
3409
3415
 
3416
+ # Additional Backend Bucket parameters.
3417
+ class BackendBucketParams
3418
+ include Google::Apis::Core::Hashable
3419
+
3420
+ # Tag keys/values directly bound to this resource. Tag keys and values have the
3421
+ # same definition as resource manager tags. The field is allowed for INSERT only.
3422
+ # The keys/values to set on the resource should be specified in either ID ` : `
3423
+ # or Namespaced format ` : `. For example the following are valid inputs: * `"
3424
+ # tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
3425
+ # environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
3426
+ # of ID & namespaced format is not supported. For instance: `"123/environment" :
3427
+ # "tagValues/444"` is invalid.
3428
+ # Corresponds to the JSON property `resourceManagerTags`
3429
+ # @return [Hash<String,String>]
3430
+ attr_accessor :resource_manager_tags
3431
+
3432
+ def initialize(**args)
3433
+ update!(**args)
3434
+ end
3435
+
3436
+ # Update properties of this object
3437
+ def update!(**args)
3438
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
3439
+ end
3440
+ end
3441
+
3410
3442
  #
3411
3443
  class BackendBucketUsedBy
3412
3444
  include Google::Apis::Core::Hashable
@@ -3727,7 +3759,7 @@ module Google
3727
3759
  # was redirected to the load balancer. - MAGLEV: used as a drop in replacement
3728
3760
  # for the ring hash load balancer. Maglev is not as stable as ring hash but has
3729
3761
  # faster table lookup build times and host selection times. For more information
3730
- # about Maglev, see https://ai.google/research/pubs/pub44824 -
3762
+ # about Maglev, see Maglev: A Fast and Reliable Software Network Load Balancer. -
3731
3763
  # WEIGHTED_ROUND_ROBIN: Per-endpoint Weighted Round Robin Load Balancing using
3732
3764
  # weights computed from Backend reported Custom Metrics. If set, the Backend
3733
3765
  # Service responses are expected to contain non-standard HTTP response header
@@ -3794,6 +3826,11 @@ module Google
3794
3826
  # @return [Google::Apis::ComputeV1::OutlierDetection]
3795
3827
  attr_accessor :outlier_detection
3796
3828
 
3829
+ # Additional Backend Service parameters.
3830
+ # Corresponds to the JSON property `params`
3831
+ # @return [Google::Apis::ComputeV1::BackendServiceParams]
3832
+ attr_accessor :params
3833
+
3797
3834
  # Deprecated in favor of portName. The TCP port to connect on the backend. The
3798
3835
  # default value is 80. For internal passthrough Network Load Balancers and
3799
3836
  # external passthrough Network Load Balancers, omit port.
@@ -3853,7 +3890,7 @@ module Google
3853
3890
  attr_accessor :service_bindings
3854
3891
 
3855
3892
  # URL to networkservices.ServiceLbPolicy resource. Can only be set if load
3856
- # balancing scheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED or
3893
+ # balancing scheme is EXTERNAL_MANAGED, INTERNAL_MANAGED or
3857
3894
  # INTERNAL_SELF_MANAGED and the scope is global.
3858
3895
  # Corresponds to the JSON property `serviceLbPolicy`
3859
3896
  # @return [String]
@@ -3944,6 +3981,7 @@ module Google
3944
3981
  @name = args[:name] if args.key?(:name)
3945
3982
  @network = args[:network] if args.key?(:network)
3946
3983
  @outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
3984
+ @params = args[:params] if args.key?(:params)
3947
3985
  @port = args[:port] if args.key?(:port)
3948
3986
  @port_name = args[:port_name] if args.key?(:port_name)
3949
3987
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -5057,6 +5095,32 @@ module Google
5057
5095
  end
5058
5096
  end
5059
5097
 
5098
+ # Additional Backend Service parameters.
5099
+ class BackendServiceParams
5100
+ include Google::Apis::Core::Hashable
5101
+
5102
+ # Tag keys/values directly bound to this resource. Tag keys and values have the
5103
+ # same definition as resource manager tags. The field is allowed for INSERT only.
5104
+ # The keys/values to set on the resource should be specified in either ID ` : `
5105
+ # or Namespaced format ` : `. For example the following are valid inputs: * `"
5106
+ # tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"` * `"123/
5107
+ # environment" : "production", "345/abc" : "xyz"` Note: * Invalid combinations
5108
+ # of ID & namespaced format is not supported. For instance: `"123/environment" :
5109
+ # "tagValues/444"` is invalid.
5110
+ # Corresponds to the JSON property `resourceManagerTags`
5111
+ # @return [Hash<String,String>]
5112
+ attr_accessor :resource_manager_tags
5113
+
5114
+ def initialize(**args)
5115
+ update!(**args)
5116
+ end
5117
+
5118
+ # Update properties of this object
5119
+ def update!(**args)
5120
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
5121
+ end
5122
+ end
5123
+
5060
5124
  #
5061
5125
  class BackendServiceReference
5062
5126
  include Google::Apis::Core::Hashable
@@ -20218,6 +20282,12 @@ module Google
20218
20282
  class Interconnect
20219
20283
  include Google::Apis::Core::Hashable
20220
20284
 
20285
+ # Enable or disable the application awareness feature on this Cloud Interconnect.
20286
+ # Corresponds to the JSON property `aaiEnabled`
20287
+ # @return [Boolean]
20288
+ attr_accessor :aai_enabled
20289
+ alias_method :aai_enabled?, :aai_enabled
20290
+
20221
20291
  # Administrative status of the interconnect. When this is set to true, the
20222
20292
  # Interconnect is functional and can carry traffic. When set to false, no
20223
20293
  # packets can be carried over the interconnect and no BGP routes are exchanged
@@ -20227,6 +20297,11 @@ module Google
20227
20297
  attr_accessor :admin_enabled
20228
20298
  alias_method :admin_enabled?, :admin_enabled
20229
20299
 
20300
+ # Configuration information for application awareness on this Cloud Interconnect.
20301
+ # Corresponds to the JSON property `applicationAwareInterconnect`
20302
+ # @return [Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnect]
20303
+ attr_accessor :application_aware_interconnect
20304
+
20230
20305
  # [Output only] List of features available for this Interconnect connection,
20231
20306
  # which can take one of the following values: - IF_MACSEC If present then the
20232
20307
  # Interconnect connection is provisioned on MACsec capable hardware ports. If
@@ -20449,7 +20524,9 @@ module Google
20449
20524
 
20450
20525
  # Update properties of this object
20451
20526
  def update!(**args)
20527
+ @aai_enabled = args[:aai_enabled] if args.key?(:aai_enabled)
20452
20528
  @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
20529
+ @application_aware_interconnect = args[:application_aware_interconnect] if args.key?(:application_aware_interconnect)
20453
20530
  @available_features = args[:available_features] if args.key?(:available_features)
20454
20531
  @circuit_infos = args[:circuit_infos] if args.key?(:circuit_infos)
20455
20532
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -20483,6 +20560,104 @@ module Google
20483
20560
  end
20484
20561
  end
20485
20562
 
20563
+ # Configuration information for application awareness on this Cloud Interconnect.
20564
+ class InterconnectApplicationAwareInterconnect
20565
+ include Google::Apis::Core::Hashable
20566
+
20567
+ #
20568
+ # Corresponds to the JSON property `bandwidthPercentagePolicy`
20569
+ # @return [Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy]
20570
+ attr_accessor :bandwidth_percentage_policy
20571
+
20572
+ # Description for the application awareness profile on this Cloud Interconnect.
20573
+ # Corresponds to the JSON property `profileDescription`
20574
+ # @return [String]
20575
+ attr_accessor :profile_description
20576
+
20577
+ # Optional field to specify a list of shape average percentages to be applied in
20578
+ # conjunction with StrictPriorityPolicy or BandwidthPercentagePolicy.
20579
+ # Corresponds to the JSON property `shapeAveragePercentages`
20580
+ # @return [Array<Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage>]
20581
+ attr_accessor :shape_average_percentages
20582
+
20583
+ # Specify configuration for StrictPriorityPolicy.
20584
+ # Corresponds to the JSON property `strictPriorityPolicy`
20585
+ # @return [Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectStrictPriorityPolicy]
20586
+ attr_accessor :strict_priority_policy
20587
+
20588
+ def initialize(**args)
20589
+ update!(**args)
20590
+ end
20591
+
20592
+ # Update properties of this object
20593
+ def update!(**args)
20594
+ @bandwidth_percentage_policy = args[:bandwidth_percentage_policy] if args.key?(:bandwidth_percentage_policy)
20595
+ @profile_description = args[:profile_description] if args.key?(:profile_description)
20596
+ @shape_average_percentages = args[:shape_average_percentages] if args.key?(:shape_average_percentages)
20597
+ @strict_priority_policy = args[:strict_priority_policy] if args.key?(:strict_priority_policy)
20598
+ end
20599
+ end
20600
+
20601
+ # Specify bandwidth percentages [1-100] for various traffic classes in
20602
+ # BandwidthPercentagePolicy. The sum of all percentages must equal 100. All
20603
+ # traffic classes must have a percentage value specified.
20604
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
20605
+ include Google::Apis::Core::Hashable
20606
+
20607
+ # Bandwidth percentage for a specific traffic class.
20608
+ # Corresponds to the JSON property `percentage`
20609
+ # @return [Fixnum]
20610
+ attr_accessor :percentage
20611
+
20612
+ # TrafficClass whose bandwidth percentage is being specified.
20613
+ # Corresponds to the JSON property `trafficClass`
20614
+ # @return [String]
20615
+ attr_accessor :traffic_class
20616
+
20617
+ def initialize(**args)
20618
+ update!(**args)
20619
+ end
20620
+
20621
+ # Update properties of this object
20622
+ def update!(**args)
20623
+ @percentage = args[:percentage] if args.key?(:percentage)
20624
+ @traffic_class = args[:traffic_class] if args.key?(:traffic_class)
20625
+ end
20626
+ end
20627
+
20628
+ #
20629
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
20630
+ include Google::Apis::Core::Hashable
20631
+
20632
+ # Specify bandwidth percentages for various traffic classes for queuing type
20633
+ # Bandwidth Percent.
20634
+ # Corresponds to the JSON property `bandwidthPercentages`
20635
+ # @return [Array<Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage>]
20636
+ attr_accessor :bandwidth_percentages
20637
+
20638
+ def initialize(**args)
20639
+ update!(**args)
20640
+ end
20641
+
20642
+ # Update properties of this object
20643
+ def update!(**args)
20644
+ @bandwidth_percentages = args[:bandwidth_percentages] if args.key?(:bandwidth_percentages)
20645
+ end
20646
+ end
20647
+
20648
+ # Specify configuration for StrictPriorityPolicy.
20649
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
20650
+ include Google::Apis::Core::Hashable
20651
+
20652
+ def initialize(**args)
20653
+ update!(**args)
20654
+ end
20655
+
20656
+ # Update properties of this object
20657
+ def update!(**args)
20658
+ end
20659
+ end
20660
+
20486
20661
  # Represents an Interconnect Attachment (VLAN) resource. You can use
20487
20662
  # Interconnect attachments (VLANS) to connect your Virtual Private Cloud
20488
20663
  # networks to your on-premises networks through an Interconnect. For more
@@ -28229,6 +28404,14 @@ module Google
28229
28404
  attr_accessor :auto_create_routes
28230
28405
  alias_method :auto_create_routes?, :auto_create_routes
28231
28406
 
28407
+ # [Output Only] Describes the state of a peering connection, not just the local
28408
+ # peering. This field provides information about the effective settings for the
28409
+ # connection as a whole, including pending delete/update requests for CONSENSUS
28410
+ # peerings.
28411
+ # Corresponds to the JSON property `connectionStatus`
28412
+ # @return [Google::Apis::ComputeV1::NetworkPeeringConnectionStatus]
28413
+ attr_accessor :connection_status
28414
+
28232
28415
  # Indicates whether full mesh connectivity is created and managed automatically
28233
28416
  # between peered networks. Currently this field should always be true since
28234
28417
  # Google Compute Engine will automatically create and manage subnetwork routes
@@ -28308,6 +28491,12 @@ module Google
28308
28491
  # @return [String]
28309
28492
  attr_accessor :state_details
28310
28493
 
28494
+ # The update strategy determines the semantics for updates and deletes to the
28495
+ # peering connection configuration.
28496
+ # Corresponds to the JSON property `updateStrategy`
28497
+ # @return [String]
28498
+ attr_accessor :update_strategy
28499
+
28311
28500
  def initialize(**args)
28312
28501
  update!(**args)
28313
28502
  end
@@ -28315,6 +28504,7 @@ module Google
28315
28504
  # Update properties of this object
28316
28505
  def update!(**args)
28317
28506
  @auto_create_routes = args[:auto_create_routes] if args.key?(:auto_create_routes)
28507
+ @connection_status = args[:connection_status] if args.key?(:connection_status)
28318
28508
  @exchange_subnet_routes = args[:exchange_subnet_routes] if args.key?(:exchange_subnet_routes)
28319
28509
  @export_custom_routes = args[:export_custom_routes] if args.key?(:export_custom_routes)
28320
28510
  @export_subnet_routes_with_public_ip = args[:export_subnet_routes_with_public_ip] if args.key?(:export_subnet_routes_with_public_ip)
@@ -28326,6 +28516,122 @@ module Google
28326
28516
  @stack_type = args[:stack_type] if args.key?(:stack_type)
28327
28517
  @state = args[:state] if args.key?(:state)
28328
28518
  @state_details = args[:state_details] if args.key?(:state_details)
28519
+ @update_strategy = args[:update_strategy] if args.key?(:update_strategy)
28520
+ end
28521
+ end
28522
+
28523
+ # [Output Only] Describes the state of a peering connection, not just the local
28524
+ # peering. This field provides information about the effective settings for the
28525
+ # connection as a whole, including pending delete/update requests for CONSENSUS
28526
+ # peerings.
28527
+ class NetworkPeeringConnectionStatus
28528
+ include Google::Apis::Core::Hashable
28529
+
28530
+ # The status of update/delete for a consensus peering connection. Only set when
28531
+ # connection_status.update_strategy is CONSENSUS or a network peering is
28532
+ # proposing to update the strategy to CONSENSUS.
28533
+ # Corresponds to the JSON property `consensusState`
28534
+ # @return [Google::Apis::ComputeV1::NetworkPeeringConnectionStatusConsensusState]
28535
+ attr_accessor :consensus_state
28536
+
28537
+ # The active connectivity settings for the peering connection based on the
28538
+ # settings of the network peerings.
28539
+ # Corresponds to the JSON property `trafficConfiguration`
28540
+ # @return [Google::Apis::ComputeV1::NetworkPeeringConnectionStatusTrafficConfiguration]
28541
+ attr_accessor :traffic_configuration
28542
+
28543
+ # The update strategy determines the update/delete semantics for this peering
28544
+ # connection.
28545
+ # Corresponds to the JSON property `updateStrategy`
28546
+ # @return [String]
28547
+ attr_accessor :update_strategy
28548
+
28549
+ def initialize(**args)
28550
+ update!(**args)
28551
+ end
28552
+
28553
+ # Update properties of this object
28554
+ def update!(**args)
28555
+ @consensus_state = args[:consensus_state] if args.key?(:consensus_state)
28556
+ @traffic_configuration = args[:traffic_configuration] if args.key?(:traffic_configuration)
28557
+ @update_strategy = args[:update_strategy] if args.key?(:update_strategy)
28558
+ end
28559
+ end
28560
+
28561
+ # The status of update/delete for a consensus peering connection. Only set when
28562
+ # connection_status.update_strategy is CONSENSUS or a network peering is
28563
+ # proposing to update the strategy to CONSENSUS.
28564
+ class NetworkPeeringConnectionStatusConsensusState
28565
+ include Google::Apis::Core::Hashable
28566
+
28567
+ # The status of the delete request.
28568
+ # Corresponds to the JSON property `deleteStatus`
28569
+ # @return [String]
28570
+ attr_accessor :delete_status
28571
+
28572
+ # The status of the update request.
28573
+ # Corresponds to the JSON property `updateStatus`
28574
+ # @return [String]
28575
+ attr_accessor :update_status
28576
+
28577
+ def initialize(**args)
28578
+ update!(**args)
28579
+ end
28580
+
28581
+ # Update properties of this object
28582
+ def update!(**args)
28583
+ @delete_status = args[:delete_status] if args.key?(:delete_status)
28584
+ @update_status = args[:update_status] if args.key?(:update_status)
28585
+ end
28586
+ end
28587
+
28588
+ #
28589
+ class NetworkPeeringConnectionStatusTrafficConfiguration
28590
+ include Google::Apis::Core::Hashable
28591
+
28592
+ # Whether custom routes are being exported to the peer network.
28593
+ # Corresponds to the JSON property `exportCustomRoutesToPeer`
28594
+ # @return [Boolean]
28595
+ attr_accessor :export_custom_routes_to_peer
28596
+ alias_method :export_custom_routes_to_peer?, :export_custom_routes_to_peer
28597
+
28598
+ # Whether subnet routes with public IP ranges are being exported to the peer
28599
+ # network.
28600
+ # Corresponds to the JSON property `exportSubnetRoutesWithPublicIpToPeer`
28601
+ # @return [Boolean]
28602
+ attr_accessor :export_subnet_routes_with_public_ip_to_peer
28603
+ alias_method :export_subnet_routes_with_public_ip_to_peer?, :export_subnet_routes_with_public_ip_to_peer
28604
+
28605
+ # Whether custom routes are being imported from the peer network.
28606
+ # Corresponds to the JSON property `importCustomRoutesFromPeer`
28607
+ # @return [Boolean]
28608
+ attr_accessor :import_custom_routes_from_peer
28609
+ alias_method :import_custom_routes_from_peer?, :import_custom_routes_from_peer
28610
+
28611
+ # Whether subnet routes with public IP ranges are being imported from the peer
28612
+ # network.
28613
+ # Corresponds to the JSON property `importSubnetRoutesWithPublicIpFromPeer`
28614
+ # @return [Boolean]
28615
+ attr_accessor :import_subnet_routes_with_public_ip_from_peer
28616
+ alias_method :import_subnet_routes_with_public_ip_from_peer?, :import_subnet_routes_with_public_ip_from_peer
28617
+
28618
+ # Which IP version(s) of traffic and routes are being imported or exported
28619
+ # between peer networks.
28620
+ # Corresponds to the JSON property `stackType`
28621
+ # @return [String]
28622
+ attr_accessor :stack_type
28623
+
28624
+ def initialize(**args)
28625
+ update!(**args)
28626
+ end
28627
+
28628
+ # Update properties of this object
28629
+ def update!(**args)
28630
+ @export_custom_routes_to_peer = args[:export_custom_routes_to_peer] if args.key?(:export_custom_routes_to_peer)
28631
+ @export_subnet_routes_with_public_ip_to_peer = args[:export_subnet_routes_with_public_ip_to_peer] if args.key?(:export_subnet_routes_with_public_ip_to_peer)
28632
+ @import_custom_routes_from_peer = args[:import_custom_routes_from_peer] if args.key?(:import_custom_routes_from_peer)
28633
+ @import_subnet_routes_with_public_ip_from_peer = args[:import_subnet_routes_with_public_ip_from_peer] if args.key?(:import_subnet_routes_with_public_ip_from_peer)
28634
+ @stack_type = args[:stack_type] if args.key?(:stack_type)
28329
28635
  end
28330
28636
  end
28331
28637
 
@@ -28969,6 +29275,25 @@ module Google
28969
29275
  end
28970
29276
  end
28971
29277
 
29278
+ #
29279
+ class NetworksRequestRemovePeeringRequest
29280
+ include Google::Apis::Core::Hashable
29281
+
29282
+ # Name of the peering, which should conform to RFC1035.
29283
+ # Corresponds to the JSON property `name`
29284
+ # @return [String]
29285
+ attr_accessor :name
29286
+
29287
+ def initialize(**args)
29288
+ update!(**args)
29289
+ end
29290
+
29291
+ # Update properties of this object
29292
+ def update!(**args)
29293
+ @name = args[:name] if args.key?(:name)
29294
+ end
29295
+ end
29296
+
28972
29297
  #
28973
29298
  class NetworksUpdatePeeringRequest
28974
29299
  include Google::Apis::Core::Hashable
@@ -36002,6 +36327,12 @@ module Google
36002
36327
  class Reservation
36003
36328
  include Google::Apis::Core::Hashable
36004
36329
 
36330
+ # Advance control for cluster management, applicable only to DENSE deployment
36331
+ # type reservations.
36332
+ # Corresponds to the JSON property `advancedDeploymentControl`
36333
+ # @return [Google::Apis::ComputeV1::ReservationAdvancedDeploymentControl]
36334
+ attr_accessor :advanced_deployment_control
36335
+
36005
36336
  # This reservation type is specified by total resource amounts (e.g. total count
36006
36337
  # of CPUs) and can account for multiple instance SKUs. In other words, one can
36007
36338
  # create instances of varying shapes against this reservation.
@@ -36153,6 +36484,7 @@ module Google
36153
36484
 
36154
36485
  # Update properties of this object
36155
36486
  def update!(**args)
36487
+ @advanced_deployment_control = args[:advanced_deployment_control] if args.key?(:advanced_deployment_control)
36156
36488
  @aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
36157
36489
  @commitment = args[:commitment] if args.key?(:commitment)
36158
36490
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -36179,6 +36511,26 @@ module Google
36179
36511
  end
36180
36512
  end
36181
36513
 
36514
+ # Advance control for cluster management, applicable only to DENSE deployment
36515
+ # type reservations.
36516
+ class ReservationAdvancedDeploymentControl
36517
+ include Google::Apis::Core::Hashable
36518
+
36519
+ # Indicates chosen reservation operational mode for the reservation.
36520
+ # Corresponds to the JSON property `reservationOperationalMode`
36521
+ # @return [String]
36522
+ attr_accessor :reservation_operational_mode
36523
+
36524
+ def initialize(**args)
36525
+ update!(**args)
36526
+ end
36527
+
36528
+ # Update properties of this object
36529
+ def update!(**args)
36530
+ @reservation_operational_mode = args[:reservation_operational_mode] if args.key?(:reservation_operational_mode)
36531
+ end
36532
+ end
36533
+
36182
36534
  # Specifies the reservations that this instance can consume from.
36183
36535
  class ReservationAffinity
36184
36536
  include Google::Apis::Core::Hashable
@@ -38230,17 +38582,18 @@ module Google
38230
38582
  class ResourcePolicyWorkloadPolicy
38231
38583
  include Google::Apis::Core::Hashable
38232
38584
 
38233
- #
38585
+ # Specifies the topology required to create a partition for VMs that have
38586
+ # interconnected GPUs.
38234
38587
  # Corresponds to the JSON property `acceleratorTopology`
38235
38588
  # @return [String]
38236
38589
  attr_accessor :accelerator_topology
38237
38590
 
38238
- #
38591
+ # Specifies the maximum distance between instances.
38239
38592
  # Corresponds to the JSON property `maxTopologyDistance`
38240
38593
  # @return [String]
38241
38594
  attr_accessor :max_topology_distance
38242
38595
 
38243
- #
38596
+ # Specifies the intent of the instance placement in the MIG.
38244
38597
  # Corresponds to the JSON property `type`
38245
38598
  # @return [String]
38246
38599
  attr_accessor :type
@@ -48749,10 +49102,10 @@ module Google
48749
49102
  # HTTPS Proxy resources: * [Global](/compute/docs/reference/rest/v1/
48750
49103
  # targetHttpsProxies) * [Regional](/compute/docs/reference/rest/v1/
48751
49104
  # regionTargetHttpsProxies) A target HTTPS proxy is a component of Google Cloud
48752
- # HTTPS load balancers. * targetHttpProxies are used by global external
49105
+ # HTTPS load balancers. * targetHttpsProxies are used by global external
48753
49106
  # Application Load Balancers, classic Application Load Balancers, cross-region
48754
49107
  # internal Application Load Balancers, and Traffic Director. *
48755
- # regionTargetHttpProxies are used by regional internal Application Load
49108
+ # regionTargetHttpsProxies are used by regional internal Application Load
48756
49109
  # Balancers and regional external Application Load Balancers. Forwarding rules
48757
49110
  # reference a target HTTPS proxy, and the target proxy then references a URL map.
48758
49111
  # For more information, read Using Target Proxies and Forwarding rule concepts.
@@ -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.126.0"
19
+ GEM_VERSION = "0.128.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 = "20250728"
25
+ REVISION = "20250807"
26
26
  end
27
27
  end
28
28
  end
@@ -412,6 +412,12 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class BackendBucketParams
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
415
421
  class BackendBucketUsedBy
416
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
423
 
@@ -580,6 +586,12 @@ module Google
580
586
  include Google::Apis::Core::JsonObjectSupport
581
587
  end
582
588
 
589
+ class BackendServiceParams
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
583
595
  class BackendServiceReference
584
596
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
597
 
@@ -2542,6 +2554,30 @@ module Google
2542
2554
  include Google::Apis::Core::JsonObjectSupport
2543
2555
  end
2544
2556
 
2557
+ class InterconnectApplicationAwareInterconnect
2558
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2559
+
2560
+ include Google::Apis::Core::JsonObjectSupport
2561
+ end
2562
+
2563
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
2564
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2565
+
2566
+ include Google::Apis::Core::JsonObjectSupport
2567
+ end
2568
+
2569
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
2570
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2571
+
2572
+ include Google::Apis::Core::JsonObjectSupport
2573
+ end
2574
+
2575
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
2576
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2577
+
2578
+ include Google::Apis::Core::JsonObjectSupport
2579
+ end
2580
+
2545
2581
  class InterconnectAttachment
2546
2582
  class Representation < Google::Apis::Core::JsonRepresentation; end
2547
2583
 
@@ -3580,6 +3616,24 @@ module Google
3580
3616
  include Google::Apis::Core::JsonObjectSupport
3581
3617
  end
3582
3618
 
3619
+ class NetworkPeeringConnectionStatus
3620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3621
+
3622
+ include Google::Apis::Core::JsonObjectSupport
3623
+ end
3624
+
3625
+ class NetworkPeeringConnectionStatusConsensusState
3626
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3627
+
3628
+ include Google::Apis::Core::JsonObjectSupport
3629
+ end
3630
+
3631
+ class NetworkPeeringConnectionStatusTrafficConfiguration
3632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3633
+
3634
+ include Google::Apis::Core::JsonObjectSupport
3635
+ end
3636
+
3583
3637
  class NetworkPerformanceConfig
3584
3638
  class Representation < Google::Apis::Core::JsonRepresentation; end
3585
3639
 
@@ -3652,6 +3706,12 @@ module Google
3652
3706
  include Google::Apis::Core::JsonObjectSupport
3653
3707
  end
3654
3708
 
3709
+ class NetworksRequestRemovePeeringRequest
3710
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3711
+
3712
+ include Google::Apis::Core::JsonObjectSupport
3713
+ end
3714
+
3655
3715
  class NetworksUpdatePeeringRequest
3656
3716
  class Representation < Google::Apis::Core::JsonRepresentation; end
3657
3717
 
@@ -4690,6 +4750,12 @@ module Google
4690
4750
  include Google::Apis::Core::JsonObjectSupport
4691
4751
  end
4692
4752
 
4753
+ class ReservationAdvancedDeploymentControl
4754
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4755
+
4756
+ include Google::Apis::Core::JsonObjectSupport
4757
+ end
4758
+
4693
4759
  class ReservationAffinity
4694
4760
  class Representation < Google::Apis::Core::JsonRepresentation; end
4695
4761
 
@@ -7872,6 +7938,8 @@ module Google
7872
7938
  property :kind, as: 'kind'
7873
7939
  property :load_balancing_scheme, as: 'loadBalancingScheme'
7874
7940
  property :name, as: 'name'
7941
+ property :params, as: 'params', class: Google::Apis::ComputeV1::BackendBucketParams, decorator: Google::Apis::ComputeV1::BackendBucketParams::Representation
7942
+
7875
7943
  property :self_link, as: 'selfLink'
7876
7944
  collection :used_by, as: 'usedBy', class: Google::Apis::ComputeV1::BackendBucketUsedBy, decorator: Google::Apis::ComputeV1::BackendBucketUsedBy::Representation
7877
7945
 
@@ -7954,6 +8022,13 @@ module Google
7954
8022
  end
7955
8023
  end
7956
8024
 
8025
+ class BackendBucketParams
8026
+ # @private
8027
+ class Representation < Google::Apis::Core::JsonRepresentation
8028
+ hash :resource_manager_tags, as: 'resourceManagerTags'
8029
+ end
8030
+ end
8031
+
7957
8032
  class BackendBucketUsedBy
7958
8033
  # @private
7959
8034
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8021,6 +8096,8 @@ module Google
8021
8096
  property :network, as: 'network'
8022
8097
  property :outlier_detection, as: 'outlierDetection', class: Google::Apis::ComputeV1::OutlierDetection, decorator: Google::Apis::ComputeV1::OutlierDetection::Representation
8023
8098
 
8099
+ property :params, as: 'params', class: Google::Apis::ComputeV1::BackendServiceParams, decorator: Google::Apis::ComputeV1::BackendServiceParams::Representation
8100
+
8024
8101
  property :port, as: 'port'
8025
8102
  property :port_name, as: 'portName'
8026
8103
  property :protocol, as: 'protocol'
@@ -8294,6 +8371,13 @@ module Google
8294
8371
  end
8295
8372
  end
8296
8373
 
8374
+ class BackendServiceParams
8375
+ # @private
8376
+ class Representation < Google::Apis::Core::JsonRepresentation
8377
+ hash :resource_manager_tags, as: 'resourceManagerTags'
8378
+ end
8379
+ end
8380
+
8297
8381
  class BackendServiceReference
8298
8382
  # @private
8299
8383
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11959,7 +12043,10 @@ module Google
11959
12043
  class Interconnect
11960
12044
  # @private
11961
12045
  class Representation < Google::Apis::Core::JsonRepresentation
12046
+ property :aai_enabled, as: 'aaiEnabled'
11962
12047
  property :admin_enabled, as: 'adminEnabled'
12048
+ property :application_aware_interconnect, as: 'applicationAwareInterconnect', class: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnect, decorator: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnect::Representation
12049
+
11963
12050
  collection :available_features, as: 'availableFeatures'
11964
12051
  collection :circuit_infos, as: 'circuitInfos', class: Google::Apis::ComputeV1::InterconnectCircuitInfo, decorator: Google::Apis::ComputeV1::InterconnectCircuitInfo::Representation
11965
12052
 
@@ -11996,6 +12083,41 @@ module Google
11996
12083
  end
11997
12084
  end
11998
12085
 
12086
+ class InterconnectApplicationAwareInterconnect
12087
+ # @private
12088
+ class Representation < Google::Apis::Core::JsonRepresentation
12089
+ property :bandwidth_percentage_policy, as: 'bandwidthPercentagePolicy', class: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy, decorator: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy::Representation
12090
+
12091
+ property :profile_description, as: 'profileDescription'
12092
+ collection :shape_average_percentages, as: 'shapeAveragePercentages', class: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage, decorator: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage::Representation
12093
+
12094
+ property :strict_priority_policy, as: 'strictPriorityPolicy', class: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectStrictPriorityPolicy, decorator: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectStrictPriorityPolicy::Representation
12095
+
12096
+ end
12097
+ end
12098
+
12099
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
12100
+ # @private
12101
+ class Representation < Google::Apis::Core::JsonRepresentation
12102
+ property :percentage, as: 'percentage'
12103
+ property :traffic_class, as: 'trafficClass'
12104
+ end
12105
+ end
12106
+
12107
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
12108
+ # @private
12109
+ class Representation < Google::Apis::Core::JsonRepresentation
12110
+ collection :bandwidth_percentages, as: 'bandwidthPercentages', class: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage, decorator: Google::Apis::ComputeV1::InterconnectApplicationAwareInterconnectBandwidthPercentage::Representation
12111
+
12112
+ end
12113
+ end
12114
+
12115
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
12116
+ # @private
12117
+ class Representation < Google::Apis::Core::JsonRepresentation
12118
+ end
12119
+ end
12120
+
11999
12121
  class InterconnectAttachment
12000
12122
  # @private
12001
12123
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13934,6 +14056,8 @@ module Google
13934
14056
  # @private
13935
14057
  class Representation < Google::Apis::Core::JsonRepresentation
13936
14058
  property :auto_create_routes, as: 'autoCreateRoutes'
14059
+ property :connection_status, as: 'connectionStatus', class: Google::Apis::ComputeV1::NetworkPeeringConnectionStatus, decorator: Google::Apis::ComputeV1::NetworkPeeringConnectionStatus::Representation
14060
+
13937
14061
  property :exchange_subnet_routes, as: 'exchangeSubnetRoutes'
13938
14062
  property :export_custom_routes, as: 'exportCustomRoutes'
13939
14063
  property :export_subnet_routes_with_public_ip, as: 'exportSubnetRoutesWithPublicIp'
@@ -13945,6 +14069,37 @@ module Google
13945
14069
  property :stack_type, as: 'stackType'
13946
14070
  property :state, as: 'state'
13947
14071
  property :state_details, as: 'stateDetails'
14072
+ property :update_strategy, as: 'updateStrategy'
14073
+ end
14074
+ end
14075
+
14076
+ class NetworkPeeringConnectionStatus
14077
+ # @private
14078
+ class Representation < Google::Apis::Core::JsonRepresentation
14079
+ property :consensus_state, as: 'consensusState', class: Google::Apis::ComputeV1::NetworkPeeringConnectionStatusConsensusState, decorator: Google::Apis::ComputeV1::NetworkPeeringConnectionStatusConsensusState::Representation
14080
+
14081
+ property :traffic_configuration, as: 'trafficConfiguration', class: Google::Apis::ComputeV1::NetworkPeeringConnectionStatusTrafficConfiguration, decorator: Google::Apis::ComputeV1::NetworkPeeringConnectionStatusTrafficConfiguration::Representation
14082
+
14083
+ property :update_strategy, as: 'updateStrategy'
14084
+ end
14085
+ end
14086
+
14087
+ class NetworkPeeringConnectionStatusConsensusState
14088
+ # @private
14089
+ class Representation < Google::Apis::Core::JsonRepresentation
14090
+ property :delete_status, as: 'deleteStatus'
14091
+ property :update_status, as: 'updateStatus'
14092
+ end
14093
+ end
14094
+
14095
+ class NetworkPeeringConnectionStatusTrafficConfiguration
14096
+ # @private
14097
+ class Representation < Google::Apis::Core::JsonRepresentation
14098
+ property :export_custom_routes_to_peer, as: 'exportCustomRoutesToPeer'
14099
+ property :export_subnet_routes_with_public_ip_to_peer, as: 'exportSubnetRoutesWithPublicIpToPeer'
14100
+ property :import_custom_routes_from_peer, as: 'importCustomRoutesFromPeer'
14101
+ property :import_subnet_routes_with_public_ip_from_peer, as: 'importSubnetRoutesWithPublicIpFromPeer'
14102
+ property :stack_type, as: 'stackType'
13948
14103
  end
13949
14104
  end
13950
14105
 
@@ -14103,6 +14258,13 @@ module Google
14103
14258
  end
14104
14259
  end
14105
14260
 
14261
+ class NetworksRequestRemovePeeringRequest
14262
+ # @private
14263
+ class Representation < Google::Apis::Core::JsonRepresentation
14264
+ property :name, as: 'name'
14265
+ end
14266
+ end
14267
+
14106
14268
  class NetworksUpdatePeeringRequest
14107
14269
  # @private
14108
14270
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -15948,6 +16110,8 @@ module Google
15948
16110
  class Reservation
15949
16111
  # @private
15950
16112
  class Representation < Google::Apis::Core::JsonRepresentation
16113
+ property :advanced_deployment_control, as: 'advancedDeploymentControl', class: Google::Apis::ComputeV1::ReservationAdvancedDeploymentControl, decorator: Google::Apis::ComputeV1::ReservationAdvancedDeploymentControl::Representation
16114
+
15951
16115
  property :aggregate_reservation, as: 'aggregateReservation', class: Google::Apis::ComputeV1::AllocationAggregateReservation, decorator: Google::Apis::ComputeV1::AllocationAggregateReservation::Representation
15952
16116
 
15953
16117
  property :commitment, as: 'commitment'
@@ -15980,6 +16144,13 @@ module Google
15980
16144
  end
15981
16145
  end
15982
16146
 
16147
+ class ReservationAdvancedDeploymentControl
16148
+ # @private
16149
+ class Representation < Google::Apis::Core::JsonRepresentation
16150
+ property :reservation_operational_mode, as: 'reservationOperationalMode'
16151
+ end
16152
+ end
16153
+
15983
16154
  class ReservationAffinity
15984
16155
  # @private
15985
16156
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -22037,6 +22037,57 @@ module Google
22037
22037
  execute_or_queue_command(command, &block)
22038
22038
  end
22039
22039
 
22040
+ # Requests to remove a peering from the specified network. Applicable only for
22041
+ # PeeringConnection with update_strategy=CONSENSUS.
22042
+ # @param [String] project
22043
+ # Project ID for this request.
22044
+ # @param [String] network
22045
+ # Name of the network resource to remove peering from.
22046
+ # @param [Google::Apis::ComputeV1::NetworksRequestRemovePeeringRequest] networks_request_remove_peering_request_object
22047
+ # @param [String] request_id
22048
+ # An optional request ID to identify requests. Specify a unique request ID so
22049
+ # that if you must retry your request, the server will know to ignore the
22050
+ # request if it has already been completed. For example, consider a situation
22051
+ # where you make an initial request and the request times out. If you make the
22052
+ # request again with the same request ID, the server can check if original
22053
+ # operation with the same request ID was received, and if so, will ignore the
22054
+ # second request. This prevents clients from accidentally creating duplicate
22055
+ # commitments. The request ID must be a valid UUID with the exception that zero
22056
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
22057
+ # @param [String] fields
22058
+ # Selector specifying which fields to include in a partial response.
22059
+ # @param [String] quota_user
22060
+ # Available to use for quota purposes for server-side applications. Can be any
22061
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
22062
+ # @param [String] user_ip
22063
+ # Legacy name for parameter that has been superseded by `quotaUser`.
22064
+ # @param [Google::Apis::RequestOptions] options
22065
+ # Request-specific options
22066
+ #
22067
+ # @yield [result, err] Result & error if block supplied
22068
+ # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
22069
+ # @yieldparam err [StandardError] error object if request failed
22070
+ #
22071
+ # @return [Google::Apis::ComputeV1::Operation]
22072
+ #
22073
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
22074
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
22075
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
22076
+ def request_network_remove_peering(project, network, networks_request_remove_peering_request_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
22077
+ command = make_simple_command(:post, 'projects/{project}/global/networks/{network}/requestRemovePeering', options)
22078
+ command.request_representation = Google::Apis::ComputeV1::NetworksRequestRemovePeeringRequest::Representation
22079
+ command.request_object = networks_request_remove_peering_request_object
22080
+ command.response_representation = Google::Apis::ComputeV1::Operation::Representation
22081
+ command.response_class = Google::Apis::ComputeV1::Operation
22082
+ command.params['project'] = project unless project.nil?
22083
+ command.params['network'] = network unless network.nil?
22084
+ command.query['requestId'] = request_id unless request_id.nil?
22085
+ command.query['fields'] = fields unless fields.nil?
22086
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
22087
+ command.query['userIp'] = user_ip unless user_ip.nil?
22088
+ execute_or_queue_command(command, &block)
22089
+ end
22090
+
22040
22091
  # Switches the network mode from auto subnet mode to custom subnet mode.
22041
22092
  # @param [String] project
22042
22093
  # Project ID for this request.
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.126.0
4
+ version: 0.128.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.126.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.128.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: