google-apis-compute_v1 0.125.0 → 0.127.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: 11254c7644423362a4f968811b7f8ba40f1856e3abfc56f2ec1c8c9ac21db3da
4
- data.tar.gz: '018252b20c6adb11fc5d8ace2792ea4950c108fd4c1459777806be6f52139e7c'
3
+ metadata.gz: b0320b9a254020a60618d22c82e586b83c82679c5bfe5c0eb6556bd50c2c38ad
4
+ data.tar.gz: 45a5a10bd4fff5814a740536ea78879170537918c3b190ffa40979d5d3282070
5
5
  SHA512:
6
- metadata.gz: c1a7764a16e37c2929d5c811980914d294227390d7bfa8bf964503d6975723f22b914f0c89113351f74974dcb73e684306809111f2aace6f6dc4e08fa99b45dd
7
- data.tar.gz: ffcd2dd1ca3e4e47094807bd8e292810b847e148c6d3f3c5dae4c4b7c718353cc97552334053e6c75d2d99143404639ba98264483cb67f174b90c03f59826718
6
+ metadata.gz: 4043d81746e5c725f0944b786697bab5e66b88dc677fcf5f1254353ac37fe8e4754bf617ac902a2763ea477f2f31b4ef0ccd4eadb11e471d1696889d05dd2d4c
7
+ data.tar.gz: ffbc575b9678d4323e0549409bf871aca49e40dafcec7b44182c891b66e7889d46bd1fdf2f31ed958619a4357ac31fdf6cfdb2f32b03a404da0a40a8df098b7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.127.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250729
6
+
7
+ ### v0.126.0 (2025-08-03)
8
+
9
+ * Regenerated from discovery document revision 20250728
10
+
3
11
  ### v0.125.0 (2025-07-20)
4
12
 
5
13
  * Regenerated from discovery document revision 20250717
@@ -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
@@ -3444,7 +3476,7 @@ module Google
3444
3476
  attr_accessor :max_utilization
3445
3477
 
3446
3478
  # Name of a custom utilization signal. The name must be 1-64 characters long and
3447
- # match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
3479
+ # match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
3448
3480
  # first character must be a lowercase letter, and all following characters must
3449
3481
  # be a dash, period, underscore, lowercase letter, or digit, except the last
3450
3482
  # character, which cannot be a dash, period, or underscore. For usage guidelines,
@@ -3727,11 +3759,16 @@ 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 This field is
3731
- # applicable to either: - A regional backend service with the service_protocol
3732
- # set to HTTP, HTTPS, HTTP2 or H2C, and load_balancing_scheme set to
3733
- # INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme
3734
- # set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If
3762
+ # about Maglev, see https://ai.google/research/pubs/pub44824 -
3763
+ # WEIGHTED_ROUND_ROBIN: Per-endpoint Weighted Round Robin Load Balancing using
3764
+ # weights computed from Backend reported Custom Metrics. If set, the Backend
3765
+ # Service responses are expected to contain non-standard HTTP response header
3766
+ # field Endpoint-Load-Metrics. The reported metrics to use for computing the
3767
+ # weights are specified via the customMetrics field. This field is applicable to
3768
+ # either: - A regional backend service with the service_protocol set to HTTP,
3769
+ # HTTPS, HTTP2 or H2C, and load_balancing_scheme set to INTERNAL_MANAGED. - A
3770
+ # global backend service with the load_balancing_scheme set to
3771
+ # INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If
3735
3772
  # sessionAffinity is not configured—that is, if session affinity remains at the
3736
3773
  # default value of NONE—then the default value for localityLbPolicy is
3737
3774
  # ROUND_ROBIN. If session affinity is set to a value other than NONE, then the
@@ -3789,6 +3826,11 @@ module Google
3789
3826
  # @return [Google::Apis::ComputeV1::OutlierDetection]
3790
3827
  attr_accessor :outlier_detection
3791
3828
 
3829
+ # Additional Backend Service parameters.
3830
+ # Corresponds to the JSON property `params`
3831
+ # @return [Google::Apis::ComputeV1::BackendServiceParams]
3832
+ attr_accessor :params
3833
+
3792
3834
  # Deprecated in favor of portName. The TCP port to connect on the backend. The
