google-apis-compute_v1 0.136.0 → 0.138.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: c9f8af21f65ceb420a3f05732630d568130cbe9731e0df11e39c055fb2efe8dc
4
- data.tar.gz: 07a60454174eb9c49033aceeb883fd195fba7b48a24b0cceefd00fd82dc9e8df
3
+ metadata.gz: e7254b18118944944f456d3f536c668fbfe7181568659c5032c5160b386d6ef2
4
+ data.tar.gz: 60edf62453fe2371b8cc3f8a24596d3170bb2f5b19f6d50365bc2c9fff5a896a
5
5
  SHA512:
6
- metadata.gz: 627bcab035d3facc187685baef5e236d5d32600197206e5b5478b7d3efdb2fa5363b98d3f0f731ffc23bb0b42ae04fcd359d2700f9284c57bdddcc0d31fcb693
7
- data.tar.gz: 02ac4c8d59eec8b919dd4845124072c67c9e13a6d2e3a44a02a4a0cc4052aafc3d35e057c2dcc099195454d75a931772c1a39ecad608e38f130584a9545dc849
6
+ metadata.gz: 3daebaab5e9caad433f8c76cf9d674d2f1e4621cc87fdb6b1af5c771aad34cf45297d8c1a93c66b68f05cdf0b6f177703cd65f4362d0ef3f7bdea0cef9c652f3
7
+ data.tar.gz: 7cae2be0d4d09a14e3e456b9b7a71ec7ea53cd77c9ed926b11798d1002acc1f71e81150eeb8b68d041a6e6a6028ccb2959568a8b18cc8033069b98f5fe1dc019
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.138.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20251230
6
+
7
+ ### v0.137.0 (2025-12-14)
8
+
9
+ * Regenerated from discovery document revision 20251210
10
+
3
11
  ### v0.136.0 (2025-12-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20251202
@@ -4312,6 +4312,13 @@ module Google
4312
4312
  # @return [String]
4313
4313
  attr_accessor :network
4314
4314
 
4315
+ # Configures traffic steering properties of internal passthrough Network
4316
+ # Load Balancers.
4317
+ # networkPassThroughLbTrafficPolicy cannot be specified with haPolicy.
4318
+ # Corresponds to the JSON property `networkPassThroughLbTrafficPolicy`
4319
+ # @return [Google::Apis::ComputeV1::BackendServiceNetworkPassThroughLbTrafficPolicy]
4320
+ attr_accessor :network_pass_through_lb_traffic_policy
4321
+
4315
4322
  # Settings controlling the eviction of unhealthy hosts from the load balancing
4316
4323
  # pool for the backend service.
4317
4324
  # Corresponds to the JSON property `outlierDetection`
@@ -4484,6 +4491,7 @@ module Google
4484
4491
  @metadatas = args[:metadatas] if args.key?(:metadatas)
4485
4492
  @name = args[:name] if args.key?(:name)
4486
4493
  @network = args[:network] if args.key?(:network)
4494
+ @network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
4487
4495
  @outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
4488
4496
  @params = args[:params] if args.key?(:params)
4489
4497
  @port = args[:port] if args.key?(:port)
@@ -5711,6 +5719,74 @@ module Google
5711
5719
  end
5712
5720
  end
5713
5721
 
