google-apis-compute_alpha 0.122.0 → 0.123.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f450157de0277e2fb76b5e995bfb6bfc15f79173799cf14b0d3665ee349bbdd
4
- data.tar.gz: 4625d886c9586e924cd1bdd80e78275200dc1699026aff767b475c9f7e40f4d1
3
+ metadata.gz: 803ce17eddeea49b5831c549b2c27437e0818128d0d137ec53bfe80c9cd82e6a
4
+ data.tar.gz: b5d1adf0c1f75e3444b692595d13ea1c06c1e4bef8bf162591977e152421522a
5
5
  SHA512:
6
- metadata.gz: f9977cf63c93514dc71667c413ec2f11b199c11e7fe693b569ceae8d91e8a09b7e068f3a32e9a26c4452f6d80f3574af44dedca91353837419024348f8a11ee4
7
- data.tar.gz: d50cfe90248c1a00d2067d01c5735da7d217047f159b0ca0aa2d13a9df4e51d3ea5409c22d9e56e11f35ef0dd6b0ba56bd9c2a32f3f216ada1d72854eaea4491
6
+ metadata.gz: e06b51aa9d14d5130c62fa58f8aae11706a993e4f07c195f8faf55b593595c62516543b711cdff0996052ac2c67700411d030e900ea017304d502173af1ae00b
7
+ data.tar.gz: 4dc494b43fc024c8c3b53d3c7a7da7c5cb645fd3712e7b4b82aedeba88757dc9fe10ec98a363cb6cf4dd658f895ff079cda4739a539a89aeb5d9069eb2dcd04a
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
- ### v0.122.0 (2025-09-14)
3
+ ### v0.123.0 (2025-09-28)
4
4
 
5
- * Regenerated from discovery document revision 20250902
5
+ * Regenerated from discovery document revision 20250916
6
+
7
+ ### v0.122.0 (2025-09-21)
8
+
9
+ * Regenerated from discovery document revision 20250909
6
10
 
7
11
  ### v0.121.0 (2025-08-24)
8
12
 
@@ -663,6 +663,18 @@ module Google
663
663
  # @return [Fixnum]
664
664
  attr_accessor :id
665
665
 
666
+ # Reference to the source of external IPv4 addresses, like a
667
+ # PublicDelegatedPrefix (PDP) for BYOIP. The PDP must support enhanced IPv4
668
+ # allocations. Use one of the following formats to specify a PDP when reserving
669
+ # an external IPv4 address using BYOIP. - Full resource URL, as in https://www.
670
+ # googleapis.com/compute/v1/projects/projectId/regions/region /
671
+ # publicDelegatedPrefixes/pdp-name - Partial URL, as in - projects/projectId/
672
+ # regions/region/publicDelegatedPrefixes/pdp-name - regions/region/
673
+ # publicDelegatedPrefixes/pdp-name
674
+ # Corresponds to the JSON property `ipCollection`
675
+ # @return [String]
676
+ attr_accessor :ip_collection
677
+
666
678
  # The IP version that will be used by this address. Valid options are IPV4 or
667
679
  # IPV6.
668
680
  # Corresponds to the JSON property `ipVersion`
@@ -798,6 +810,7 @@ module Google
798
810
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
799
811
  @description = args[:description] if args.key?(:description)
800
812
  @id = args[:id] if args.key?(:id)
813
+ @ip_collection = args[:ip_collection] if args.key?(:ip_collection)
801
814
  @ip_version = args[:ip_version] if args.key?(:ip_version)
802
815
  @ipv6_endpoint_type = args[:ipv6_endpoint_type] if args.key?(:ipv6_endpoint_type)
803
816
  @kind = args[:kind] if args.key?(:kind)
@@ -13554,13 +13567,6 @@ module Google
13554
13567
  # @return [String]
13555
13568
  attr_accessor :target
13556
13569
 
13557
- # [PSC for VPC-hosted services only] Determines if clients are allowed to access
13558
- # the producer service via this PSC endpoint.
13559
- # Corresponds to the JSON property `trafficDisabled`
13560
- # @return [Boolean]
13561
- attr_accessor :traffic_disabled
13562
- alias_method :traffic_disabled?, :traffic_disabled
13563
-
13564
13570
  def initialize(**args)
13565
13571
  update!(**args)
13566
13572
  end
@@ -13606,7 +13612,6 @@ module Google
13606
13612
  @source_ip_ranges = args[:source_ip_ranges] if args.key?(:source_ip_ranges)
13607
13613
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
13608
13614
  @target = args[:target] if args.key?(:target)
13609
- @traffic_disabled = args[:traffic_disabled] if args.key?(:traffic_disabled)
13610
13615
  end
13611
13616
  end
13612
13617
 
@@ -35831,6 +35836,11 @@ module Google
35831
35836
  class NamedSet
35832
35837
  include Google::Apis::Core::Hashable
35833
35838
 
35839
+ # An optional description of named set.
35840
+ # Corresponds to the JSON property `description`
35841
+ # @return [String]
35842
+ attr_accessor :description
35843
+
35834
35844
  # CEL expressions that are comparable to constructs of this set's type (see
35835
35845
  # Policy Language).
35836
35846
  # Corresponds to the JSON property `elements`
@@ -35865,6 +35875,7 @@ module Google
35865
35875
 
35866
35876
  # Update properties of this object
35867
35877
  def update!(**args)
35878
+ @description = args[:description] if args.key?(:description)
35868
35879
  @elements = args[:elements] if args.key?(:elements)
35869
35880
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
35870
35881
  @name = args[:name] if args.key?(:name)
@@ -38163,6 +38174,13 @@ module Google
38163
38174
  # @return [Array<Google::Apis::ComputeAlpha::AliasIpRange>]
38164
38175
  attr_accessor :alias_ip_ranges
38165
38176
 
38177
+ # Optional. If true, DNS resolution will be enabled over this interface. Only
38178
+ # valid with network_attachment.
38179
+ # Corresponds to the JSON property `enableVpcScopedDns`
38180
+ # @return [Boolean]
38181
+ attr_accessor :enable_vpc_scoped_dns
38182
+ alias_method :enable_vpc_scoped_dns?, :enable_vpc_scoped_dns
38183
+
38166
38184
  # Fingerprint hash of contents stored in this network interface. This field will
38167
38185
  # be ignored when inserting an Instance or adding a NetworkInterface. An up-to-
38168
38186
  # date fingerprint must be provided in order to update the NetworkInterface. The
@@ -38305,6 +38323,7 @@ module Google
38305
38323
  def update!(**args)
38306
38324
  @access_configs = args[:access_configs] if args.key?(:access_configs)
38307
38325
  @alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
38326
+ @enable_vpc_scoped_dns = args[:enable_vpc_scoped_dns] if args.key?(:enable_vpc_scoped_dns)
38308
38327
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
38309
38328
  @igmp_query = args[:igmp_query] if args.key?(:igmp_query)
38310
38329
  @internal_ipv6_prefix_length = args[:internal_ipv6_prefix_length] if args.key?(:internal_ipv6_prefix_length)
@@ -39331,6 +39350,16 @@ module Google
39331
39350
  class NetworkPolicyTrafficClassificationRuleAction
39332
39351
  include Google::Apis::Core::Hashable
39333
39352
 
39353
+ # The traffic class that should be applied to the matching packet.
39354
+ # Corresponds to the JSON property `dscpMode`
39355
+ # @return [String]
39356
+ attr_accessor :dscp_mode
39357
+
39358
+ # Custom DSCP value from 0-63 range.
39359
+ # Corresponds to the JSON property `dscpValue`
39360
+ # @return [Fixnum]
39361
+ attr_accessor :dscp_value
39362
+
39334
39363
  # The field type could be one of: TRAFFIC_CLASS or DSCP.
39335
39364
  # Corresponds to the JSON property `fieldType`
39336
39365
  # @return [String]
@@ -39341,6 +39370,11 @@ module Google
39341
39370
  # @return [Fixnum]
39342
39371
  attr_accessor :field_value
39343
39372
 
39373
+ # The traffic class that should be applied to the matching packet.
39374
+ # Corresponds to the JSON property `trafficClass`
39375
+ # @return [String]
39376
+ attr_accessor :traffic_class
39377
+
39344
39378
  # Always "apply_traffic_classification" for traffic classification rules.
39345
39379
  # Corresponds to the JSON property `type`
39346
39380
  # @return [String]
@@ -39352,8 +39386,11 @@ module Google
39352
39386
 
39353
39387
  # Update properties of this object
39354
39388
  def update!(**args)
39389
+ @dscp_mode = args[:dscp_mode] if args.key?(:dscp_mode)
39390
+ @dscp_value = args[:dscp_value] if args.key?(:dscp_value)
39355
39391
  @field_type = args[:field_type] if args.key?(:field_type)
39356
39392
  @field_value = args[:field_value] if args.key?(:field_value)
39393
+ @traffic_class = args[:traffic_class] if args.key?(:traffic_class)
39357
39394
  @type = args[:type] if args.key?(:type)
39358
39395
  end
39359
39396
  end
@@ -40042,6 +40079,25 @@ module Google
40042
40079
  end
40043
40080
  end
40044
40081
 
40082
+ #
40083
+ class NetworksCancelRequestRemovePeeringRequest
40084
+ include Google::Apis::Core::Hashable
40085
+
40086
+ # Name of the peering, which should conform to RFC1035.
40087
+ # Corresponds to the JSON property `name`
40088
+ # @return [String]
40089
+ attr_accessor :name
40090
+
40091
+ def initialize(**args)
40092
+ update!(**args)
40093
+ end
40094
+
40095
+ # Update properties of this object
40096
+ def update!(**args)
40097
+ @name = args[:name] if args.key?(:name)
40098
+ end
40099
+ end
40100
+
40045
40101
  #
40046
40102
  class NetworksGetEffectiveFirewallsResponse
40047
40103
  include Google::Apis::Core::Hashable
@@ -45648,6 +45704,13 @@ module Google
45648
45704
  # @return [String]
45649
45705
  attr_accessor :description
45650
45706
 
45707
+ # [Output Only] Whether this PDP supports enhanced IPv4 allocations. Applicable
45708
+ # for IPv4 PDPs only.
45709
+ # Corresponds to the JSON property `enableEnhancedIpv4Allocation`
45710
+ # @return [Boolean]
45711
+ attr_accessor :enable_enhanced_ipv4_allocation
45712
+ alias_method :enable_enhanced_ipv4_allocation?, :enable_enhanced_ipv4_allocation
45713
+
45651
45714
  # Fingerprint of this resource. A hash of the contents stored in this object.
45652
45715
  # This field is used in optimistic locking. This field will be ignored when
45653
45716
  # inserting a new PublicDelegatedPrefix. An up-to-date fingerprint must be
@@ -45772,6 +45835,7 @@ module Google
45772
45835
  @byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
45773
45836
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
45774
45837
  @description = args[:description] if args.key?(:description)
45838
+ @enable_enhanced_ipv4_allocation = args[:enable_enhanced_ipv4_allocation] if args.key?(:enable_enhanced_ipv4_allocation)
45775
45839
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
45776
45840
  @id = args[:id] if args.key?(:id)
45777
45841
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
@@ -46053,6 +46117,13 @@ module Google
46053
46117
  # @return [String]
46054
46118
  attr_accessor :description
46055
46119
 
46120
+ # [Output Only] Whether this PDP supports enhanced IPv4 allocations. Applicable
46121
+ # for IPv4 PDPs only.
46122
+ # Corresponds to the JSON property `enableEnhancedIpv4Allocation`
46123
+ # @return [Boolean]
46124
+ attr_accessor :enable_enhanced_ipv4_allocation
46125
+ alias_method :enable_enhanced_ipv4_allocation?, :enable_enhanced_ipv4_allocation
46126
+
46056
46127
  # The IP address range, in CIDR format, represented by this sub public delegated
46057
46128
  # prefix.
46058
46129
  # Corresponds to the JSON property `ipCidrRange`
@@ -46108,6 +46179,7 @@ module Google
46108
46179
  @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
46109
46180
  @delegatee_project = args[:delegatee_project] if args.key?(:delegatee_project)
46110
46181
  @description = args[:description] if args.key?(:description)
46182
+ @enable_enhanced_ipv4_allocation = args[:enable_enhanced_ipv4_allocation] if args.key?(:enable_enhanced_ipv4_allocation)
46111
46183
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
46112
46184
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
46113
46185
  @is_address = args[:is_address] if args.key?(:is_address)
@@ -54249,6 +54321,14 @@ module Google
54249
54321
  # @return [String]
54250
54322
  attr_accessor :ipv6_nexthop_address
54251
54323
 
54324
+ # The linked custom hardware resource. The URI of the custom hardware link
54325
+ # attachment is where you will establish the BGP session from the Cloud Router.
54326
+ # This link attachment must reside in the same subnetwork as the associated
54327
+ # router interface.
54328
+ # Corresponds to the JSON property `linkedCustomHardware`
54329
+ # @return [String]
54330
+ attr_accessor :linked_custom_hardware
54331
+
54252
54332
  # [Output Only] The resource that configures and manages this BGP peer. -
54253
54333
  # MANAGED_BY_USER is the default value and can be managed by you or other users -
54254
54334
  # MANAGED_BY_ATTACHMENT is a BGP peer that is configured and managed by Cloud
@@ -54327,6 +54407,7 @@ module Google
54327
54407
  @ip_address = args[:ip_address] if args.key?(:ip_address)
54328
54408
  @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
54329
54409
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
54410
+ @linked_custom_hardware = args[:linked_custom_hardware] if args.key?(:linked_custom_hardware)
54330
54411
  @management_type = args[:management_type] if args.key?(:management_type)
54331
54412
  @md5_authentication_key_name = args[:md5_authentication_key_name] if args.key?(:md5_authentication_key_name)
54332
54413
  @name = args[:name] if args.key?(:name)
@@ -55194,6 +55275,13 @@ module Google
55194
55275
  # @return [String]
55195
55276
  attr_accessor :ipv6_nexthop_address
55196
55277
 
55278
+ # The URI of the linked custom hardware resource, CustomHardwareLinkAttachment.
55279
+ # This CustomHardwareLinkAttachment resource is the one that will establish the
55280
+ # BGP session from the Cloud Router.
55281
+ # Corresponds to the JSON property `linkedCustomHardware`
55282
+ # @return [String]
55283
+ attr_accessor :linked_custom_hardware
55284
+
55197
55285
  # URL of the VPN tunnel that this BGP peer controls.
55198
55286
  # Corresponds to the JSON property `linkedVpnTunnel`
55199
55287
  # @return [String]
@@ -55277,6 +55365,7 @@ module Google
55277
55365
  @ip_address = args[:ip_address] if args.key?(:ip_address)
55278
55366
  @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
55279
55367
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
55368
+ @linked_custom_hardware = args[:linked_custom_hardware] if args.key?(:linked_custom_hardware)
55280
55369
  @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
55281
55370
  @md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
55282
55371
  @name = args[:name] if args.key?(:name)
@@ -59883,7 +59972,7 @@ module Google
59883
59972
 
59884
59973
  # Represents a Persistent Disk Snapshot resource. You can use snapshots to back
59885
59974
  # up data on a regular interval. For more information, read Creating persistent
59886
- # disk snapshots. LINT.IfChange
59975
+ # disk snapshots.
59887
59976
  class Snapshot
59888
59977
  include Google::Apis::Core::Hashable
59889
59978
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeAlpha
18
18
  # Version of the google-apis-compute_alpha gem
19
- GEM_VERSION = "0.122.0"
19
+ GEM_VERSION = "0.123.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250902"
25
+ REVISION = "20250916"
26
26
  end
27
27
  end
28
28
  end
@@ -5164,6 +5164,12 @@ module Google
5164
5164
  include Google::Apis::Core::JsonObjectSupport
5165
5165
  end
5166
5166
 
5167
+ class NetworksCancelRequestRemovePeeringRequest
5168
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5169
+
5170
+ include Google::Apis::Core::JsonObjectSupport
5171
+ end
5172
+
5167
5173
  class NetworksGetEffectiveFirewallsResponse
5168
5174
  class Representation < Google::Apis::Core::JsonRepresentation; end
5169
5175
 
@@ -9884,6 +9890,7 @@ module Google
9884
9890
  property :creation_timestamp, as: 'creationTimestamp'
9885
9891
  property :description, as: 'description'
9886
9892
  property :id, :numeric_string => true, as: 'id'
9893
+ property :ip_collection, as: 'ipCollection'
9887
9894
  property :ip_version, as: 'ipVersion'
9888
9895
  property :ipv6_endpoint_type, as: 'ipv6EndpointType'
9889
9896
  property :kind, as: 'kind'
@@ -12839,7 +12846,6 @@ module Google
12839
12846
  collection :source_ip_ranges, as: 'sourceIpRanges'
12840
12847
  property :subnetwork, as: 'subnetwork'
12841
12848
  property :target, as: 'target'
12842
- property :traffic_disabled, as: 'trafficDisabled'
12843
12849
  end
12844
12850
  end
12845
12851
 
@@ -18474,6 +18480,7 @@ module Google
18474
18480
  class NamedSet
18475
18481
  # @private
18476
18482
  class Representation < Google::Apis::Core::JsonRepresentation
18483
+ property :description, as: 'description'
18477
18484
  collection :elements, as: 'elements', class: Google::Apis::ComputeAlpha::Expr, decorator: Google::Apis::ComputeAlpha::Expr::Representation
18478
18485
 
18479
18486
  property :fingerprint, :base64 => true, as: 'fingerprint'
@@ -19054,6 +19061,7 @@ module Google
19054
19061
 
19055
19062
  collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeAlpha::AliasIpRange, decorator: Google::Apis::ComputeAlpha::AliasIpRange::Representation
19056
19063
 
19064
+ property :enable_vpc_scoped_dns, as: 'enableVpcScopedDns'
19057
19065
  property :fingerprint, :base64 => true, as: 'fingerprint'
19058
19066
  property :igmp_query, as: 'igmpQuery'
19059
19067
  property :internal_ipv6_prefix_length, as: 'internalIpv6PrefixLength'
@@ -19327,8 +19335,11 @@ module Google
19327
19335
  class NetworkPolicyTrafficClassificationRuleAction
19328
19336
  # @private
19329
19337
  class Representation < Google::Apis::Core::JsonRepresentation
19338
+ property :dscp_mode, as: 'dscpMode'
19339
+ property :dscp_value, as: 'dscpValue'
19330
19340
  property :field_type, as: 'fieldType'
19331
19341
  property :field_value, as: 'fieldValue'
19342
+ property :traffic_class, as: 'trafficClass'
19332
19343
  property :type, as: 'type'
19333
19344
  end
19334
19345
  end
@@ -19492,6 +19503,13 @@ module Google
19492
19503
  end
19493
19504
  end
19494
19505
 
19506
+ class NetworksCancelRequestRemovePeeringRequest
19507
+ # @private
19508
+ class Representation < Google::Apis::Core::JsonRepresentation
19509
+ property :name, as: 'name'
19510
+ end
19511
+ end
19512
+
19495
19513
  class NetworksGetEffectiveFirewallsResponse
19496
19514
  # @private
19497
19515
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20952,6 +20970,7 @@ module Google
20952
20970
  property :byoip_api_version, as: 'byoipApiVersion'
20953
20971
  property :creation_timestamp, as: 'creationTimestamp'
20954
20972
  property :description, as: 'description'
20973
+ property :enable_enhanced_ipv4_allocation, as: 'enableEnhancedIpv4Allocation'
20955
20974
  property :fingerprint, :base64 => true, as: 'fingerprint'
20956
20975
  property :id, :numeric_string => true, as: 'id'
20957
20976
  property :ip_cidr_range, as: 'ipCidrRange'
@@ -21042,6 +21061,7 @@ module Google
21042
21061
  property :allocatable_prefix_length, as: 'allocatablePrefixLength'
21043
21062
  property :delegatee_project, as: 'delegateeProject'
21044
21063
  property :description, as: 'description'
21064
+ property :enable_enhanced_ipv4_allocation, as: 'enableEnhancedIpv4Allocation'
21045
21065
  property :ip_cidr_range, as: 'ipCidrRange'
21046
21066
  property :ipv6_access_type, as: 'ipv6AccessType'
21047
21067
  property :is_address, as: 'isAddress'
@@ -23208,6 +23228,7 @@ module Google
23208
23228
  property :ip_address, as: 'ipAddress'
23209
23229
  property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
23210
23230
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
23231
+ property :linked_custom_hardware, as: 'linkedCustomHardware'
23211
23232
  property :management_type, as: 'managementType'
23212
23233
  property :md5_authentication_key_name, as: 'md5AuthenticationKeyName'
23213
23234
  property :name, as: 'name'
@@ -23406,6 +23427,7 @@ module Google
23406
23427
  property :ip_address, as: 'ipAddress'
23407
23428
  property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
23408
23429
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
23430
+ property :linked_custom_hardware, as: 'linkedCustomHardware'
23409
23431
  property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
23410
23432
  property :md5_auth_enabled, as: 'md5AuthEnabled'
23411
23433
  property :name, as: 'name'
@@ -4829,7 +4829,7 @@ module Google
4829
4829
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4830
4830
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4831
4831
  # @raise [Google::Apis::AuthorizationError] Authorization is required
4832
- def update_disk_kmskey(project, zone, disk, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
4832
+ def update_disk_kms_key(project, zone, disk, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
4833
4833
  command = make_simple_command(:post, 'projects/{project}/zones/{zone}/disks/{disk}/updateKmsKey', options)
4834
4834
  command.response_representation = Google::Apis::ComputeAlpha::Operation::Representation
4835
4835
  command.response_class = Google::Apis::ComputeAlpha::Operation
@@ -25794,6 +25794,58 @@ module Google
25794
25794
  execute_or_queue_command(command, &block)
25795
25795
  end
25796
25796
 
25797
+ # Cancel requests to remove a peering from the specified network. Applicable
25798
+ # only for PeeringConnection with update_strategy=CONSENSUS. Cancels a request
25799
+ # to remove a peering from the specified network.
25800
+ # @param [String] project
25801
+ # Project ID for this request.
25802
+ # @param [String] network
25803
+ # Name of the network resource to remove peering from.
25804
+ # @param [Google::Apis::ComputeAlpha::NetworksCancelRequestRemovePeeringRequest] networks_cancel_request_remove_peering_request_object
25805
+ # @param [String] request_id
25806
+ # An optional request ID to identify requests. Specify a unique request ID so
25807
+ # that if you must retry your request, the server will know to ignore the
25808
+ # request if it has already been completed. For example, consider a situation
25809
+ # where you make an initial request and the request times out. If you make the
25810
+ # request again with the same request ID, the server can check if original
25811
+ # operation with the same request ID was received, and if so, will ignore the
25812
+ # second request. This prevents clients from accidentally creating duplicate
25813
+ # commitments. The request ID must be a valid UUID with the exception that zero
25814
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
25815
+ # @param [String] fields
25816
+ # Selector specifying which fields to include in a partial response.
25817
+ # @param [String] quota_user
25818
+ # Available to use for quota purposes for server-side applications. Can be any
25819
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
25820
+ # @param [String] user_ip
25821
+ # Legacy name for parameter that has been superseded by `quotaUser`.
25822
+ # @param [Google::Apis::RequestOptions] options
25823
+ # Request-specific options
25824
+ #
25825
+ # @yield [result, err] Result & error if block supplied
25826
+ # @yieldparam result [Google::Apis::ComputeAlpha::Operation] parsed result object
25827
+ # @yieldparam err [StandardError] error object if request failed
25828
+ #
25829
+ # @return [Google::Apis::ComputeAlpha::Operation]
25830
+ #
25831
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
25832
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
25833
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
25834
+ def cancel_network_request_remove_peering(project, network, networks_cancel_request_remove_peering_request_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
25835
+ command = make_simple_command(:post, 'projects/{project}/global/networks/{network}/cancelRequestRemovePeering', options)
25836
+ command.request_representation = Google::Apis::ComputeAlpha::NetworksCancelRequestRemovePeeringRequest::Representation
25837
+ command.request_object = networks_cancel_request_remove_peering_request_object
25838
+ command.response_representation = Google::Apis::ComputeAlpha::Operation::Representation
25839
+ command.response_class = Google::Apis::ComputeAlpha::Operation
25840
+ command.params['project'] = project unless project.nil?
25841
+ command.params['network'] = network unless network.nil?
25842
+ command.query['requestId'] = request_id unless request_id.nil?
25843
+ command.query['fields'] = fields unless fields.nil?
25844
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
25845
+ command.query['userIp'] = user_ip unless user_ip.nil?
25846
+ execute_or_queue_command(command, &block)
25847
+ end
25848
+
25797
25849
  # Deletes the specified network.
25798
25850
  # @param [String] project
25799
25851
  # Project ID for this request.
@@ -28886,6 +28938,8 @@ module Google
28886
28938
  # second request. This prevents clients from accidentally creating duplicate
28887
28939
  # commitments. The request ID must be a valid UUID with the exception that zero
28888
28940
  # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
28941
+ # @param [String] update_mask
28942
+ # Indicates fields to be cleared as part of this request.
28889
28943
  # @param [String] fields
28890
28944
  # Selector specifying which fields to include in a partial response.
28891
28945
  # @param [String] quota_user
@@ -28905,7 +28959,7 @@ module Google
28905
28959
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
28906
28960
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
28907
28961
  # @raise [Google::Apis::AuthorizationError] Authorization is required
28908
- def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
28962
+ def patch_organization_security_policy(security_policy, security_policy_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
28909
28963
  command = make_simple_command(:patch, 'locations/global/securityPolicies/{securityPolicy}', options)
28910
28964
  command.request_representation = Google::Apis::ComputeAlpha::SecurityPolicy::Representation
28911
28965
  command.request_object = security_policy_object
@@ -28913,6 +28967,7 @@ module Google
28913
28967
  command.response_class = Google::Apis::ComputeAlpha::Operation
28914
28968
  command.params['securityPolicy'] = security_policy unless security_policy.nil?
28915
28969
  command.query['requestId'] = request_id unless request_id.nil?
28970
+ command.query['updateMask'] = update_mask unless update_mask.nil?
28916
28971
  command.query['fields'] = fields unless fields.nil?
28917
28972
  command.query['quotaUser'] = quota_user unless quota_user.nil?
28918
28973
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -28936,6 +28991,8 @@ module Google
28936
28991
  # second request. This prevents clients from accidentally creating duplicate
28937
28992
  # commitments. The request ID must be a valid UUID with the exception that zero
28938
28993
  # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
28994
+ # @param [String] update_mask
28995
+ # Indicates fields to be cleared as part of this request.
28939
28996
  # @param [String] fields
28940
28997
  # Selector specifying which fields to include in a partial response.
28941
28998
  # @param [String] quota_user
@@ -28955,7 +29012,7 @@ module Google
28955
29012
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
28956
29013
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
28957
29014
  # @raise [Google::Apis::AuthorizationError] Authorization is required
28958
- def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
29015
+ def patch_organization_security_policy_rule(security_policy, security_policy_rule_object = nil, priority: nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
28959
29016
  command = make_simple_command(:post, 'locations/global/securityPolicies/{securityPolicy}/patchRule', options)
28960
29017
  command.request_representation = Google::Apis::ComputeAlpha::SecurityPolicyRule::Representation
28961
29018
  command.request_object = security_policy_rule_object
@@ -28964,6 +29021,7 @@ module Google
28964
29021
  command.params['securityPolicy'] = security_policy unless security_policy.nil?
28965
29022
  command.query['priority'] = priority unless priority.nil?
28966
29023
  command.query['requestId'] = request_id unless request_id.nil?
29024
+ command.query['updateMask'] = update_mask unless update_mask.nil?
28967
29025
  command.query['fields'] = fields unless fields.nil?
28968
29026
  command.query['quotaUser'] = quota_user unless quota_user.nil?
28969
29027
  command.query['userIp'] = user_ip unless user_ip.nil?
@@ -30123,7 +30181,14 @@ module Google
30123
30181
  execute_or_queue_command(command, &block)
30124
30182
  end
30125
30183
 
30126
- # Moves a persistent disk from one zone to another.
30184
+ # Starting September 29, 2025, you can't use the moveDisk API on new projects.
30185
+ # To move a disk to a different region or zone, follow the steps in [Change the
30186
+ # location of a disk](https://`$universe.dns_names.final_documentation_domain`/
30187
+ # compute/docs/disks/migrate-to-hyperdisk#migrate-to-hd). Projects that already
30188
+ # use the moveDisk API can continue usage until September 29, 2026. Starting
30189
+ # November 1, 2025, API responses will include a warning message in the response
30190
+ # body about the upcoming deprecation. You can skip the message to continue
30191
+ # using the service without interruption.
30127
30192
  # @param [String] project
30128
30193
  # Project ID for this request.
30129
30194
  # @param [Google::Apis::ComputeAlpha::DiskMoveRequest] disk_move_request_object
@@ -42644,8 +42709,8 @@ module Google
42644
42709
  execute_or_queue_command(command, &block)
42645
42710
  end
42646
42711
 
42647
- # Retrieves an aggregated list of network policies. To prevent failure, Google
42648
- # recommends that you set the `returnPartialSuccess` parameter to `true`.
42712
+ # Retrieves an aggregated list of network policies. To prevent failure, it's
42713
+ # recommended that you set the `returnPartialSuccess` parameter to `true`.
42649
42714
  # @param [String] project
42650
42715
  # Project ID for this request.
42651
42716
  # @param [String] filter
@@ -43129,7 +43194,8 @@ module Google
43129
43194
  # Name of the network policy resource to update.
43130
43195
  # @param [Google::Apis::ComputeAlpha::NetworkPolicyTrafficClassificationRule] network_policy_traffic_classification_rule_object
43131
43196
  # @param [Fixnum] priority
43132
- # The priority of the rule to patch.
43197
+ # The priority of the traffic classification rule to patch. Only rules with a
43198
+ # priority value between 1 and 2147482647 (inclusive) can be patched.
43133
43199
  # @param [String] request_id
43134
43200
  # An optional request ID to identify requests. Specify a unique request ID so
43135
43201
  # that if you must retry your request, the server will know to ignore the
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.122.0
4
+ version: 0.123.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.122.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.123.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
62
62
  rdoc_options: []
63
63
  require_paths: