google-apis-compute_v1 0.96.0 → 0.98.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81070ba0b83873016a0221a3a538f1f0fd63188e20fdaf558a40f634f461d504
4
- data.tar.gz: eb6a4aab37465f86d70ec9400d1f67f57c7aa3e27edad9b6037b449e0de6061c
3
+ metadata.gz: 38481f5a49e66167520e934f2af1e35099a67b7c2101f2e052372bbd67388ac6
4
+ data.tar.gz: 0f5a3b221aaea3b706fa199fe86a81e261d4a8f043f8f35791bb4c05b7682acd
5
5
  SHA512:
6
- metadata.gz: b9853dbb34493083e0501f2835e8a9e7cbe4c5bf6de753491dc265015e99a2380d845b55059176cbb157f26e2a487496e1281ef4f2f6c1316cc426fb56f68685
7
- data.tar.gz: d33e04a9037edac789145b20f2a7b474bcf9078484ed86012ce4243887e7227aaa63f65e03bda4db619731ef56fb7f4d2c99ea29c6a45fad5a53212a5551bc59
6
+ metadata.gz: a74f5ac89841b105935aebc2e7d4d721531eb16b13ed71adb150897bf939505264e0db18b2002ceaba998ec0e5750eecf23dab169fd04e185f411f4188429002
7
+ data.tar.gz: 6cf2332d2e85d10446d141986666df86fc07c57e944d3260dcd7e6f7c59dd1955963a446018598a06cc3889576847ea6e743637dcf031f4cce78dab61207fe22
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.98.0 (2024-05-26)
4
+
5
+ * Regenerated from discovery document revision 20240519
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.97.0 (2024-04-28)
9
+
10
+ * Regenerated from discovery document revision 20240421
11
+
3
12
  ### v0.96.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240407
@@ -561,7 +561,7 @@ module Google
561
561
 
562
562
  # The DNS domain name for the public PTR record. You can set this field only if
563
563
  # the `setPublicPtr` field is enabled in accessConfig. If this field is
564
- # unspecified in ipv6AccessConfig, a default PTR record will be createc for
564
+ # unspecified in ipv6AccessConfig, a default PTR record will be created for
565
565
  # first IP in associated external IPv6 range.
566
566
  # Corresponds to the JSON property `publicPtrDomainName`
567
567
  # @return [String]
@@ -1401,7 +1401,6 @@ module Google
1401
1401
  end
1402
1402
 
1403
1403
  # This reservation type allows to pre allocate specific instance configuration.
1404
- # Next ID: 6
1405
1404
  class AllocationSpecificSkuReservation
1406
1405
  include Google::Apis::Core::Hashable
1407
1406
 
@@ -1494,8 +1493,10 @@ module Google
1494
1493
  # the disk or when you attach the disk to a virtual machine instance. If you do
1495
1494
  # not provide an encryption key, then the disk will be encrypted using an
1496
1495
  # automatically generated key and you do not need to provide a key to use the
1497
- # disk later. Instance templates do not store customer-supplied encryption keys,
1498
- # so you cannot use your own keys to encrypt disks in a managed instance group.
1496
+ # disk later. Note: Instance templates do not store customer-supplied encryption
1497
+ # keys, so you cannot use your own keys to encrypt disks in a managed instance
1498
+ # group. You cannot create VMs that have disks with customer-supplied keys using
1499
+ # the bulk insert method.
1499
1500
  # Corresponds to the JSON property `diskEncryptionKey`
1500
1501
  # @return [Google::Apis::ComputeV1::CustomerEncryptionKey]
1501
1502
  attr_accessor :disk_encryption_key
@@ -1891,25 +1892,6 @@ module Google
1891
1892
  end
1892
1893
  end
1893
1894
 
1894
- # This is deprecated and has no effect. Do not use.
1895
- class AuthorizationLoggingOptions
1896
- include Google::Apis::Core::Hashable
1897
-
1898
- # This is deprecated and has no effect. Do not use.
1899
- # Corresponds to the JSON property `permissionType`
1900
- # @return [String]
1901
- attr_accessor :permission_type
1902
-
1903
- def initialize(**args)
1904
- update!(**args)
1905
- end
1906
-
1907
- # Update properties of this object
1908
- def update!(**args)
1909
- @permission_type = args[:permission_type] if args.key?(:permission_type)
1910
- end
1911
- end
1912
-
1913
1895
  # Represents an Autoscaler resource. Google Compute Engine has two Autoscaler
1914
1896
  # resources: * [Zonal](/compute/docs/reference/rest/v1/autoscalers) * [Regional](
1915
1897
  # /compute/docs/reference/rest/v1/regionAutoscalers) Use autoscalers to
@@ -6315,6 +6297,16 @@ module Google
6315
6297
  class Disk
6316
6298
  include Google::Apis::Core::Hashable
6317
6299
 
6300
+ # The access mode of the disk. - READ_WRITE_SINGLE: The default AccessMode,
6301
+ # means the disk can be attached to single instance in RW mode. -
6302
+ # READ_WRITE_MANY: The AccessMode means the disk can be attached to multiple
6303
+ # instances in RW mode. - READ_ONLY_MANY: The AccessMode means the disk can be
6304
+ # attached to multiple instances in RO mode. The AccessMode is only valid for
6305
+ # Hyperdisk disk types.
6306
+ # Corresponds to the JSON property `accessMode`
6307
+ # @return [String]
6308
+ attr_accessor :access_mode
6309
+
6318
6310
  # The architecture of the disk. Valid values are ARM64 or X86_64.
6319
6311
  # Corresponds to the JSON property `architecture`
6320
6312
  # @return [String]
@@ -6674,6 +6666,7 @@ module Google
6674
6666
 
6675
6667
  # Update properties of this object
6676
6668
  def update!(**args)
6669
+ @access_mode = args[:access_mode] if args.key?(:access_mode)
6677
6670
  @architecture = args[:architecture] if args.key?(:architecture)