5722
+ #
5723
+ class BackendServiceNetworkPassThroughLbTrafficPolicy
5724
+ include Google::Apis::Core::Hashable
5725
+
5726
+ # When configured, new connections are load balanced across healthy backend
5727
+ # endpoints in the local zone.
5728
+ # Corresponds to the JSON property `zonalAffinity`
5729
+ # @return [Google::Apis::ComputeV1::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity]
5730
+ attr_accessor :zonal_affinity
5731
+
5732
+ def initialize(**args)
5733
+ update!(**args)
5734
+ end
5735
+
5736
+ # Update properties of this object
5737
+ def update!(**args)
5738
+ @zonal_affinity = args[:zonal_affinity] if args.key?(:zonal_affinity)
5739
+ end
5740
+ end
5741
+
5742
+ #
5743
+ class BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity
5744
+ include Google::Apis::Core::Hashable
5745
+
5746
+ # This field indicates whether zonal affinity is enabled or not. The
5747
+ # possible values are:
5748
+ #
5749
+ # - ZONAL_AFFINITY_DISABLED: Default Value. Zonal Affinity
5750
+ # is disabled. The load balancer distributes new connections to all
5751
+ # healthy backend endpoints across all zones.
5752
+ # - ZONAL_AFFINITY_STAY_WITHIN_ZONE: Zonal Affinity is
5753
+ # enabled. The load balancer distributes new connections to all healthy
5754
+ # backend endpoints in the local zone only. If there are no healthy
5755
+ # backend endpoints in the local zone, the load balancer distributes
5756
+ # new connections to all backend endpoints in the local zone.
5757
+ # - ZONAL_AFFINITY_SPILL_CROSS_ZONE: Zonal Affinity is
5758
+ # enabled. The load balancer distributes new connections to all healthy
5759
+ # backend endpoints in the local zone only. If there aren't enough
5760
+ # healthy backend endpoints in the local zone, the load balancer
5761
+ # distributes new connections to all healthy backend endpoints across all
5762
+ # zones.
5763
+ # Corresponds to the JSON property `spillover`
5764
+ # @return [String]
5765
+ attr_accessor :spillover
5766
+
5767
+ # The value of the field must be in [0, 1]. When the ratio of the count
5768
+ # of healthy backend endpoints in a zone to the count of backend
5769
+ # endpoints in that same zone is equal to or above this threshold, the
5770
+ # load balancer distributes new connections to all healthy endpoints in
5771
+ # the local zone only. When the ratio of the count of healthy backend
5772
+ # endpoints in a zone to the count of backend endpoints in that same
5773
+ # zone is below this threshold, the load balancer distributes all new
5774
+ # connections to all healthy endpoints across all zones.
5775
+ # Corresponds to the JSON property `spilloverRatio`
5776
+ # @return [Float]
5777
+ attr_accessor :spillover_ratio
5778
+
5779
+ def initialize(**args)
5780
+ update!(**args)
5781
+ end
5782
+
5783
+ # Update properties of this object
5784
+ def update!(**args)
5785
+ @spillover = args[:spillover] if args.key?(:spillover)
5786
+ @spillover_ratio = args[:spillover_ratio] if args.key?(:spillover_ratio)
5787
+ end
5788
+ end
5789
+
5714
5790
  # Additional Backend Service parameters.
5715
5791
  class BackendServiceParams
5716
5792
  include Google::Apis::Core::Hashable
@@ -11730,6 +11806,16 @@ module Google
11730
11806
  # @return [Array<String>]
11731
11807
  attr_accessor :dest_ip_ranges
11732
11808
 
11809
+ # Network context of the traffic destination. Allowed values are:
11810
+ #
11811
+ #
11812
+ # - UNSPECIFIED
11813
+ # - INTERNET
11814
+ # - NON_INTERNET
11815
+ # Corresponds to the JSON property `destNetworkContext`
11816
+ # @return [String]
11817
+ attr_accessor :dest_network_context
11818
+
11733
11819
  # Network type of the traffic destination. Allowed values are:
11734
11820
  #
11735
11821
  #
@@ -11778,6 +11864,18 @@ module Google
11778
11864
  # @return [Array<String>]
11779
11865
  attr_accessor :src_ip_ranges
11780
11866
 
11867
+ # Network context of the traffic source. Allowed values are:
11868
+ #
11869
+ #
11870
+ # - UNSPECIFIED
11871
+ # - INTERNET
11872
+ # - INTRA_VPC
11873
+ # - NON_INTERNET
11874
+ # - VPC_NETWORKS
11875
+ # Corresponds to the JSON property `srcNetworkContext`
11876
+ # @return [String]
11877
+ attr_accessor :src_network_context
11878
+
11781
11879
  # Network type of the traffic source. Allowed values are:
11782
11880
  #
11783
11881
  #
@@ -11827,6 +11925,7 @@ module Google
11827
11925
  @dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups)
11828
11926
  @dest_fqdns = args[:dest_fqdns] if args.key?(:dest_fqdns)
11829
11927
  @dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
11928
+ @dest_network_context = args[:dest_network_context] if args.key?(:dest_network_context)
11830
11929
  @dest_network_type = args[:dest_network_type] if args.key?(:dest_network_type)
11831
11930
  @dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
11832
11931
  @dest_threat_intelligences = args[:dest_threat_intelligences] if args.key?(:dest_threat_intelligences)
@@ -11834,6 +11933,7 @@ module Google
11834
11933
  @src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups)
11835
11934
  @src_fqdns = args[:src_fqdns] if args.key?(:src_fqdns)
11836
11935
  @src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
11936
+ @src_network_context = args[:src_network_context] if args.key?(:src_network_context)
11837
11937
  @src_network_type = args[:src_network_type] if args.key?(:src_network_type)
11838
11938
  @src_networks = args[:src_networks] if args.key?(:src_networks)
11839
11939
  @src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
@@ -28511,6 +28611,11 @@ module Google
28511
28611
  attr_accessor :os_license
28512
28612
  alias_method :os_license?, :os_license
28513
28613
 
28614
+ # Additional license params.
28615
+ # Corresponds to the JSON property `params`
28616
+ # @return [Google::Apis::ComputeV1::LicenseParams]
28617
+ attr_accessor :params
28618
+
28514
28619
  # If true, this license can be removed from a disk's set of licenses, with no
28515
28620
  # replacement license needed.
28516
28621
  # Corresponds to the JSON property `removableFromDisk`
@@ -28579,6 +28684,7 @@ module Google
28579
28684
  @multi_tenant_only = args[:multi_tenant_only] if args.key?(:multi_tenant_only)
28580
28685
  @name = args[:name] if args.key?(:name)
28581
28686
  @os_license = args[:os_license] if args.key?(:os_license)
28687
+ @params = args[:params] if args.key?(:params)
28582
28688
  @removable_from_disk = args[:removable_from_disk] if args.key?(:removable_from_disk)
28583
28689
  @required_coattached_licenses = args[:required_coattached_licenses] if args.key?(:required_coattached_licenses)
28584
28690
  @resource_requirements = args[:resource_requirements] if args.key?(:resource_requirements)
@@ -28697,6 +28803,32 @@ module Google
28697
28803
  end
28698
28804
  end
28699
28805
 
28806
+ # Additional license params.
28807
+ class LicenseParams
28808
+ include Google::Apis::Core::Hashable
28809
+
28810
+ # Input only. Resource manager tags to be bound to the license. Tag keys and
28811
+ # values
28812
+ # have the same definition as resource
28813
+ # manager tags. Keys and values can be either in numeric format,
28814
+ # such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
28815
+ # format such as ``org_id|project_id`/`tag_key_short_name`` and
28816
+ # ``tag_value_short_name``. The field is ignored (both PUT &
28817
+ # PATCH) when empty.
28818
+ # Corresponds to the JSON property `resourceManagerTags`
28819
+ # @return [Hash<String,String>]
28820
+ attr_accessor :resource_manager_tags
28821
+
28822
+ def initialize(**args)
28823
+ update!(**args)
28824
+ end
28825
+
28826
+ # Update properties of this object
28827
+ def update!(**args)
28828
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
28829
+ end
28830
+ end
28831
+
28700
28832
  # Commitment for a particular license resource.
28701
28833
  class LicenseResourceCommitment
28702
28834
  include Google::Apis::Core::Hashable
@@ -33330,6 +33462,11 @@ module Google
33330
33462
  # @return [Array<String>]
33331
33463
  attr_accessor :address_purposes
33332
33464
 
33465
+ # Specifies whether address creation is allowed.
33466
+ # Corresponds to the JSON property `allowAddressCreation`
33467
+ # @return [String]
33468
+ attr_accessor :allow_address_creation
33469
+
33333
33470
  # Specifies whether alias IP ranges (and secondary address ranges) are
33334
33471
  # allowed.
33335
33472
  # Corresponds to the JSON property `allowAliasIpRanges`
@@ -33367,6 +33504,11 @@ module Google
33367
33504
  # @return [String]
33368
33505
  attr_accessor :allow_external_ip_access
33369
33506
 
33507
+ # Specifies whether firewall policy can be attached to the network.
33508
+ # Corresponds to the JSON property `allowFirewallPolicy`
33509
+ # @return [String]
33510
+ attr_accessor :allow_firewall_policy
33511
+
33370
33512
  # Specifies whether Cloud Interconnect creation is allowed.
33371
33513
  # Corresponds to the JSON property `allowInterconnect`
33372
33514
  # @return [String]
@@ -33387,6 +33529,11 @@ module Google
33387
33529
  # @return [String]
33388
33530
  attr_accessor :allow_multi_nic_in_same_network
33389
33531
 
33532
+ # Specifies whether multi-nic in the same subnetwork is allowed.
33533
+ # Corresponds to the JSON property `allowMultiNicInSameSubnetwork`
33534
+ # @return [String]
33535
+ attr_accessor :allow_multi_nic_in_same_subnetwork
33536
+
33390
33537
  # Specifies whether multicast is allowed.
33391
33538
  # Corresponds to the JSON property `allowMulticast`
33392
33539
  # @return [String]
@@ -33432,6 +33579,16 @@ module Google
33432
33579
  # @return [String]
33433
33580
  attr_accessor :allow_sub_interfaces
33434
33581
 
33582
+ # Specifies whether subnetwork creation is allowed.
33583
+ # Corresponds to the JSON property `allowSubnetworkCreation`
33584
+ # @return [String]
33585
+ attr_accessor :allow_subnetwork_creation
33586
+
33587
+ # Specifies whether VPC firewall rules can be created under the network.
33588
+ # Corresponds to the JSON property `allowVpcFirewallRules`
33589
+ # @return [String]
33590
+ attr_accessor :allow_vpc_firewall_rules
33591
+
33435
33592
  # Specifies whether VPC peering is allowed.
33436
33593
  # Corresponds to the JSON property `allowVpcPeering`
33437
33594
  # @return [String]
@@ -33442,6 +33599,11 @@ module Google
33442
33599
  # @return [String]
33443
33600
  attr_accessor :allow_vpn
33444
33601
 
33602
+ #
33603
+ # Corresponds to the JSON property `firewallPolicyTypes`
33604
+ # @return [Array<String>]
33605
+ attr_accessor :firewall_policy_types
33606
+
33445
33607
  # If set, limits the interface types that the network supports. If
33446
33608
  # empty, all interface types are supported.
33447
33609
  # Corresponds to the JSON property `interfaceTypes`
@@ -33453,6 +33615,16 @@ module Google
33453
33615
  # @return [String]
33454
33616
  attr_accessor :multicast
33455
33617
 
33618
+ # Specifies a predefined internal IPv6 range for the network.
33619
+ # Corresponds to the JSON property `predefinedNetworkInternalIpv6Range`
33620
+ # @return [String]
33621
+ attr_accessor :predefined_network_internal_ipv6_range
33622
+
33623
+ # Predefined subnetwork ranges for the network.
33624
+ # Corresponds to the JSON property `predefinedSubnetworkRanges`
33625
+ # @return [Array<Google::Apis::ComputeV1::NetworkProfileNetworkFeaturesPredefinedSubnetworkRange>]
33626
+ attr_accessor :predefined_subnetwork_ranges
33627
+
33456
33628
  # Specifies which subnetwork purposes are supported.
33457
33629
  # Corresponds to the JSON property `subnetPurposes`
33458
33630
  # @return [Array<String>]
@@ -33485,6 +33657,7 @@ module Google
33485
33657
  # Update properties of this object
33486
33658
  def update!(**args)
33487
33659
  @address_purposes = args[:address_purposes] if args.key?(:address_purposes)
33660
+ @allow_address_creation = args[:allow_address_creation] if args.key?(:allow_address_creation)
33488
33661
  @allow_alias_ip_ranges = args[:allow_alias_ip_ranges] if args.key?(:allow_alias_ip_ranges)
33489
33662
  @allow_auto_mode_subnet = args[:allow_auto_mode_subnet] if args.key?(:allow_auto_mode_subnet)
33490
33663
  @allow_class_d_firewalls = args[:allow_class_d_firewalls] if args.key?(:allow_class_d_firewalls)
@@ -33492,10 +33665,12 @@ module Google
33492
33665
  @allow_cloud_router = args[:allow_cloud_router] if args.key?(:allow_cloud_router)
33493
33666
  @allow_default_nic_attachment = args[:allow_default_nic_attachment] if args.key?(:allow_default_nic_attachment)
33494
33667
  @allow_external_ip_access = args[:allow_external_ip_access] if args.key?(:allow_external_ip_access)
33668
+ @allow_firewall_policy = args[:allow_firewall_policy] if args.key?(:allow_firewall_policy)
33495
33669
  @allow_interconnect = args[:allow_interconnect] if args.key?(:allow_interconnect)
33496
33670
  @allow_ip_forwarding = args[:allow_ip_forwarding] if args.key?(:allow_ip_forwarding)
33497
33671
  @allow_load_balancing = args[:allow_load_balancing] if args.key?(:allow_load_balancing)
33498
33672
  @allow_multi_nic_in_same_network = args[:allow_multi_nic_in_same_network] if args.key?(:allow_multi_nic_in_same_network)
33673
+ @allow_multi_nic_in_same_subnetwork = args[:allow_multi_nic_in_same_subnetwork] if args.key?(:allow_multi_nic_in_same_subnetwork)
33499
33674
  @allow_multicast = args[:allow_multicast] if args.key?(:allow_multicast)
33500
33675
  @allow_ncc = args[:allow_ncc] if args.key?(:allow_ncc)
33501
33676
  @allow_network_migration = args[:allow_network_migration] if args.key?(:allow_network_migration)
@@ -33505,10 +33680,15 @@ module Google
33505
33680
  @allow_same_network_unicast = args[:allow_same_network_unicast] if args.key?(:allow_same_network_unicast)
33506
33681
  @allow_static_routes = args[:allow_static_routes] if args.key?(:allow_static_routes)
33507
33682
  @allow_sub_interfaces = args[:allow_sub_interfaces] if args.key?(:allow_sub_interfaces)
33683
+ @allow_subnetwork_creation = args[:allow_subnetwork_creation] if args.key?(:allow_subnetwork_creation)
33684
+ @allow_vpc_firewall_rules = args[:allow_vpc_firewall_rules] if args.key?(:allow_vpc_firewall_rules)
33508
33685
  @allow_vpc_peering = args[:allow_vpc_peering] if args.key?(:allow_vpc_peering)
33509
33686
  @allow_vpn = args[:allow_vpn] if args.key?(:allow_vpn)
33687
+ @firewall_policy_types = args[:firewall_policy_types] if args.key?(:firewall_policy_types)
33510
33688
  @interface_types = args[:interface_types] if args.key?(:interface_types)
33511
33689
  @multicast = args[:multicast] if args.key?(:multicast)
33690
+ @predefined_network_internal_ipv6_range = args[:predefined_network_internal_ipv6_range] if args.key?(:predefined_network_internal_ipv6_range)
33691
+ @predefined_subnetwork_ranges = args[:predefined_subnetwork_ranges] if args.key?(:predefined_subnetwork_ranges)
33512
33692
  @subnet_purposes = args[:subnet_purposes] if args.key?(:subnet_purposes)
33513
33693
  @subnet_stack_types = args[:subnet_stack_types] if args.key?(:subnet_stack_types)
33514
33694
  @subnetwork_purposes = args[:subnetwork_purposes] if args.key?(:subnetwork_purposes)
@@ -33517,6 +33697,31 @@ module Google
33517
33697
  end
33518
33698
  end
33519
33699
 
33700
+ #
33701
+ class NetworkProfileNetworkFeaturesPredefinedSubnetworkRange
33702
+ include Google::Apis::Core::Hashable
33703
+
33704
+ # The IPv6 range of the predefined subnetwork.
33705
+ # Corresponds to the JSON property `ipv6Range`
33706
+ # @return [String]
33707
+ attr_accessor :ipv6_range
33708
+
33709
+ # The naming prefix of the predefined subnetwork.
33710
+ # Corresponds to the JSON property `namePrefix`
33711
+ # @return [String]
33712
+ attr_accessor :name_prefix
33713
+
33714
+ def initialize(**args)
33715
+ update!(**args)
33716
+ end
33717
+
33718
+ # Update properties of this object
33719
+ def update!(**args)
33720
+ @ipv6_range = args[:ipv6_range] if args.key?(:ipv6_range)
33721
+ @name_prefix = args[:name_prefix] if args.key?(:name_prefix)
33722
+ end
33723
+ end
33724
+
33520
33725
  #
33521
33726
  class NetworkProfileProfileType
33522
33727
  include Google::Apis::Core::Hashable
@@ -42301,6 +42506,13 @@ module Google
42301
42506
  # @return [Fixnum]
42302
42507
  attr_accessor :in_use_count
42303
42508
 
42509
+ # Output only. Number of hosts currently in use. If there is one or more
42510
+ # Instances running
42511
+ # on the host, it is considered in use.
42512
+ # Corresponds to the JSON property `inUseHostCount`
42513
+ # @return [Fixnum]
42514
+ attr_accessor :in_use_host_count
42515
+
42304
42516
  # Output only. [Output Only] Type of the resource. Alwayscompute#
42305
42517
  # reservationBlock for reservation blocks.
42306
42518
  # Corresponds to the JSON property `kind`
@@ -42373,6 +42585,7 @@ module Google
42373
42585
  @health_info = args[:health_info] if args.key?(:health_info)
42374
42586
  @id = args[:id] if args.key?(:id)
42375
42587
  @in_use_count = args[:in_use_count] if args.key?(:in_use_count)
42588
+ @in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
42376
42589
  @kind = args[:kind] if args.key?(:kind)
42377
42590
  @name = args[:name] if args.key?(:name)
42378
42591
  @physical_topology = args[:physical_topology] if args.key?(:physical_topology)
@@ -42813,6 +43026,13 @@ module Google
42813
43026
  # @return [Fixnum]
42814
43027
  attr_accessor :in_use_count
42815
43028
 
43029
+ # Output only. Number of hosts currently in use. If there is one or more
43030
+ # Instances running
43031
+ # on the host, it is considered in use.
43032
+ # Corresponds to the JSON property `inUseHostCount`
43033
+ # @return [Fixnum]
43034
+ attr_accessor :in_use_host_count
43035
+
42816
43036
  # Output only. [Output Only] Type of the resource. Alwayscompute#
42817
43037
  # reservationSubBlock for reservation subBlocks.
42818
43038
  # Corresponds to the JSON property `kind`
@@ -42871,6 +43091,7 @@ module Google
42871
43091
  @health_info = args[:health_info] if args.key?(:health_info)
42872
43092
  @id = args[:id] if args.key?(:id)
42873
43093
  @in_use_count = args[:in_use_count] if args.key?(:in_use_count)
43094
+ @in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
42874
43095
  @kind = args[:kind] if args.key?(:kind)
42875
43096
  @name = args[:name] if args.key?(:name)
42876
43097
  @physical_topology = args[:physical_topology] if args.key?(:physical_topology)
@@ -51315,6 +51536,11 @@ module Google
51315
51536
  # @return [Array<Google::Apis::ComputeV1::NetworkInterface>]
51316
51537
  attr_accessor :network_interfaces
51317
51538
 
51539
+ # PostKeyRevocationActionType of the instance.
51540
+ # Corresponds to the JSON property `postKeyRevocationActionType`
51541
+ # @return [String]
51542
+ attr_accessor :post_key_revocation_action_type
51543
+
51318
51544
  # Sets the scheduling options for an Instance.
51319
51545
  # Corresponds to the JSON property `scheduling`
51320
51546
  # @return [Google::Apis::ComputeV1::Scheduling]
@@ -51350,6 +51576,7 @@ module Google
51350
51576
  @metadata = args[:metadata] if args.key?(:metadata)
51351
51577
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
51352
51578
  @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
51579
+ @post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
51353
51580
  @scheduling = args[:scheduling] if args.key?(:scheduling)
51354
51581
  @service_accounts = args[:service_accounts] if args.key?(:service_accounts)
51355
51582
  @tags = args[:tags] if args.key?(:tags)
@@ -52668,6 +52895,11 @@ module Google
52668
52895
  # @return [String]
52669
52896
  attr_accessor :description
52670
52897
 
52898
+ # Exapool provisioned capacities for each SKU type
52899
+ # Corresponds to the JSON property `exapoolProvisionedCapacityGb`
52900
+ # @return [Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb]
52901
+ attr_accessor :exapool_provisioned_capacity_gb
52902
+
52671
52903
  # Output only. [Output Only] The unique identifier for the resource. This
52672
52904
  # identifier is
52673
52905
  # defined by the server.
@@ -52711,6 +52943,11 @@ module Google
52711
52943
  # @return [String]
52712
52944
  attr_accessor :name
52713
52945
 
52946
+ # Additional storage pool params.
52947
+ # Corresponds to the JSON property `params`
52948
+ # @return [Google::Apis::ComputeV1::StoragePoolParams]
52949
+ attr_accessor :params
52950
+
52714
52951
  # Provisioning type of the performance-related parameters of the pool,
52715
52952
  # such as throughput and IOPS.
52716
52953
  # Corresponds to the JSON property `performanceProvisioningType`
@@ -52789,11 +53026,13 @@ module Google
52789
53026
  @capacity_provisioning_type = args[:capacity_provisioning_type] if args.key?(:capacity_provisioning_type)
52790
53027
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
52791
53028
  @description = args[:description] if args.key?(:description)
53029
+ @exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
52792
53030
  @id = args[:id] if args.key?(:id)
52793
53031
  @kind = args[:kind] if args.key?(:kind)
52794
53032
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
52795
53033
  @labels = args[:labels] if args.key?(:labels)
52796
53034
  @name = args[:name] if args.key?(:name)
53035
+ @params = args[:params] if args.key?(:params)
52797
53036
  @performance_provisioning_type = args[:performance_provisioning_type] if args.key?(:performance_provisioning_type)
52798
53037
  @pool_provisioned_capacity_gb = args[:pool_provisioned_capacity_gb] if args.key?(:pool_provisioned_capacity_gb)
52799
53038
  @pool_provisioned_iops = args[:pool_provisioned_iops] if args.key?(:pool_provisioned_iops)
@@ -53028,6 +53267,40 @@ module Google
53028
53267
  end
53029
53268
  end
53030
53269
 
53270
+ # Exapool provisioned capacities for each SKU type
53271
+ class StoragePoolExapoolProvisionedCapacityGb
53272
+ include Google::Apis::Core::Hashable
53273
+
53274
+ # Output only. Size, in GiB, of provisioned capacity-optimized capacity for this
53275
+ # Exapool
53276
+ # Corresponds to the JSON property `capacityOptimized`
53277
+ # @return [Fixnum]
53278
+ attr_accessor :capacity_optimized
53279
+
53280
+ # Output only. Size, in GiB, of provisioned read-optimized capacity for this
53281
+ # Exapool
53282
+ # Corresponds to the JSON property `readOptimized`
53283
+ # @return [Fixnum]
53284
+ attr_accessor :read_optimized
53285
+
53286
+ # Output only. Size, in GiB, of provisioned write-optimized capacity for this
53287
+ # Exapool
53288
+ # Corresponds to the JSON property `writeOptimized`
53289
+ # @return [Fixnum]
53290
+ attr_accessor :write_optimized
53291
+
53292
+ def initialize(**args)
53293
+ update!(**args)
53294
+ end
53295
+
53296
+ # Update properties of this object
53297
+ def update!(**args)
53298
+ @capacity_optimized = args[:capacity_optimized] if args.key?(:capacity_optimized)
53299
+ @read_optimized = args[:read_optimized] if args.key?(:read_optimized)
53300
+ @write_optimized = args[:write_optimized] if args.key?(:write_optimized)
53301
+ end
53302
+ end
53303
+
53031
53304
  # A list of StoragePool resources.
53032
53305
  class StoragePoolList
53033
53306
  include Google::Apis::Core::Hashable
@@ -53307,6 +53580,32 @@ module Google
53307
53580
  end
53308
53581
  end
53309
53582
 
53583
+ # Additional storage pool params.
53584
+ class StoragePoolParams
53585
+ include Google::Apis::Core::Hashable
53586
+
53587
+ # Input only. Resource manager tags to be bound to the storage pool. Tag keys
53588
+ # and values
53589
+ # have the same definition as resource
53590
+ # manager tags. Keys and values can be either in numeric format,
53591
+ # such as `tagKeys/`tag_key_id`` and `tagValues/456` or in namespaced
53592
+ # format such as ``org_id|project_id`/`tag_key_short_name`` and
53593
+ # ``tag_value_short_name``. The field is ignored (both PUT &
53594
+ # PATCH) when empty.
53595
+ # Corresponds to the JSON property `resourceManagerTags`
53596
+ # @return [Hash<String,String>]
53597
+ attr_accessor :resource_manager_tags
53598
+
53599
+ def initialize(**args)
53600
+ update!(**args)
53601
+ end
53602
+
53603
+ # Update properties of this object
53604
+ def update!(**args)
53605
+ @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
53606
+ end
53607
+ end
53608
+
53310
53609
  # [Output Only] Contains output only fields.
53311
53610
  class StoragePoolResourceStatus
53312
53611
  include Google::Apis::Core::Hashable
@@ -53316,6 +53615,28 @@ module Google
53316
53615
  # @return [Fixnum]
53317
53616
  attr_accessor :disk_count
53318
53617
 
53618
+ # Output only. [Output Only] Maximum allowed read IOPS for this Exapool.
53619
+ # Corresponds to the JSON property `exapoolMaxReadIops`
53620
+ # @return [Fixnum]
53621
+ attr_accessor :exapool_max_read_iops
53622
+
53623
+ # Output only. [Output Only] Maximum allowed read throughput in MiB/s for
53624
+ # this Exapool.
53625
+ # Corresponds to the JSON property `exapoolMaxReadThroughput`
53626
+ # @return [Fixnum]
53627
+ attr_accessor :exapool_max_read_throughput
53628
+
53629
+ # Output only. [Output Only] Maximum allowed write IOPS for this Exapool.
53630
+ # Corresponds to the JSON property `exapoolMaxWriteIops`
53631
+ # @return [Fixnum]
53632
+ attr_accessor :exapool_max_write_iops
53633
+
53634
+ # Output only. [Output Only] Maximum allowed write throughput in MiB/s
53635
+ # for this Exapool.
53636
+ # Corresponds to the JSON property `exapoolMaxWriteThroughput`
53637
+ # @return [Fixnum]
53638
+ attr_accessor :exapool_max_write_throughput
53639
+
53319
53640
  # Output only. [Output Only] Timestamp of the last successful resize inRFC3339
53320
53641
  # text format.
53321
53642
  # Corresponds to the JSON property `lastResizeTimestamp`
@@ -53379,6 +53700,10 @@ module Google
53379
53700
  # Update properties of this object
53380
53701
  def update!(**args)
53381
53702
  @disk_count = args[:disk_count] if args.key?(:disk_count)
53703
+ @exapool_max_read_iops = args[:exapool_max_read_iops] if args.key?(:exapool_max_read_iops)
53704
+ @exapool_max_read_throughput = args[:exapool_max_read_throughput] if args.key?(:exapool_max_read_throughput)
53705
+ @exapool_max_write_iops = args[:exapool_max_write_iops] if args.key?(:exapool_max_write_iops)
53706
+ @exapool_max_write_throughput = args[:exapool_max_write_throughput] if args.key?(:exapool_max_write_throughput)
53382
53707
  @last_resize_timestamp = args[:last_resize_timestamp] if args.key?(:last_resize_timestamp)
53383
53708
  @max_total_provisioned_disk_capacity_gb = args[:max_total_provisioned_disk_capacity_gb] if args.key?(:max_total_provisioned_disk_capacity_gb)
53384
53709
  @pool_used_capacity_bytes = args[:pool_used_capacity_bytes] if args.key?(:pool_used_capacity_bytes)
@@ -54001,7 +54326,8 @@ module Google
54001
54326
  # explicitly set, it will not appear in get listings. If not set
54002
54327
  # the default behavior is determined by the org policy, if there is no org
54003
54328
  # policy specified, then it will default to disabled. This field isn't
54004
- # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY.
54329
+ # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY. It is
54330
+ # recommended to uselogConfig.enable field instead.
54005
54331
  # Corresponds to the JSON property `enableFlowLogs`
54006
54332
  # @return [Boolean]
54007
54333
  attr_accessor :enable_flow_logs
@@ -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.136.0"
19
+ GEM_VERSION = "0.138.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 = "20251202"
25
+ REVISION = "20251230"
26
26
  end
27
27
  end
28
28
  end