3793
3835
  # default value is 80. For internal passthrough Network Load Balancers and
3794
3836
  # external passthrough Network Load Balancers, omit port.
@@ -3939,6 +3981,7 @@ module Google
3939
3981
  @name = args[:name] if args.key?(:name)
3940
3982
  @network = args[:network] if args.key?(:network)
3941
3983
  @outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
3984
+ @params = args[:params] if args.key?(:params)
3942
3985
  @port = args[:port] if args.key?(:port)
3943
3986
  @port_name = args[:port_name] if args.key?(:port_name)
3944
3987
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -4366,7 +4409,7 @@ module Google
4366
4409
  alias_method :dry_run?, :dry_run
4367
4410
 
4368
4411
  # Name of a custom utilization signal. The name must be 1-64 characters long and
4369
- # match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means the
4412
+ # match the regular expression [a-z]([-_.a-z0-9]*[a-z0-9])? which means that the
4370
4413
  # first character must be a lowercase letter, and all following characters must
4371
4414
  # be a dash, period, underscore, lowercase letter, or digit, except the last
4372
4415
  # character, which cannot be a dash, period, or underscore. For usage guidelines,
@@ -5052,6 +5095,32 @@ module Google
5052
5095
  end
5053
5096
  end
5054
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
+
5055
5124
  #
5056
5125
  class BackendServiceReference
5057
5126
  include Google::Apis::Core::Hashable
@@ -20213,6 +20282,12 @@ module Google
20213
20282
  class Interconnect
20214
20283
  include Google::Apis::Core::Hashable
20215
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
+
20216
20291
  # Administrative status of the interconnect. When this is set to true, the
20217
20292
  # Interconnect is functional and can carry traffic. When set to false, no
20218
20293
  # packets can be carried over the interconnect and no BGP routes are exchanged
@@ -20222,6 +20297,11 @@ module Google
20222
20297
  attr_accessor :admin_enabled
20223
20298
  alias_method :admin_enabled?, :admin_enabled
20224
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
+
20225
20305
  # [Output only] List of features available for this Interconnect connection,
20226
20306
  # which can take one of the following values: - IF_MACSEC If present then the
20227
20307
  # Interconnect connection is provisioned on MACsec capable hardware ports. If
@@ -20444,7 +20524,9 @@ module Google
20444
20524
 
20445
20525
  # Update properties of this object
20446
20526
  def update!(**args)
20527
+ @aai_enabled = args[:aai_enabled] if args.key?(:aai_enabled)
20447
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)
20448
20530
  @available_features = args[:available_features] if args.key?(:available_features)
20449
20531
  @circuit_infos = args[:circuit_infos] if args.key?(:circuit_infos)
20450
20532
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -20478,6 +20560,104 @@ module Google
20478
20560
  end
20479
20561
  end
20480
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
+
20481
20661
  # Represents an Interconnect Attachment (VLAN) resource. You can use
20482
20662
  # Interconnect attachments (VLANS) to connect your Virtual Private Cloud
20483
20663
  # networks to your on-premises networks through an Interconnect. For more
@@ -28224,6 +28404,14 @@ module Google
28224
28404
  attr_accessor :auto_create_routes
28225
28405
  alias_method :auto_create_routes?, :auto_create_routes
28226
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
+
28227
28415
  # Indicates whether full mesh connectivity is created and managed automatically
28228
28416
  # between peered networks. Currently this field should always be true since
28229
28417
  # Google Compute Engine will automatically create and manage subnetwork routes
@@ -28303,6 +28491,12 @@ module Google
28303
28491
  # @return [String]
28304
28492
  attr_accessor :state_details
28305
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
+
28306
28500
  def initialize(**args)
28307
28501
  update!(**args)
28308
28502
  end
@@ -28310,6 +28504,7 @@ module Google
28310
28504
  # Update properties of this object
28311
28505
  def update!(**args)
28312
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)
28313
28508
  @exchange_subnet_routes = args[:exchange_subnet_routes] if args.key?(:exchange_subnet_routes)
28314
28509
  @export_custom_routes = args[:export_custom_routes] if args.key?(:export_custom_routes)
28315
28510
  @export_subnet_routes_with_public_ip = args[:export_subnet_routes_with_public_ip] if args.key?(:export_subnet_routes_with_public_ip)
@@ -28321,6 +28516,122 @@ module Google
28321
28516
  @stack_type = args[:stack_type] if args.key?(:stack_type)
28322
28517
  @state = args[:state] if args.key?(:state)
28323
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)
28324
28635
  end
28325
28636
  end
28326
28637
 
@@ -28964,6 +29275,25 @@ module Google
28964
29275
  end
28965
29276
  end
28966
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
+
28967
29297
  #
28968
29298
  class NetworksUpdatePeeringRequest
28969
29299
  include Google::Apis::Core::Hashable
@@ -35997,6 +36327,12 @@ module Google
35997
36327
  class Reservation
35998
36328
  include Google::Apis::Core::Hashable
35999
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
+
36000
36336
  # This reservation type is specified by total resource amounts (e.g. total count
36001
36337
  # of CPUs) and can account for multiple instance SKUs. In other words, one can
36002
36338
  # create instances of varying shapes against this reservation.
@@ -36148,6 +36484,7 @@ module Google
36148
36484
 
36149
36485
  # Update properties of this object
36150
36486
  def update!(**args)
36487
+ @advanced_deployment_control = args[:advanced_deployment_control] if args.key?(:advanced_deployment_control)
36151
36488
  @aggregate_reservation = args[:aggregate_reservation] if args.key?(:aggregate_reservation)
36152
36489
  @commitment = args[:commitment] if args.key?(:commitment)
36153
36490
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -36174,6 +36511,26 @@ module Google
36174
36511
  end
36175
36512
  end
36176
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
+
36177
36534
  # Specifies the reservations that this instance can consume from.
36178
36535
  class ReservationAffinity
36179
36536
  include Google::Apis::Core::Hashable
@@ -38225,17 +38582,18 @@ module Google
38225
38582
  class ResourcePolicyWorkloadPolicy
38226
38583
  include Google::Apis::Core::Hashable
38227
38584
 
38228
- #
38585
+ # Specifies the topology required to create a partition for VMs that have
38586
+ # interconnected GPUs.
38229
38587
  # Corresponds to the JSON property `acceleratorTopology`
38230
38588
  # @return [String]
38231
38589
  attr_accessor :accelerator_topology
38232
38590
 
38233
- #
38591
+ # Specifies the maximum distance between instances.
38234
38592
  # Corresponds to the JSON property `maxTopologyDistance`
38235
38593
  # @return [String]
38236
38594
  attr_accessor :max_topology_distance
38237
38595
 
38238
- #
38596
+ # Specifies the intent of the instance placement in the MIG.
38239
38597
  # Corresponds to the JSON property `type`
38240
38598
  # @return [String]
38241
38599
  attr_accessor :type
@@ -42836,7 +43194,9 @@ module Google
42836
43194
  # @return [String]
42837
43195
  attr_accessor :target
42838
43196
 
42839
- # Type of the redirect action.
43197
+ # Type of the redirect action. Possible values are: - GOOGLE_RECAPTCHA: redirect
43198
+ # to reCAPTCHA for manual challenge assessment. - EXTERNAL_302: redirect to a
43199
+ # different URL via a 302 response.
42840
43200
  # Corresponds to the JSON property `type`
42841
43201
  # @return [String]
42842
43202
  attr_accessor :type
@@ -43073,7 +43433,8 @@ module Google
43073
43433
  # service attachment. Each project or network has a connection limit. A given
43074
43434
  # service attachment can manage connections at either the project or network
43075
43435
  # level. Therefore, both the accept and reject lists for a given service
43076
- # attachment must contain either only projects or only networks.
43436
+ # attachment must contain either only projects or only networks or only
43437
+ # endpoints.
43077
43438
  # Corresponds to the JSON property `consumerAcceptLists`
43078
43439
  # @return [Array<Google::Apis::ComputeV1::ServiceAttachmentConsumerProjectLimit>]
43079
43440
  attr_accessor :consumer_accept_lists
@@ -43137,6 +43498,11 @@ module Google
43137
43498
  # @return [String]
43138
43499
  attr_accessor :kind
43139
43500
 