6678
6671
  @async_primary_disk = args[:async_primary_disk] if args.key?(:async_primary_disk)
6679
6672
  @async_secondary_disks = args[:async_secondary_disks] if args.key?(:async_secondary_disks)
@@ -9636,6 +9629,17 @@ module Google
9636
9629
  # @return [Fixnum]
9637
9630
  attr_accessor :id
9638
9631
 
9632
+ # Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP in
9633
+ # EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode. Use one of the following formats
9634
+ # to specify a sub-PDP when creating an IPv6 NetLB forwarding rule using BYOIP:
9635
+ # Full resource URL, as in https://www.googleapis.com/compute/v1/projects/
9636
+ # project_id/regions/region /publicDelegatedPrefixes/sub-pdp-name Partial URL,
9637
+ # as in: - projects/project_id/regions/region/publicDelegatedPrefixes/sub-pdp-
9638
+ # name - regions/region/publicDelegatedPrefixes/sub-pdp-name
9639
+ # Corresponds to the JSON property `ipCollection`
9640
+ # @return [String]
9641
+ attr_accessor :ip_collection
9642
+
9639
9643
  # The IP Version that will be used by this forwarding rule. Valid options are
9640
9644
  # IPV4 or IPV6.
9641
9645
  # Corresponds to the JSON property `ipVersion`
@@ -9880,6 +9884,7 @@ module Google
9880
9884
  @description = args[:description] if args.key?(:description)
9881
9885
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
9882
9886
  @id = args[:id] if args.key?(:id)
9887
+ @ip_collection = args[:ip_collection] if args.key?(:ip_collection)
9883
9888
  @ip_version = args[:ip_version] if args.key?(:ip_version)
9884
9889
  @is_mirroring_collector = args[:is_mirroring_collector] if args.key?(:is_mirroring_collector)
9885
9890
  @kind = args[:kind] if args.key?(:kind)
@@ -10752,6 +10757,7 @@ module Google
10752
10757
  attr_accessor :proxy_header
10753
10758
 
10754
10759
  # The request path of the HTTP/2 health check request. The default value is /.
10760
+ # Must comply with RFC3986.
10755
10761
  # Corresponds to the JSON property `requestPath`
10756
10762
  # @return [String]
10757
10763
  attr_accessor :request_path
@@ -10834,6 +10840,7 @@ module Google
10834
10840
  attr_accessor :proxy_header
10835
10841
 
10836
10842
  # The request path of the HTTP health check request. The default value is /.
10843
+ # Must comply with RFC3986.
10837
10844
  # Corresponds to the JSON property `requestPath`
10838
10845
  # @return [String]
10839
10846
  attr_accessor :request_path
@@ -10916,6 +10923,7 @@ module Google
10916
10923
  attr_accessor :proxy_header
10917
10924
 
10918
10925
  # The request path of the HTTPS health check request. The default value is /.
10926
+ # Must comply with RFC3986.
10919
10927
  # Corresponds to the JSON property `requestPath`
10920
10928
  # @return [String]
10921
10929
  attr_accessor :request_path
@@ -17161,6 +17169,9 @@ module Google
17161
17169
  attr_accessor :labels
17162
17170
 
17163
17171
  # The machine type to use for instances that are created from these properties.
17172
+ # This field only accept machine types name. e.g. n2-standard-4 and does not
17173
+ # accept machine type full or partial url. e.g. projects/my-l7ilb-project/zones/
17174
+ # us-central1-a/machineTypes/n2-standard-4 will throw INTERNAL_ERROR.
17164
17175
  # Corresponds to the JSON property `machineType`
17165
17176
  # @return [String]
17166
17177
  attr_accessor :machine_type
@@ -21698,11 +21709,6 @@ module Google
21698
21709
  class LogConfigCloudAuditOptions
21699
21710
  include Google::Apis::Core::Hashable
21700
21711
 
21701
- # This is deprecated and has no effect. Do not use.
21702
- # Corresponds to the JSON property `authorizationLoggingOptions`
21703
- # @return [Google::Apis::ComputeV1::AuthorizationLoggingOptions]
21704
- attr_accessor :authorization_logging_options
21705
-
21706
21712
  # This is deprecated and has no effect. Do not use.
21707
21713
  # Corresponds to the JSON property `logName`
21708
21714
  # @return [String]
@@ -21714,7 +21720,6 @@ module Google
21714
21720
 
21715
21721
  # Update properties of this object
21716
21722
  def update!(**args)
21717
- @authorization_logging_options = args[:authorization_logging_options] if args.key?(:authorization_logging_options)
21718
21723
  @log_name = args[:log_name] if args.key?(:log_name)
21719
21724
  end
21720
21725
  end
@@ -25591,6 +25596,12 @@ module Google
25591
25596
  # @return [String]
25592
25597
  attr_accessor :location_hint
25593
25598
 
25599
+ # Specifies the frequency of planned maintenance events. The accepted values are:
25600
+ # `AS_NEEDED` and `RECURRENT`.
25601
+ # Corresponds to the JSON property `maintenanceInterval`
25602
+ # @return [String]
25603
+ attr_accessor :maintenance_interval
25604
+
25594
25605
  # Specifies how to handle instances when a node in the group undergoes
25595
25606
  # maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or
25596
25607
  # MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information,
@@ -25660,6 +25671,7 @@ module Google
25660
25671
  @id = args[:id] if args.key?(:id)
25661
25672
  @kind = args[:kind] if args.key?(:kind)
25662
25673
  @location_hint = args[:location_hint] if args.key?(:location_hint)
25674
+ @maintenance_interval = args[:maintenance_interval] if args.key?(:maintenance_interval)
25663
25675
  @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
25664
25676
  @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
25665
25677
  @name = args[:name] if args.key?(:name)
@@ -26048,6 +26060,11 @@ module Google
26048
26060
  # @return [Google::Apis::ComputeV1::InstanceConsumptionInfo]
26049
26061
  attr_accessor :total_resources
26050
26062
 
26063
+ # Upcoming Maintenance notification information.
26064
+ # Corresponds to the JSON property `upcomingMaintenance`
26065
+ # @return [Google::Apis::ComputeV1::UpcomingMaintenance]
26066
+ attr_accessor :upcoming_maintenance
26067
+
26051
26068
  def initialize(**args)
26052
26069
  update!(**args)
26053
26070
  end
@@ -26067,6 +26084,7 @@ module Google
26067
26084
  @server_id = args[:server_id] if args.key?(:server_id)
26068
26085
  @status = args[:status] if args.key?(:status)
26069
26086
  @total_resources = args[:total_resources] if args.key?(:total_resources)
26087
+ @upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
26070
26088
  end
26071
26089
  end
26072
26090
 
@@ -26226,6 +26244,31 @@ module Google
26226
26244
  end
26227
26245
  end
26228
26246
 
26247
+ #
26248
+ class NodeGroupsPerformMaintenanceRequest
26249
+ include Google::Apis::Core::Hashable
26250
+
26251
+ # [Required] List of nodes affected by the call.
26252
+ # Corresponds to the JSON property `nodes`
26253
+ # @return [Array<String>]
26254
+ attr_accessor :nodes
26255
+
26256
+ # The start time of the schedule. The timestamp is an RFC3339 string.
26257
+ # Corresponds to the JSON property `startTime`
26258
+ # @return [String]
26259
+ attr_accessor :start_time
26260
+
26261
+ def initialize(**args)
26262
+ update!(**args)
26263
+ end
26264
+
26265
+ # Update properties of this object
26266
+ def update!(**args)
26267
+ @nodes = args[:nodes] if args.key?(:nodes)
26268
+ @start_time = args[:start_time] if args.key?(:start_time)
26269
+ end
26270
+ end
26271
+
26229
26272
  #
26230
26273
  class NodeGroupsScopedList
26231
26274
  include Google::Apis::Core::Hashable
@@ -28427,7 +28470,7 @@ module Google
28427
28470
  # @return [String]
28428
28471
  attr_accessor :enable
28429
28472
 
28430
- # Filter for mirrored traffic. If unspecified, all traffic is mirrored.
28473
+ # Filter for mirrored traffic. If unspecified, all IPv4 traffic is mirrored.
28431
28474
  # Corresponds to the JSON property `filter`
28432
28475
  # @return [Google::Apis::ComputeV1::PacketMirroringFilter]
28433
28476
  attr_accessor :filter
@@ -28642,7 +28685,7 @@ module Google
28642
28685
  # @return [Array<String>]
28643
28686
  attr_accessor :ip_protocols
28644
28687
 
28645
- # One or more IPv4 or IPv6 CIDR ranges that apply as filter on the source (
28688
+ # One or more IPv4 or IPv6 CIDR ranges that apply as filters on the source (
28646
28689
  # ingress) or destination (egress) IP in the IP header. If no ranges are
28647
28690
  # specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
28648
28691
  # If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
@@ -30012,6 +30055,13 @@ module Google
30012
30055
  class PublicDelegatedPrefix
30013
30056
  include Google::Apis::Core::Hashable
30014
30057
 
30058
+ # The allocatable prefix length supported by this public delegated prefix. This
30059
+ # field is optional and cannot be set for prefixes in DELEGATION mode. It cannot
30060
+ # be set for IPv4 prefixes either, and it always defaults to 32.
30061
+ # Corresponds to the JSON property `allocatablePrefixLength`
30062
+ # @return [Fixnum]
30063
+ attr_accessor :allocatable_prefix_length
30064
+
30015
30065
  # [Output Only] The version of BYOIP API.
30016
30066
  # Corresponds to the JSON property `byoipApiVersion`
30017
30067
  # @return [String]
@@ -30063,6 +30113,11 @@ module Google
30063
30113
  # @return [String]
30064
30114
  attr_accessor :kind
30065
30115
 
30116
+ # The public delegated prefix mode for IPv6 only.
30117
+ # Corresponds to the JSON property `mode`
30118
+ # @return [String]
30119
+ attr_accessor :mode
30120
+
30066
30121
  # Name of the resource. Provided by the client when the resource is created. The
30067
30122
  # name must be 1-63 characters long, and comply with RFC1035. Specifically, the
30068
30123
  # name must be 1-63 characters long and match the regular expression `[a-z]([-a-
@@ -30114,6 +30169,7 @@ module Google
30114
30169
 
30115
30170
  # Update properties of this object
30116
30171
  def update!(**args)
30172
+ @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
30117
30173
  @byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
30118
30174
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
30119
30175
  @description = args[:description] if args.key?(:description)
@@ -30122,6 +30178,7 @@ module Google
30122
30178
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
30123
30179
  @is_live_migration = args[:is_live_migration] if args.key?(:is_live_migration)
30124
30180
  @kind = args[:kind] if args.key?(:kind)
30181
+ @mode = args[:mode] if args.key?(:mode)
30125
30182
  @name = args[:name] if args.key?(:name)
30126
30183
  @parent_prefix = args[:parent_prefix] if args.key?(:parent_prefix)
30127
30184
  @public_delegated_sub_prefixs = args[:public_delegated_sub_prefixs] if args.key?(:public_delegated_sub_prefixs)
@@ -30378,6 +30435,11 @@ module Google
30378
30435
  class PublicDelegatedPrefixPublicDelegatedSubPrefix
30379
30436
  include Google::Apis::Core::Hashable
30380
30437
 
30438
+ # The allocatable prefix length supported by this PublicDelegatedSubPrefix.
30439
+ # Corresponds to the JSON property `allocatablePrefixLength`
30440
+ # @return [Fixnum]
30441
+ attr_accessor :allocatable_prefix_length
30442
+
30381
30443
  # Name of the project scoping this PublicDelegatedSubPrefix.
30382
30444
  # Corresponds to the JSON property `delegateeProject`
30383
30445
  # @return [String]
@@ -30402,6 +30464,11 @@ module Google
30402
30464
  attr_accessor :is_address
30403
30465
  alias_method :is_address?, :is_address
30404
30466
 
30467
+ # The PublicDelegatedSubPrefix mode for IPv6 only.
30468
+ # Corresponds to the JSON property `mode`
30469
+ # @return [String]
30470
+ attr_accessor :mode
30471
+
30405
30472
  # The name of the sub public delegated prefix.
30406
30473
  # Corresponds to the JSON property `name`
30407
30474
  # @return [String]
@@ -30424,10 +30491,12 @@ module Google
30424
30491
 
30425
30492
  # Update properties of this object
30426
30493
  def update!(**args)
30494
+ @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
30427
30495
  @delegatee_project = args[:delegatee_project] if args.key?(:delegatee_project)
30428
30496
  @description = args[:description] if args.key?(:description)
30429
30497
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
30430
30498
  @is_address = args[:is_address] if args.key?(:is_address)
30499
+ @mode = args[:mode] if args.key?(:mode)
30431
30500
  @name = args[:name] if args.key?(:name)
30432
30501
  @region = args[:region] if args.key?(:region)
30433
30502
  @status = args[:status] if args.key?(:status)
@@ -32449,7 +32518,6 @@ module Google
32449
32518
  attr_accessor :share_settings
32450
32519
 
32451
32520
  # This reservation type allows to pre allocate specific instance configuration.
32452
- # Next ID: 6
32453
32521
  # Corresponds to the JSON property `specificReservation`
32454
32522
  # @return [Google::Apis::ComputeV1::AllocationSpecificSkuReservation]
32455
32523
  attr_accessor :specific_reservation
@@ -34531,6 +34599,14 @@ module Google
34531
34599
  # @return [Fixnum]
34532
34600
  attr_accessor :asn
34533
34601
 
34602
+ # Explicitly specifies a range of valid BGP Identifiers for this Router. It is
34603
+ # provided as a link-local IPv4 range (from 169.254.0.0/16), of size at least /
34604
+ # 30, even if the BGP sessions are over IPv6. It must not overlap with any IPv4
34605
+ # BGP session ranges. Other vendors commonly call this "router ID".
34606
+ # Corresponds to the JSON property `identifierRange`
34607
+ # @return [String]
34608
+ attr_accessor :identifier_range
34609
+
34534
34610
  # The interval in seconds between BGP keepalive messages that are sent to the
34535
34611
  # peer. Hold time is three times the interval at which keepalive messages are
34536
34612
  # sent, and the hold time is the maximum number of seconds allowed to elapse
@@ -34552,6 +34628,7 @@ module Google
34552
34628
  @advertised_groups = args[:advertised_groups] if args.key?(:advertised_groups)
34553
34629
  @advertised_ip_ranges = args[:advertised_ip_ranges] if args.key?(:advertised_ip_ranges)
34554
34630
  @asn = args[:asn] if args.key?(:asn)
34631
+ @identifier_range = args[:identifier_range] if args.key?(:identifier_range)
34555
34632
  @keepalive_interval = args[:keepalive_interval] if args.key?(:keepalive_interval)
34556
34633
  end
34557
34634
  end
@@ -34619,23 +34696,51 @@ module Google
34619
34696
  # @return [String]
34620
34697
  attr_accessor :enable
34621
34698
 
34622
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
34699
+ # Enable IPv4 traffic over BGP Peer. It is enabled by default if the
34700
+ # peerIpAddress is version 4.
34701
+ # Corresponds to the JSON property `enableIpv4`
34702
+ # @return [Boolean]
34703
+ attr_accessor :enable_ipv4
34704
+ alias_method :enable_ipv4?, :enable_ipv4
34705
+
34706
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the
34707
+ # peerIpAddress is version 6.
34623
34708
  # Corresponds to the JSON property `enableIpv6`
34624
34709
  # @return [Boolean]
34625
34710
  attr_accessor :enable_ipv6
34626
34711
  alias_method :enable_ipv6?, :enable_ipv6
34627
34712
 
34713
+ # List of export policies applied to this peer, in the order they must be
34714
+ # evaluated. The name must correspond to an existing policy that has
34715
+ # ROUTE_POLICY_TYPE_EXPORT type. Note that Route Policies are currently
34716
+ # available in preview. Please use Beta API to use Route Policies.
34717
+ # Corresponds to the JSON property `exportPolicies`
34718
+ # @return [Array<String>]
34719
+ attr_accessor :export_policies
34720
+
34721
+ # List of import policies applied to this peer, in the order they must be
34722
+ # evaluated. The name must correspond to an existing policy that has
34723
+ # ROUTE_POLICY_TYPE_IMPORT type. Note that Route Policies are currently
34724
+ # available in preview. Please use Beta API to use Route Policies.
34725
+ # Corresponds to the JSON property `importPolicies`
34726
+ # @return [Array<String>]
34727
+ attr_accessor :import_policies
34728
+
34628
34729
  # Name of the interface the BGP peer is associated with.
34629
34730
  # Corresponds to the JSON property `interfaceName`
34630
34731
  # @return [String]
34631
34732
  attr_accessor :interface_name
34632
34733
 
34633
- # IP address of the interface inside Google Cloud Platform. Only IPv4 is
34634
- # supported.
34734
+ # IP address of the interface inside Google Cloud Platform.
34635
34735
  # Corresponds to the JSON property `ipAddress`
34636
34736
  # @return [String]
34637
34737
  attr_accessor :ip_address
34638
34738
 
34739
+ # IPv4 address of the interface inside Google Cloud Platform.
34740
+ # Corresponds to the JSON property `ipv4NexthopAddress`
34741
+ # @return [String]
34742
+ attr_accessor :ipv4_nexthop_address
34743
+
34639
34744
  # IPv6 address of the interface inside Google Cloud Platform.
34640
34745
  # Corresponds to the JSON property `ipv6NexthopAddress`
34641
34746
  # @return [String]
@@ -34674,12 +34779,16 @@ module Google
34674
34779
  # @return [Fixnum]
34675
34780
  attr_accessor :peer_asn
34676
34781
 
34677
- # IP address of the BGP interface outside Google Cloud Platform. Only IPv4 is
34678
- # supported.
34782
+ # IP address of the BGP interface outside Google Cloud Platform.
34679
34783
  # Corresponds to the JSON property `peerIpAddress`
34680
34784
  # @return [String]
34681
34785
  attr_accessor :peer_ip_address
34682
34786
 
34787
+ # IPv4 address of the BGP interface outside Google Cloud Platform.
34788
+ # Corresponds to the JSON property `peerIpv4NexthopAddress`
34789
+ # @return [String]
34790
+ attr_accessor :peer_ipv4_nexthop_address
34791
+
34683
34792
  # IPv6 address of the BGP interface outside Google Cloud Platform.
34684
34793
  # Corresponds to the JSON property `peerIpv6NexthopAddress`
34685
34794
  # @return [String]
@@ -34707,15 +34816,20 @@ module Google
34707
34816
  @custom_learned_ip_ranges = args[:custom_learned_ip_ranges] if args.key?(:custom_learned_ip_ranges)
34708
34817
  @custom_learned_route_priority = args[:custom_learned_route_priority] if args.key?(:custom_learned_route_priority)
34709
34818
  @enable = args[:enable] if args.key?(:enable)
34819
+ @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
34710
34820
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
34821
+ @export_policies = args[:export_policies] if args.key?(:export_policies)
34822
+ @import_policies = args[:import_policies] if args.key?(:import_policies)
34711
34823
  @interface_name = args[:interface_name] if args.key?(:interface_name)
34712
34824
  @ip_address = args[:ip_address] if args.key?(:ip_address)
34825
+ @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
34713
34826
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
34714
34827
  @management_type = args[:management_type] if args.key?(:management_type)
34715
34828
  @md5_authentication_key_name = args[:md5_authentication_key_name] if args.key?(:md5_authentication_key_name)
34716
34829
  @name = args[:name] if args.key?(:name)
34717
34830
  @peer_asn = args[:peer_asn] if args.key?(:peer_asn)
34718
34831
  @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
34832
+ @peer_ipv4_nexthop_address = args[:peer_ipv4_nexthop_address] if args.key?(:peer_ipv4_nexthop_address)
34719
34833
  @peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
34720
34834
  @router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
34721
34835
  end
@@ -34797,14 +34911,24 @@ module Google
34797
34911
  class RouterInterface
34798
34912
  include Google::Apis::Core::Hashable
34799
34913
 
34800
- # IP address and range of the interface. The IP range must be in the RFC3927
34801
- # link-local IP address space. The value must be a CIDR-formatted string, for
34802
- # example: 169.254.0.1/30. NOTE: Do not truncate the address as it represents
34803
- # the IP address of the interface.
34914
+ # IP address and range of the interface. - For Internet Protocol version 4 (IPv4)
34915
+ # , the IP range must be in the RFC3927 link-local IP address space. The value
34916
+ # must be a CIDR-formatted string, for example, 169.254.0.1/30. Note: Do not
34917
+ # truncate the IP address, as it represents the IP address of the interface. -
34918
+ # For Internet Protocol version 6 (IPv6), the value must be a unique local
34919
+ # address (ULA) range from fdff:1::/64 with a mask length of 126 or less. This
34920
+ # value should be a CIDR-formatted string, for example, fc00:0:1:1::1/112.
34921
+ # Within the router's VPC, this IPv6 prefix will be reserved exclusively for
34922
+ # this connection and cannot be used for any other purpose.
34804
34923
  # Corresponds to the JSON property `ipRange`
34805
34924
  # @return [String]
34806
34925
  attr_accessor :ip_range
34807
34926
 
34927
+ # IP version of this interface.
34928
+ # Corresponds to the JSON property `ipVersion`
34929
+ # @return [String]
34930
+ attr_accessor :ip_version
34931
+
34808
34932
  # URI of the linked Interconnect attachment. It must be in the same region as
34809
34933
  # the router. Each interface can have one linked resource, which can be a VPN
34810
34934
  # tunnel, an Interconnect attachment, or a subnetwork.
@@ -34875,6 +34999,7 @@ module Google
34875
34999
  # Update properties of this object
34876
35000
  def update!(**args)
34877
35001
  @ip_range = args[:ip_range] if args.key?(:ip_range)
35002
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
34878
35003
  @linked_interconnect_attachment = args[:linked_interconnect_attachment] if args.key?(:linked_interconnect_attachment)
34879
35004
  @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
34880
35005
  @management_type = args[:management_type] if args.key?(:management_type)
@@ -35423,7 +35548,15 @@ module Google
35423
35548
  # @return [Google::Apis::ComputeV1::BfdStatus]
35424
35549
  attr_accessor :bfd_status
35425
35550
 
35426
- # Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
35551
+ # Enable IPv4 traffic over BGP Peer. It is enabled by default if the
35552
+ # peerIpAddress is version 4.
35553
+ # Corresponds to the JSON property `enableIpv4`
35554
+ # @return [Boolean]
35555
+ attr_accessor :enable_ipv4
35556
+ alias_method :enable_ipv4?, :enable_ipv4
35557
+
35558
+ # Enable IPv6 traffic over BGP Peer. It is enabled by default if the
35559
+ # peerIpAddress is version 6.
35427
35560
  # Corresponds to the JSON property `enableIpv6`
35428
35561
  # @return [Boolean]
35429
35562
  attr_accessor :enable_ipv6
@@ -35434,6 +35567,11 @@ module Google
35434
35567
  # @return [String]
35435
35568
  attr_accessor :ip_address
35436
35569
 
35570
+ # IPv4 address of the local BGP interface.
35571
+ # Corresponds to the JSON property `ipv4NexthopAddress`
35572
+ # @return [String]
35573
+ attr_accessor :ipv4_nexthop_address
35574
+
35437
35575
  # IPv6 address of the local BGP interface.
35438
35576
  # Corresponds to the JSON property `ipv6NexthopAddress`
35439
35577
  # @return [String]
@@ -35465,6 +35603,11 @@ module Google
35465
35603
  # @return [String]
35466
35604
  attr_accessor :peer_ip_address
35467
35605
 
35606
+ # IPv4 address of the remote BGP interface.
35607
+ # Corresponds to the JSON property `peerIpv4NexthopAddress`
35608
+ # @return [String]
35609
+ attr_accessor :peer_ipv4_nexthop_address
35610
+
35468
35611
  # IPv6 address of the remote BGP interface.
35469
35612
  # Corresponds to the JSON property `peerIpv6NexthopAddress`
35470
35613
  # @return [String]
@@ -35512,14 +35655,17 @@ module Google
35512
35655
  def update!(**args)
35513
35656
  @advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
35514
35657
  @bfd_status = args[:bfd_status] if args.key?(:bfd_status)
35658
+ @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
35515
35659
  @enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
35516
35660
  @ip_address = args[:ip_address] if args.key?(:ip_address)
35661
+ @ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
35517
35662
  @ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
35518
35663
  @linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
35519
35664
  @md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
35520
35665
  @name = args[:name] if args.key?(:name)
35521
35666
  @num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
35522
35667
  @peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
35668
+ @peer_ipv4_nexthop_address = args[:peer_ipv4_nexthop_address] if args.key?(:peer_ipv4_nexthop_address)
35523
35669
  @peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
35524
35670
  @router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
35525
35671
  @state = args[:state] if args.key?(:state)
@@ -39159,7 +39305,8 @@ module Google
39159
39305
  include Google::Apis::Core::Hashable
39160
39306
 
39161
39307
  # When the policy is SPECIFIC_LOCATIONS, snapshots will be stored in the
39162
- # locations listed in this field. Keys are GCS bucket locations.
39308
+ # locations listed in this field. Keys are Cloud Storage bucket locations. Only
39309
+ # one location can be specified.
39163
39310
  # Corresponds to the JSON property `locations`
39164
39311
  # @return [Hash<String,Google::Apis::ComputeV1::SnapshotSettingsStorageLocationSettingsStorageLocationPreference>]
39165
39312
  attr_accessor :locations
@@ -39184,7 +39331,8 @@ module Google
39184
39331
  class SnapshotSettingsStorageLocationSettingsStorageLocationPreference
39185
39332
  include Google::Apis::Core::Hashable
39186
39333
 
39187
- # Name of the location. It should be one of the GCS buckets.
39334
+ # Name of the location. It should be one of the Cloud Storage buckets. Only one
39335
+ # location can be specified.
39188
39336
  # Corresponds to the JSON property `name`
39189
39337
  # @return [String]
39190
39338
  attr_accessor :name
@@ -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.96.0"
19
+ GEM_VERSION = "0.98.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240407"
25
+ REVISION = "20240519"
26
26
  end
27
27
  end
28
28
  end
@@ -244,12 +244,6 @@ module Google
244
244
  include Google::Apis::Core::JsonObjectSupport
245
245
  end
246
246
 
247
- class AuthorizationLoggingOptions
248
- class Representation < Google::Apis::Core::JsonRepresentation; end
249
-
250
- include Google::Apis::Core::JsonObjectSupport
251
- end
252
-
253
247
  class Autoscaler
254
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
249
 
@@ -3310,6 +3304,12 @@ module Google
3310
3304
  include Google::Apis::Core::JsonObjectSupport
3311
3305
  end
3312
3306
 
3307
+ class NodeGroupsPerformMaintenanceRequest
3308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3309
+
3310
+ include Google::Apis::Core::JsonObjectSupport
3311
+ end
3312
+
3313
3313
  class NodeGroupsScopedList
3314
3314
  class Representation < Google::Apis::Core::JsonRepresentation; end
3315
3315
 
@@ -6932,13 +6932,6 @@ module Google
6932
6932
  end
6933
6933
  end
6934
6934
 
6935
- class AuthorizationLoggingOptions
6936
- # @private
6937
- class Representation < Google::Apis::Core::JsonRepresentation
6938
- property :permission_type, as: 'permissionType'
6939
- end
6940
- end
6941
-
6942
6935
  class Autoscaler
6943
6936
  # @private
6944
6937
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7909,6 +7902,7 @@ module Google
7909
7902
  class Disk
7910
7903
  # @private
7911
7904
  class Representation < Google::Apis::Core::JsonRepresentation
7905
+ property :access_mode, as: 'accessMode'
7912
7906
  property :architecture, as: 'architecture'
7913
7907
  property :async_primary_disk, as: 'asyncPrimaryDisk', class: Google::Apis::ComputeV1::DiskAsyncReplication, decorator: Google::Apis::ComputeV1::DiskAsyncReplication::Representation
7914
7908
 
@@ -8668,6 +8662,7 @@ module Google
8668
8662
  property :description, as: 'description'
8669
8663
  property :fingerprint, :base64 => true, as: 'fingerprint'
8670
8664
  property :id, :numeric_string => true, as: 'id'
8665
+ property :ip_collection, as: 'ipCollection'
8671
8666
  property :ip_version, as: 'ipVersion'
8672
8667
  property :is_mirroring_collector, as: 'isMirroringCollector'
8673
8668
  property :kind, as: 'kind'
@@ -11620,8 +11615,6 @@ module Google
11620
11615
  class LogConfigCloudAuditOptions
11621
11616
  # @private
11622
11617
  class Representation < Google::Apis::Core::JsonRepresentation
11623
- property :authorization_logging_options, as: 'authorizationLoggingOptions', class: Google::Apis::ComputeV1::AuthorizationLoggingOptions, decorator: Google::Apis::ComputeV1::AuthorizationLoggingOptions::Representation
11624
-
11625
11618
  property :log_name, as: 'logName'
11626
11619
  end
11627
11620
  end
@@ -12603,6 +12596,7 @@ module Google
12603
12596
  property :id, :numeric_string => true, as: 'id'
12604
12597
  property :kind, as: 'kind'
12605
12598
  property :location_hint, as: 'locationHint'
12599
+ property :maintenance_interval, as: 'maintenanceInterval'
12606
12600
  property :maintenance_policy, as: 'maintenancePolicy'
12607
12601
  property :maintenance_window, as: 'maintenanceWindow', class: Google::Apis::ComputeV1::NodeGroupMaintenanceWindow, decorator: Google::Apis::ComputeV1::NodeGroupMaintenanceWindow::Representation
12608
12602
 
@@ -12722,6 +12716,8 @@ module Google
12722
12716
  property :status, as: 'status'
12723
12717
  property :total_resources, as: 'totalResources', class: Google::Apis::ComputeV1::InstanceConsumptionInfo, decorator: Google::Apis::ComputeV1::InstanceConsumptionInfo::Representation
12724
12718
 
12719
+ property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeV1::UpcomingMaintenance, decorator: Google::Apis::ComputeV1::UpcomingMaintenance::Representation
12720
+
12725
12721
  end
12726
12722
  end
12727
12723
 
@@ -12771,6 +12767,14 @@ module Google
12771
12767
  end
12772
12768
  end
12773
12769
 
12770
+ class NodeGroupsPerformMaintenanceRequest
12771
+ # @private
12772
+ class Representation < Google::Apis::Core::JsonRepresentation
12773
+ collection :nodes, as: 'nodes'
12774
+ property :start_time, as: 'startTime'
12775
+ end
12776
+ end
12777
+
12774
12778
  class NodeGroupsScopedList
12775
12779
  # @private
12776
12780
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13732,6 +13736,7 @@ module Google
13732
13736
  class PublicDelegatedPrefix
13733
13737
  # @private
13734
13738
  class Representation < Google::Apis::Core::JsonRepresentation
13739
+ property :allocatable_prefix_length, as: 'allocatablePrefixLength'
13735
13740
  property :byoip_api_version, as: 'byoipApiVersion'
13736
13741
  property :creation_timestamp, as: 'creationTimestamp'
13737
13742
  property :description, as: 'description'
@@ -13740,6 +13745,7 @@ module Google
13740
13745
  property :ip_cidr_range, as: 'ipCidrRange'
13741
13746
  property :is_live_migration, as: 'isLiveMigration'
13742
13747
  property :kind, as: 'kind'
13748
+ property :mode, as: 'mode'
13743
13749
  property :name, as: 'name'
13744
13750
  property :parent_prefix, as: 'parentPrefix'
13745
13751
  collection :public_delegated_sub_prefixs, as: 'publicDelegatedSubPrefixs', class: Google::Apis::ComputeV1::PublicDelegatedPrefixPublicDelegatedSubPrefix, decorator: Google::Apis::ComputeV1::PublicDelegatedPrefixPublicDelegatedSubPrefix::Representation
@@ -13818,10 +13824,12 @@ module Google
13818
13824
  class PublicDelegatedPrefixPublicDelegatedSubPrefix
13819
13825
  # @private
13820
13826
  class Representation < Google::Apis::Core::JsonRepresentation
13827
+ property :allocatable_prefix_length, as: 'allocatablePrefixLength'
13821
13828
  property :delegatee_project, as: 'delegateeProject'
13822
13829
  property :description, as: 'description'
13823
13830
  property :ip_cidr_range, as: 'ipCidrRange'
13824
13831
  property :is_address, as: 'isAddress'
13832
+ property :mode, as: 'mode'
13825
13833
  property :name, as: 'name'
13826
13834
  property :region, as: 'region'
13827
13835
  property :status, as: 'status'
@@ -14944,6 +14952,7 @@ module Google
14944
14952
  collection :advertised_ip_ranges, as: 'advertisedIpRanges', class: Google::Apis::ComputeV1::RouterAdvertisedIpRange, decorator: Google::Apis::ComputeV1::RouterAdvertisedIpRange::Representation
14945
14953
 
14946
14954
  property :asn, as: 'asn'
14955
+ property :identifier_range, as: 'identifierRange'
14947
14956
  property :keepalive_interval, as: 'keepaliveInterval'
14948
14957
  end
14949
14958
  end
@@ -14962,15 +14971,20 @@ module Google
14962
14971
 
14963
14972
  property :custom_learned_route_priority, as: 'customLearnedRoutePriority'
14964
14973
  property :enable, as: 'enable'
14974
+ property :enable_ipv4, as: 'enableIpv4'
14965
14975
  property :enable_ipv6, as: 'enableIpv6'
14976
+ collection :export_policies, as: 'exportPolicies'
14977
+ collection :import_policies, as: 'importPolicies'
14966
14978
  property :interface_name, as: 'interfaceName'
14967
14979
  property :ip_address, as: 'ipAddress'
14980
+ property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
14968
14981
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
14969
14982
  property :management_type, as: 'managementType'
14970
14983
  property :md5_authentication_key_name, as: 'md5AuthenticationKeyName'
14971
14984
  property :name, as: 'name'
14972
14985
  property :peer_asn, as: 'peerAsn'
14973
14986
  property :peer_ip_address, as: 'peerIpAddress'
14987
+ property :peer_ipv4_nexthop_address, as: 'peerIpv4NexthopAddress'
14974
14988
  property :peer_ipv6_nexthop_address, as: 'peerIpv6NexthopAddress'
14975
14989
  property :router_appliance_instance, as: 'routerApplianceInstance'
14976
14990
  end
@@ -14997,6 +15011,7 @@ module Google
14997
15011
  # @private
14998
15012
  class Representation < Google::Apis::Core::JsonRepresentation
14999
15013
  property :ip_range, as: 'ipRange'
15014
+ property :ip_version, as: 'ipVersion'
15000
15015
  property :linked_interconnect_attachment, as: 'linkedInterconnectAttachment'
15001
15016
  property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
15002
15017
  property :management_type, as: 'managementType'
@@ -15136,14 +15151,17 @@ module Google
15136
15151
 
15137
15152
  property :bfd_status, as: 'bfdStatus', class: Google::Apis::ComputeV1::BfdStatus, decorator: Google::Apis::ComputeV1::BfdStatus::Representation
15138
15153
 
15154
+ property :enable_ipv4, as: 'enableIpv4'
15139
15155
  property :enable_ipv6, as: 'enableIpv6'
15140
15156
  property :ip_address, as: 'ipAddress'
15157
+ property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
15141
15158
  property :ipv6_nexthop_address, as: 'ipv6NexthopAddress'
15142
15159
  property :linked_vpn_tunnel, as: 'linkedVpnTunnel'
15143
15160
  property :md5_auth_enabled, as: 'md5AuthEnabled'
15144
15161
  property :name, as: 'name'
15145
15162
  property :num_learned_routes, as: 'numLearnedRoutes'
15146
15163
  property :peer_ip_address, as: 'peerIpAddress'
15164
+ property :peer_ipv4_nexthop_address, as: 'peerIpv4NexthopAddress'
15147
15165
  property :peer_ipv6_nexthop_address, as: 'peerIpv6NexthopAddress'
15148
15166
  property :router_appliance_instance, as: 'routerApplianceInstance'
15149
15167
  property :state, as: 'state'
@@ -20965,6 +20965,59 @@ module Google
20965
20965
  execute_or_queue_command(command, &block)
20966
20966
  end
20967
20967
 
20968
+ # Perform maintenance on a subset of nodes in the node group.
20969
+ # @param [String] project
20970
+ # Project ID for this request.
20971
+ # @param [String] zone
20972
+ # The name of the zone for this request.
20973
+ # @param [String] node_group
20974
+ # Name of the node group scoping this request.
20975
+ # @param [Google::Apis::ComputeV1::NodeGroupsPerformMaintenanceRequest] node_groups_perform_maintenance_request_object
20976
+ # @param [String] request_id
20977
+ # An optional request ID to identify requests. Specify a unique request ID so
20978
+ # that if you must retry your request, the server will know to ignore the
20979
+ # request if it has already been completed. For example, consider a situation
20980
+ # where you make an initial request and the request times out. If you make the
20981
+ # request again with the same request ID, the server can check if original
20982
+ # operation with the same request ID was received, and if so, will ignore the
20983
+ # second request. This prevents clients from accidentally creating duplicate
20984
+ # commitments. The request ID must be a valid UUID with the exception that zero
20985
+ # UUID is not supported ( 00000000-0000-0000-0000-000000000000).
20986
+ # @param [String] fields
20987
+ # Selector specifying which fields to include in a partial response.
20988
+ # @param [String] quota_user
20989
+ # Available to use for quota purposes for server-side applications. Can be any
20990
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
20991
+ # @param [String] user_ip
20992
+ # Legacy name for parameter that has been superseded by `quotaUser`.
20993
+ # @param [Google::Apis::RequestOptions] options
20994
+ # Request-specific options
20995
+ #
20996
+ # @yield [result, err] Result & error if block supplied
20997
+ # @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
20998
+ # @yieldparam err [StandardError] error object if request failed
20999
+ #
21000
+ # @return [Google::Apis::ComputeV1::Operation]
21001
+ #
21002
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
21003
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
21004
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
21005
+ def perform_node_group_maintenance(project, zone, node_group, node_groups_perform_maintenance_request_object = nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
21006
+ command = make_simple_command(:post, 'projects/{project}/zones/{zone}/nodeGroups/{nodeGroup}/performMaintenance', options)
21007
+ command.request_representation = Google::Apis::ComputeV1::NodeGroupsPerformMaintenanceRequest::Representation
21008
+ command.request_object = node_groups_perform_maintenance_request_object
21009
+ command.response_representation = Google::Apis::ComputeV1::Operation::Representation
21010
+ command.response_class = Google::Apis::ComputeV1::Operation
21011
+ command.params['project'] = project unless project.nil?
21012
+ command.params['zone'] = zone unless zone.nil?
21013
+ command.params['nodeGroup'] = node_group unless node_group.nil?
21014
+ command.query['requestId'] = request_id unless request_id.nil?
21015
+ command.query['fields'] = fields unless fields.nil?
21016
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
21017
+ command.query['userIp'] = user_ip unless user_ip.nil?
21018
+ execute_or_queue_command(command, &block)
21019
+ end
21020
+
20968
21021
  # Sets the access control policy on the specified resource. Replaces any
20969
21022
  # existing policy.
20970
21023
  # @param [String] project
@@ -33430,7 +33483,13 @@ module Google
33430
33483
  # To exclude one or more fields, set your request's `fields` query parameter to
33431
33484
  # only include the fields you need. For example, to only include the `id` and `
33432
33485
  # selfLink` fields, add the query parameter `?fields=id,selfLink` to your
33433
- # request.
33486
+ # request. This method fails if the quota information is unavailable for the
33487
+ # region and if the organization policy constraint compute.
33488
+ # requireBasicQuotaInResponse is enforced. This constraint, when enforced,
33489
+ # disables the fail-open behaviour when quota information (the `items.quotas`
33490
+ # field) is unavailable for the region. It is recommended to use the default
33491
+ # setting for the constraint unless your application requires the fail-closed
33492
+ # behaviour for this method.
33434
33493
  # @param [String] project
33435
33494
  # Project ID for this request.
33436
33495
  # @param [String] filter
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.96.0
4
+ version: 0.98.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.15.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.14.0
29
+ version: 0.15.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.96.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.98.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
63
63
  post_install_message:
64
64
  rdoc_options: []