43501
+ # Metadata of the service attachment.
43502
+ # Corresponds to the JSON property `metadata`
43503
+ # @return [Hash<String,String>]
43504
+ attr_accessor :metadata
43505
+
43140
43506
  # Name of the resource. Provided by the client when the resource is created. The
43141
43507
  # name must be 1-63 characters long, and comply with RFC1035. Specifically, the
43142
43508
  # name must be 1-63 characters long and match the regular expression `[a-z]([-a-
@@ -43226,6 +43592,7 @@ module Google
43226
43592
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
43227
43593
  @id = args[:id] if args.key?(:id)
43228
43594
  @kind = args[:kind] if args.key?(:kind)
43595
+ @metadata = args[:metadata] if args.key?(:metadata)
43229
43596
  @name = args[:name] if args.key?(:name)
43230
43597
  @nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets)
43231
43598
  @producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule)
@@ -43409,7 +43776,8 @@ module Google
43409
43776
  class ServiceAttachmentConsumerProjectLimit
43410
43777
  include Google::Apis::Core::Hashable
43411
43778
 
43412
- # The value of the limit to set.
43779
+ # The value of the limit to set. For endpoint_url, the limit should be no more
43780
+ # than 1.
43413
43781
  # Corresponds to the JSON property `connectionLimit`
43414
43782
  # @return [Fixnum]
43415
43783
  attr_accessor :connection_limit
@@ -45826,7 +46194,7 @@ module Google
45826
46194
  # @return [String]
45827
46195
  attr_accessor :performance_provisioning_type
45828
46196
 
45829
- # Size, in GiB, of the storage pool. For more information about the size limits,
46197
+ # Size of the storage pool in GiB. For more information about the size limits,
45830
46198
  # see https://cloud.google.com/compute/docs/disks/storage-pools.
45831
46199
  # Corresponds to the JSON property `poolProvisionedCapacityGb`
45832
46200
  # @return [Fixnum]
@@ -45838,8 +46206,8 @@ module Google
45838
46206
  # @return [Fixnum]
45839
46207
  attr_accessor :pool_provisioned_iops
45840
46208
 
45841
- # Provisioned throughput of the storage pool. Only relevant if the storage pool
45842
- # type is hyperdisk-balanced or hyperdisk-throughput.
46209
+ # Provisioned throughput of the storage pool in MiB/s. Only relevant if the
46210
+ # storage pool type is hyperdisk-balanced or hyperdisk-throughput.
45843
46211
  # Corresponds to the JSON property `poolProvisionedThroughput`
45844
46212
  # @return [Fixnum]
45845
46213
  attr_accessor :pool_provisioned_throughput
@@ -46397,7 +46765,7 @@ module Google
46397
46765
  # @return [String]
46398
46766
  attr_accessor :last_resize_timestamp
46399
46767
 
46400
- # [Output Only] Maximum allowed aggregate disk size in gigabytes.
46768
+ # [Output Only] Maximum allowed aggregate disk size in GiB.
46401
46769
  # Corresponds to the JSON property `maxTotalProvisionedDiskCapacityGb`
46402
46770
  # @return [Fixnum]
46403
46771
  attr_accessor :max_total_provisioned_disk_capacity_gb
@@ -46416,7 +46784,7 @@ module Google
46416
46784
  # @return [Fixnum]
46417
46785
  attr_accessor :pool_used_iops
46418
46786
 
46419
- # [Output Only] Sum of all the disks' provisioned throughput in MB/s.
46787
+ # [Output Only] Sum of all the disks' provisioned throughput in MiB/s.
46420
46788
  # Corresponds to the JSON property `poolUsedThroughput`
46421
46789
  # @return [Fixnum]
46422
46790
  attr_accessor :pool_used_throughput
@@ -46426,8 +46794,8 @@ module Google
46426
46794
  # @return [Fixnum]
46427
46795
  attr_accessor :pool_user_written_bytes
46428
46796
 
46429
- # [Output Only] Sum of all the capacity provisioned in disks in this storage
46430
- # pool. A disk's provisioned capacity is the same as its total capacity.
46797
+ # [Output Only] Sum of all the disks' provisioned capacity (in GiB) in this
46798
+ # storage pool. A disk's provisioned capacity is the same as its total capacity.
46431
46799
  # Corresponds to the JSON property `totalProvisionedDiskCapacityGb`
46432
46800
  # @return [Fixnum]
46433
46801
  attr_accessor :total_provisioned_disk_capacity_gb
@@ -46437,9 +46805,9 @@ module Google
46437
46805
  # @return [Fixnum]
46438
46806
  attr_accessor :total_provisioned_disk_iops
46439
46807
 
46440
- # [Output Only] Sum of all the disks' provisioned throughput in MB/s, minus some
46441
- # amount that is allowed per disk that is not counted towards pool's throughput
46442
- # capacity.
46808
+ # [Output Only] Sum of all the disks' provisioned throughput in MiB/s, minus
46809
+ # some amount that is allowed per disk that is not counted towards pool's
46810
+ # throughput capacity.
46443
46811
  # Corresponds to the JSON property `totalProvisionedDiskThroughput`
46444
46812
  # @return [Fixnum]
46445
46813
  attr_accessor :total_provisioned_disk_throughput
@@ -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.125.0"
19
+ GEM_VERSION = "0.127.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 = "20250717"
25
+ REVISION = "20250729"
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
@@ -17726,6 +17897,7 @@ module Google
17726
17897
  property :fingerprint, :base64 => true, as: 'fingerprint'
17727
17898
  property :id, :numeric_string => true, as: 'id'
17728
17899
  property :kind, as: 'kind'
17900
+ hash :metadata, as: 'metadata'
17729
17901
  property :name, as: 'name'
17730
17902
  collection :nat_subnets, as: 'natSubnets'
17731
17903
  property :producer_forwarding_rule, as: 'producerForwardingRule'
@@ -7377,9 +7377,9 @@ module Google
7377
7377
  # Retrieves the specified Operations resource. Gets a list of operations by
7378
7378
  # making a `list()` request.
7379
7379
  # @param [String] operation
7380
- # Name of the Operations resource to return, or its unique numeric identifier.
7380
+ # Name of the Operations resource to return. Parent is derived from this field.
7381
7381
  # @param [String] parent_id
7382
- # Parent ID for this request.
7382
+ # Parent ID for this request. Not used. Parent is derived from resource_id.
7383
7383
  # @param [String] fields
7384
7384
  # Selector specifying which fields to include in a partial response.
7385
7385
  # @param [String] quota_user
@@ -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.
@@ -42425,6 +42476,10 @@ module Google
42425
42476
  # failure. The default value is false. For example, when partial success
42426
42477
  # behavior is enabled, aggregatedList for a single zone scope either returns all
42427
42478
  # resources in the zone or no resources, with an error code.
42479
+ # @param [String] service_project
42480
+ # The project id or project number in which the subnetwork is intended to be
42481
+ # used. Only applied for Shared VPC. See [Shared VPC documentation](https://
42482
+ # cloud.google.com/vpc/docs/shared-vpc/)
42428
42483
  # @param [String] fields
42429
42484
  # Selector specifying which fields to include in a partial response.
42430
42485
  # @param [String] quota_user
@@ -42444,7 +42499,7 @@ module Google
42444
42499
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
42445
42500
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
42446
42501
  # @raise [Google::Apis::AuthorizationError] Authorization is required
42447
- def list_subnetwork_usable(project, 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)
42502
+ def list_subnetwork_usable(project, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, service_project: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
42448
42503
  command = make_simple_command(:get, 'projects/{project}/aggregated/subnetworks/listUsable', options)
42449
42504
  command.response_representation = Google::Apis::ComputeV1::UsableSubnetworksAggregatedList::Representation
42450
42505
  command.response_class = Google::Apis::ComputeV1::UsableSubnetworksAggregatedList
@@ -42454,6 +42509,7 @@ module Google
42454
42509
  command.query['orderBy'] = order_by unless order_by.nil?
42455
42510
  command.query['pageToken'] = page_token unless page_token.nil?
42456
42511
  command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
42512
+ command.query['serviceProject'] = service_project unless service_project.nil?
42457
42513
  command.query['fields'] = fields unless fields.nil?
42458
42514
  command.query['quotaUser'] = quota_user unless quota_user.nil?
42459
42515
  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.125.0
4
+ version: 0.127.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.125.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.127.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: