google-apis-compute_alpha 0.96.0 → 0.98.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: 9048b0672bf79876660c692161f0c8b43df6c3b8499cff78376beb0e9303b3bd
4
- data.tar.gz: ddf19c8d18e22f727a789623494b5cfa8184d4801d2564300c0cd5d71968e9af
3
+ metadata.gz: 8f24cd0c05b39f06ca2d7f2374d041361471efab3ab1dc4b34a312c62289f549
4
+ data.tar.gz: f9026f65062787de748c5d416650f639d9fa5241fb971d3af65b30d17f5efdea
5
5
  SHA512:
6
- metadata.gz: fec8c660db8f73cf95337541d51893f7e346d59bf57ba215ad926c9eec79ab7b3d5fdb98a0cf8a77c672f7adda9892dcc276309785ea96bfc18ee92582bcda35
7
- data.tar.gz: 12d76d75719c3dc25e514bbf23ed7b5623569c5788769260aee802d9deb05e2b9eeeeb4ab0368416d3068d47c1a82b65db6fb7e2ae1abfbbbb3b9753a089924e
6
+ metadata.gz: 621d53d69ffd60b35eab56d6202f64b6f6bee207a49ee8be4331e56e5b426699caa54434e60163bc6b3622803aaa4ef0f351c03db25219a82db248a54e5dafa4
7
+ data.tar.gz: 6a8e29c63a477db80042cca300c3470c8a8df99b7130ee4fb883549ebed0e4c28885cb745df655a5cffa8946dd764c4665ed876f138d3caa1928305d52486493
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.98.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240407
6
+
7
+ ### v0.97.0 (2024-04-07)
8
+
9
+ * Regenerated from discovery document revision 20240326
10
+
3
11
  ### v0.96.0 (2024-03-31)
4
12
 
5
13
  * Regenerated from discovery document revision 20240324
@@ -3667,16 +3667,17 @@ module Google
3667
3667
  attr_accessor :enable_cdn
3668
3668
  alias_method :enable_cdn?, :enable_cdn
3669
3669
 
3670
- # Specifies the canary migration state. Possible values are PREPARE, TEST, and
3671
- # FINALIZE. To begin the migration from EXTERNAL to EXTERNAL_MANAGED, the state
3672
- # must be changed to PREPARE. The state must be changed to FINALIZE before the
3673
- # loadBalancingScheme can be changed to EXTERNAL_MANAGED. Optionally, the TEST
3674
- # state can be used to migrate traffic by percentage using
3675
- # externalManagedMigrationTestingPercentage. Rolling back a migration requires
3676
- # the states to be set in reverse order. So changing the scheme from
3677
- # EXTERNAL_MANAGED to EXTERNAL requires the state to be set to FINALIZE at the
3678
- # same time. Optionally, the TEST state can be used to migrate some traffic back
3679
- # to EXTERNAL or PREPARE can be used to migrate all traffic back to EXTERNAL.
3670
+ # Specifies the canary migration state. Possible values are PREPARE,
3671
+ # TEST_BY_PERCENTAGE, and TEST_ALL_TRAFFIC. To begin the migration from EXTERNAL
3672
+ # to EXTERNAL_MANAGED, the state must be changed to PREPARE. The state must be
3673
+ # changed to TEST_ALL_TRAFFIC before the loadBalancingScheme can be changed to
3674
+ # EXTERNAL_MANAGED. Optionally, the TEST_BY_PERCENTAGE state can be used to
3675
+ # migrate traffic by percentage using externalManagedMigrationTestingPercentage.
3676
+ # Rolling back a migration requires the states to be set in reverse order. So
3677
+ # changing the scheme from EXTERNAL_MANAGED to EXTERNAL requires the state to be
3678
+ # set to TEST_ALL_TRAFFIC at the same time. Optionally, the TEST_BY_PERCENTAGE
3679
+ # state can be used to migrate some traffic back to EXTERNAL or PREPARE can be
3680
+ # used to migrate all traffic back to EXTERNAL.
3680
3681
  # Corresponds to the JSON property `externalManagedMigrationState`
3681
3682
  # @return [String]
3682
3683
  attr_accessor :external_managed_migration_state
@@ -3684,9 +3685,10 @@ module Google
3684
3685
  # Determines the fraction of requests that should be processed by the Global
3685
3686
  # external Application Load Balancer. The value of this field must be in the
3686
3687
  # range [0, 100]. Session affinity options will slightly affect this routing
3687
- # behavior, for more details, see: Session Affinity. This value is only used if
3688
- # the loadBalancingScheme in the BackendService is set to EXTERNAL when using
3689
- # the classic Application Load Balancer.
3688
+ # behavior, for more details, see: Session Affinity. This value can only be set
3689
+ # if the loadBalancingScheme in the BackendService is set to EXTERNAL (when
3690
+ # using the classic Application Load Balancer) and the migration state is
3691
+ # TEST_BY_PERCENTAGE.
3690
3692
  # Corresponds to the JSON property `externalManagedMigrationTestingPercentage`
3691
3693
  # @return [Float]
3692
3694
  attr_accessor :external_managed_migration_testing_percentage
@@ -3853,6 +3855,12 @@ module Google
3853
3855
  # @return [String]
3854
3856
  attr_accessor :network
3855
3857
 
3858
+ # Configures traffic steering properties of internal passthrough Network Load
3859
+ # Balancers.
3860
+ # Corresponds to the JSON property `networkPassThroughLbTrafficPolicy`
3861
+ # @return [Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy]
3862
+ attr_accessor :network_pass_through_lb_traffic_policy
3863
+
3856
3864
  # Settings controlling the eviction of unhealthy hosts from the load balancing
3857
3865
  # pool for the backend service.
3858
3866
  # Corresponds to the JSON property `outlierDetection`
@@ -4011,6 +4019,7 @@ module Google
4011
4019
  @metadatas = args[:metadatas] if args.key?(:metadatas)
4012
4020
  @name = args[:name] if args.key?(:name)
4013
4021
  @network = args[:network] if args.key?(:network)
4022
+ @network_pass_through_lb_traffic_policy = args[:network_pass_through_lb_traffic_policy] if args.key?(:network_pass_through_lb_traffic_policy)
4014
4023
  @outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
4015
4024
  @port = args[:port] if args.key?(:port)
4016
4025
  @port_name = args[:port_name] if args.key?(:port_name)
@@ -5043,6 +5052,68 @@ module Google
5043
5052
  end
5044
5053
  end
5045
5054
 
5055
+ #
5056
+ class BackendServiceNetworkPassThroughLbTrafficPolicy
5057
+ include Google::Apis::Core::Hashable
5058
+
5059
+ # When configured, new connections are load balanced across healthy backend
5060
+ # endpoints in the local zone.
5061
+ # Corresponds to the JSON property `zonalAffinity`
5062
+ # @return [Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity]
5063
+ attr_accessor :zonal_affinity
5064
+
5065
+ def initialize(**args)
5066
+ update!(**args)
5067
+ end
5068
+
5069
+ # Update properties of this object
5070
+ def update!(**args)
5071
+ @zonal_affinity = args[:zonal_affinity] if args.key?(:zonal_affinity)
5072
+ end
5073
+ end
5074
+
5075
+ #
5076
+ class BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity
5077
+ include Google::Apis::Core::Hashable
5078
+
5079
+ # This field indicates whether zonal affinity is enabled or not. The possible
5080
+ # values are: - ZONAL_AFFINITY_DISABLED: Default Value. Zonal Affinity is
5081
+ # disabled. The load balancer distributes new connections to all healthy backend
5082
+ # endpoints across all zones. - ZONAL_AFFINITY_STAY_WITHIN_ZONE: Zonal Affinity
5083
+ # is enabled. The load balancer distributes new connections to all healthy
5084
+ # backend endpoints in the local zone only. If there are no healthy backend
5085
+ # endpoints in the local zone, the load balancer distributes new connections to
5086
+ # all backend endpoints in the local zone. - ZONAL_AFFINITY_SPILL_CROSS_ZONE:
5087
+ # Zonal Affinity is enabled. The load balancer distributes new connections to
5088
+ # all healthy backend endpoints in the local zone only. If there aren't enough
5089
+ # healthy backend endpoints in the local zone, the load balancer distributes new
5090
+ # connections to all healthy backend endpoints across all zones.
5091
+ # Corresponds to the JSON property `spillover`
5092
+ # @return [String]
5093
+ attr_accessor :spillover
5094
+
5095
+ # The value of the field must be in [0, 1]. When the ratio of the count of
5096
+ # healthy backend endpoints in a zone to the count of backend endpoints in that
5097
+ # same zone is equal to or above this threshold, the load balancer distributes
5098
+ # new connections to all healthy endpoints in the local zone only. When the
5099
+ # ratio of the count of healthy backend endpoints in a zone to the count of
5100
+ # backend endpoints in that same zone is below this threshold, the load balancer
5101
+ # distributes all new connections to all healthy endpoints across all zones.
5102
+ # Corresponds to the JSON property `spilloverRatio`
5103
+ # @return [Float]
5104
+ attr_accessor :spillover_ratio
5105
+
5106
+ def initialize(**args)
5107
+ update!(**args)
5108
+ end
5109
+
5110
+ # Update properties of this object
5111
+ def update!(**args)
5112
+ @spillover = args[:spillover] if args.key?(:spillover)
5113
+ @spillover_ratio = args[:spillover_ratio] if args.key?(:spillover_ratio)
5114
+ end
5115
+ end
5116
+
5046
5117
  #
5047
5118
  class BackendServiceReference
5048
5119
  include Google::Apis::Core::Hashable
@@ -10739,25 +10810,28 @@ module Google
10739
10810
  attr_accessor :description
10740
10811
 
10741
10812
  # Specifies the canary migration state for the backend buckets attached to this
10742
- # forwarding rule. Possible values are PREPARE, TEST, and FINALIZE. To begin the
10743
- # migration from EXTERNAL to EXTERNAL_MANAGED, the state must be changed to
10744
- # PREPARE. The state must be changed to FINALIZE before the loadBalancingScheme
10745
- # can be changed to EXTERNAL_MANAGED. Optionally, the TEST state can be used to
10813
+ # forwarding rule. Possible values are PREPARE, TEST_BY_PERCENTAGE, and
10814
+ # TEST_ALL_TRAFFIC. To begin the migration from EXTERNAL to EXTERNAL_MANAGED,
10815
+ # the state must be changed to PREPARE. The state must be changed to
10816
+ # TEST_ALL_TRAFFIC before the loadBalancingScheme can be changed to
10817
+ # EXTERNAL_MANAGED. Optionally, the TEST_BY_PERCENTAGE state can be used to
10746
10818
  # migrate traffic to backend buckets attached to this forwarding rule by
10747
10819
  # percentage using externalManagedBackendBucketMigrationTestingPercentage.
10748
10820
  # Rolling back a migration requires the states to be set in reverse order. So
10749
10821
  # changing the scheme from EXTERNAL_MANAGED to EXTERNAL requires the state to be
10750
- # set to FINALIZE at the same time. Optionally, the TEST state can be used to
10751
- # migrate some traffic back to EXTERNAL or PREPARE can be used to migrate all
10752
- # traffic back to EXTERNAL.
10822
+ # set to TEST_ALL_TRAFFIC at the same time. Optionally, the TEST_BY_PERCENTAGE
10823
+ # state can be used to migrate some traffic back to EXTERNAL or PREPARE can be
10824
+ # used to migrate all traffic back to EXTERNAL.
10753
10825
  # Corresponds to the JSON property `externalManagedBackendBucketMigrationState`
10754
10826
  # @return [String]
10755
10827
  attr_accessor :external_managed_backend_bucket_migration_state
10756
10828
 
10757
10829
  # Determines the fraction of requests to backend buckets that should be
10758
- # processed by the Global external Application Load Balancer. The value of this
10759
- # field must be in the range [0, 100]. This value is only used if the
10760
- # loadBalancingScheme is set to EXTERNAL (when using the Classic ALB).
10830
+ # processed by the global external Application Load Balancer. The value of this
10831
+ # field must be in the range [0, 100]. This value can only be set if the
10832
+ # loadBalancingScheme in the BackendService is set to EXTERNAL (when using the
10833
+ # classic Application Load Balancer) and the migration state is
10834
+ # TEST_BY_PERCENTAGE.
10761
10835
  # Corresponds to the JSON property `externalManagedBackendBucketMigrationTestingPercentage`
10762
10836
  # @return [Float]
10763
10837
  attr_accessor :external_managed_backend_bucket_migration_testing_percentage
@@ -20982,6 +21056,12 @@ module Google
20982
21056
  # @return [String]
20983
21057
  attr_accessor :name
20984
21058
 
21059
+ # [Output only] Priority of firewall policy association. Not applicable for type=
21060
+ # HIERARCHY.
21061
+ # Corresponds to the JSON property `priority`
21062
+ # @return [Fixnum]
21063
+ attr_accessor :priority
21064
+
20985
21065
  # The rules that apply to the network.
20986
21066
  # Corresponds to the JSON property `rules`
20987
21067
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
@@ -21006,6 +21086,7 @@ module Google
21006
21086
  def update!(**args)
21007
21087
  @display_name = args[:display_name] if args.key?(:display_name)
21008
21088
  @name = args[:name] if args.key?(:name)
21089
+ @priority = args[:priority] if args.key?(:priority)
21009
21090
  @rules = args[:rules] if args.key?(:rules)
21010
21091
  @short_name = args[:short_name] if args.key?(:short_name)
21011
21092
  @type = args[:type] if args.key?(:type)
@@ -21937,6 +22018,12 @@ module Google
21937
22018
  attr_accessor :admin_enabled
21938
22019
  alias_method :admin_enabled?, :admin_enabled
21939
22020
 
22021
+ # Configuration information for enabling Application Aware Interconnect (AAI) on
22022
+ # this Cloud Interconnect connection between Google and your on-premises router.
22023
+ # Corresponds to the JSON property `applicationAwareInterconnect`
22024
+ # @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect]
22025
+ attr_accessor :application_aware_interconnect
22026
+
21940
22027
  # [Output only] List of features available for this Interconnect connection,
21941
22028
  # which can take one of the following values: - MACSEC If present then the
21942
22029
  # Interconnect connection is provisioned on MACsec capable hardware ports. If
@@ -22158,6 +22245,7 @@ module Google
22158
22245
  # Update properties of this object
22159
22246
  def update!(**args)
22160
22247
  @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled)
22248
+ @application_aware_interconnect = args[:application_aware_interconnect] if args.key?(:application_aware_interconnect)
22161
22249
  @available_features = args[:available_features] if args.key?(:available_features)
22162
22250
  @circuit_infos = args[:circuit_infos] if args.key?(:circuit_infos)
22163
22251
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -22191,6 +22279,99 @@ module Google
22191
22279
  end
22192
22280
  end
22193
22281
 
22282
+ # Configuration information for enabling Application Aware Interconnect (AAI) on
22283
+ # this Cloud Interconnect connection between Google and your on-premises router.
22284
+ class InterconnectApplicationAwareInterconnect
22285
+ include Google::Apis::Core::Hashable
22286
+
22287
+ #
22288
+ # Corresponds to the JSON property `bandwidthPercentagePolicy`
22289
+ # @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy]
22290
+ attr_accessor :bandwidth_percentage_policy
22291
+
22292
+ # A description for the AAI profile on this interconnect.
22293
+ # Corresponds to the JSON property `profileDescription`
22294
+ # @return [String]
22295
+ attr_accessor :profile_description
22296
+
22297
+ # Specify configuration for StrictPriorityPolicy.
22298
+ # Corresponds to the JSON property `strictPriorityPolicy`
22299
+ # @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy]
22300
+ attr_accessor :strict_priority_policy
22301
+
22302
+ def initialize(**args)
22303
+ update!(**args)
22304
+ end
22305
+
22306
+ # Update properties of this object
22307
+ def update!(**args)
22308
+ @bandwidth_percentage_policy = args[:bandwidth_percentage_policy] if args.key?(:bandwidth_percentage_policy)
22309
+ @profile_description = args[:profile_description] if args.key?(:profile_description)
22310
+ @strict_priority_policy = args[:strict_priority_policy] if args.key?(:strict_priority_policy)
22311
+ end
22312
+ end
22313
+
22314
+ # Specify bandwidth percentages (0-100) for various traffic classes in
22315
+ # BandwidthPercentagePolicy. The sum of all percentages must equal 100. It is
22316
+ # valid to specify percentages for some classes and not for others. The others
22317
+ # will be implicitly marked as 0.
22318
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
22319
+ include Google::Apis::Core::Hashable
22320
+
22321
+ # Bandwidth percentage for a specific traffic class.
22322
+ # Corresponds to the JSON property `percentage`
22323
+ # @return [Fixnum]
22324
+ attr_accessor :percentage
22325
+
22326
+ # TrafficClass whose bandwidth percentage is being specified.
22327
+ # Corresponds to the JSON property `trafficClass`
22328
+ # @return [String]
22329
+ attr_accessor :traffic_class
22330
+
22331
+ def initialize(**args)
22332
+ update!(**args)
22333
+ end
22334
+
22335
+ # Update properties of this object
22336
+ def update!(**args)
22337
+ @percentage = args[:percentage] if args.key?(:percentage)
22338
+ @traffic_class = args[:traffic_class] if args.key?(:traffic_class)
22339
+ end
22340
+ end
22341
+
22342
+ #
22343
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
22344
+ include Google::Apis::Core::Hashable
22345
+
22346
+ # Specify bandwidth percentages for various traffic classes for queuing type
22347
+ # Bandwidth Percent.
22348
+ # Corresponds to the JSON property `bandwidthPercentages`
22349
+ # @return [Array<Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage>]
22350
+ attr_accessor :bandwidth_percentages
22351
+
22352
+ def initialize(**args)
22353
+ update!(**args)
22354
+ end
22355
+
22356
+ # Update properties of this object
22357
+ def update!(**args)
22358
+ @bandwidth_percentages = args[:bandwidth_percentages] if args.key?(:bandwidth_percentages)
22359
+ end
22360
+ end
22361
+
22362
+ # Specify configuration for StrictPriorityPolicy.
22363
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
22364
+ include Google::Apis::Core::Hashable
22365
+
22366
+ def initialize(**args)
22367
+ update!(**args)
22368
+ end
22369
+
22370
+ # Update properties of this object
22371
+ def update!(**args)
22372
+ end
22373
+ end
22374
+
22194
22375
  # Represents an Interconnect Attachment (VLAN) resource. You can use
22195
22376
  # Interconnect attachments (VLANS) to connect your Virtual Private Cloud
22196
22377
  # networks to your on-premises networks through an Interconnect. For more
@@ -27899,6 +28080,12 @@ module Google
27899
28080
  # @return [Hash<String,String>]
27900
28081
  attr_accessor :annotations
27901
28082
 
28083
+ # Represents the port number to which PSC consumer sends packets. Only valid for
28084
+ # network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
28085
+ # Corresponds to the JSON property `clientDestinationPort`
28086
+ # @return [Fixnum]
28087
+ attr_accessor :client_destination_port
28088
+
27902
28089
  # Represents the port number to which PSC consumer sends packets. Only valid for
27903
28090
  # network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
27904
28091
  # Corresponds to the JSON property `clientPort`
@@ -27961,6 +28148,7 @@ module Google
27961
28148
  # Update properties of this object
27962
28149
  def update!(**args)
27963
28150
  @annotations = args[:annotations] if args.key?(:annotations)
28151
+ @client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
27964
28152
  @client_port = args[:client_port] if args.key?(:client_port)
27965
28153
  @fqdn = args[:fqdn] if args.key?(:fqdn)
27966
28154
  @instance = args[:instance] if args.key?(:instance)
@@ -28065,7 +28253,7 @@ module Google
28065
28253
 
28066
28254
  # Type of network endpoints in this network endpoint group. Can be one of
28067
28255
  # GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
28068
- # INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
28256
+ # INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
28069
28257
  # Corresponds to the JSON property `networkEndpointType`
28070
28258
  # @return [String]
28071
28259
  attr_accessor :network_endpoint_type
@@ -29949,6 +30137,12 @@ module Google
29949
30137
  # @return [String]
29950
30138
  attr_accessor :name
29951
30139
 
30140
+ # [Output only] Priority of firewall policy association. Not applicable for type=
30141
+ # HIERARCHY.
30142
+ # Corresponds to the JSON property `priority`
30143
+ # @return [Fixnum]
30144
+ attr_accessor :priority
30145
+
29952
30146
  # The rules that apply to the network.
29953
30147
  # Corresponds to the JSON property `rules`
29954
30148
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
@@ -29972,6 +30166,7 @@ module Google
29972
30166
  def update!(**args)
29973
30167
  @display_name = args[:display_name] if args.key?(:display_name)
29974
30168
  @name = args[:name] if args.key?(:name)
30169
+ @priority = args[:priority] if args.key?(:priority)
29975
30170
  @rules = args[:rules] if args.key?(:rules)
29976
30171
  @short_name = args[:short_name] if args.key?(:short_name)
29977
30172
  @type = args[:type] if args.key?(:type)
@@ -33485,8 +33680,7 @@ module Google
33485
33680
  # ingress) or destination (egress) IP in the IP header. If no ranges are
33486
33681
  # specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
33487
33682
  # If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
33488
- # mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0". Note:
33489
- # Support for IPv6 traffic is in preview.
33683
+ # mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
33490
33684
  # Corresponds to the JSON property `cidrRanges`
33491
33685
  # @return [Array<String>]
33492
33686
  attr_accessor :cidr_ranges
@@ -33906,8 +34100,9 @@ module Google
33906
34100
  # header transformations, before forwarding the request to the selected backend.
33907
34101
  # If defaultRouteAction specifies any weightedBackendServices, defaultService
33908
34102
  # must not be set. Conversely if defaultService is set, defaultRouteAction
33909
- # cannot contain any weightedBackendServices. Only one of defaultRouteAction or
33910
- # defaultUrlRedirect must be set. URL maps for classic Application Load
34103
+ # cannot contain any weightedBackendServices. If defaultRouteAction is specified,
34104
+ # don't set defaultUrlRedirect. If defaultRouteAction.weightedBackendServices
34105
+ # is specified, don't set defaultService. URL maps for classic Application Load
33911
34106
  # Balancers only support the urlRewrite action within a path matcher's
33912
34107
  # defaultRouteAction.
33913
34108
  # Corresponds to the JSON property `defaultRouteAction`
@@ -33924,11 +34119,11 @@ module Google
33924
34119
  # before sending the request to the backend. However, if defaultService is
33925
34120
  # specified, defaultRouteAction cannot contain any weightedBackendServices.
33926
34121
  # Conversely, if defaultRouteAction specifies any weightedBackendServices,
33927
- # defaultService must not be specified. Only one of defaultService,
33928
- # defaultUrlRedirect , or defaultRouteAction.weightedBackendService must be set.
33929
- # Authorization requires one or more of the following Google IAM permissions on
33930
- # the specified resource default_service: - compute.backendBuckets.use - compute.
33931
- # backendServices.use
34122
+ # defaultService must not be specified. If defaultService is specified, then set
34123
+ # either defaultUrlRedirect or defaultRouteAction.weightedBackendService. Don't
34124
+ # set both. Authorization requires one or more of the following Google IAM
34125
+ # permissions on the specified resource default_service: - compute.
34126
+ # backendBuckets.use - compute.backendServices.use
33932
34127
  # Corresponds to the JSON property `defaultService`
33933
34128
  # @return [String]
33934
34129
  attr_accessor :default_service
@@ -38186,6 +38381,12 @@ module Google
38186
38381
  # @return [String]
38187
38382
  attr_accessor :name
38188
38383
 
38384
+ # [Output only] Priority of firewall policy association. Not applicable for type=
38385
+ # HIERARCHY.
38386
+ # Corresponds to the JSON property `priority`
38387
+ # @return [Fixnum]
38388
+ attr_accessor :priority
38389
+
38189
38390
  # The rules that apply to the network.
38190
38391
  # Corresponds to the JSON property `rules`
38191
38392
  # @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
@@ -38205,6 +38406,7 @@ module Google
38205
38406
  def update!(**args)
38206
38407
  @display_name = args[:display_name] if args.key?(:display_name)
38207
38408
  @name = args[:name] if args.key?(:name)
38409
+ @priority = args[:priority] if args.key?(:priority)
38208
38410
  @rules = args[:rules] if args.key?(:rules)
38209
38411
  @type = args[:type] if args.key?(:type)
38210
38412
  end
@@ -39095,7 +39297,7 @@ module Google
39095
39297
  attr_accessor :disk_consistency_group_policy
39096
39298
 
39097
39299
  # A GroupPlacementPolicy specifies resource placement configuration. It
39098
- # specifies the failure bucket separation as well as network locality
39300
+ # specifies the failure bucket separation
39099
39301
  # Corresponds to the JSON property `groupPlacementPolicy`
39100
39302
  # @return [Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy]
39101
39303
  attr_accessor :group_placement_policy
@@ -39370,7 +39572,7 @@ module Google
39370
39572
  end
39371
39573
 
39372
39574
  # A GroupPlacementPolicy specifies resource placement configuration. It
39373
- # specifies the failure bucket separation as well as network locality
39575
+ # specifies the failure bucket separation
39374
39576
  class ResourcePolicyGroupPlacementPolicy
39375
39577
  include Google::Apis::Core::Hashable
39376
39578
 
@@ -39386,11 +39588,6 @@ module Google
39386
39588
  # @return [String]
39387
39589
  attr_accessor :collocation
39388
39590
 
39389
- # Specifies network locality
39390
- # Corresponds to the JSON property `locality`
39391
- # @return [String]
39392
- attr_accessor :locality
39393
-
39394
39591
  # Specifies the number of max logical switches.
39395
39592
  # Corresponds to the JSON property `maxDistance`
39396
39593
  # @return [Fixnum]
@@ -39406,11 +39603,6 @@ module Google
39406
39603
  # @return [Fixnum]
39407
39604
  attr_accessor :slice_count
39408
39605
 
39409
- # Specifies instances to hosts placement relationship
39410
- # Corresponds to the JSON property `style`
39411
- # @return [String]
39412
- attr_accessor :style
39413
-
39414
39606
  # Specifies the shape of the TPU slice
39415
39607
  # Corresponds to the JSON property `tpuTopology`
39416
39608
  # @return [String]
@@ -39431,11 +39623,9 @@ module Google
39431
39623
  def update!(**args)
39432
39624
  @availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
39433
39625
  @collocation = args[:collocation] if args.key?(:collocation)
39434
- @locality = args[:locality] if args.key?(:locality)
39435
39626
  @max_distance = args[:max_distance] if args.key?(:max_distance)
39436
39627
  @scope = args[:scope] if args.key?(:scope)
39437
39628
  @slice_count = args[:slice_count] if args.key?(:slice_count)
39438
- @style = args[:style] if args.key?(:style)
39439
39629
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
39440
39630
  @vm_count = args[:vm_count] if args.key?(:vm_count)
39441
39631
  end
@@ -45597,13 +45787,21 @@ module Google
45597
45787
  # @return [String]
45598
45788
  attr_accessor :connection_preference
45599
45789
 
45600
- # Projects that are allowed to connect to this service attachment.
45790
+ # Specifies which consumer projects or networks are allowed to connect to the
45791
+ # service attachment. Each project or network has a connection limit. A given
45792
+ # service attachment can manage connections at either the project or network
45793
+ # level. Therefore, both the accept and reject lists for a given service
45794
+ # attachment must contain either only projects or only networks.
45601
45795
  # Corresponds to the JSON property `consumerAcceptLists`
45602
45796
  # @return [Array<Google::Apis::ComputeAlpha::ServiceAttachmentConsumerProjectLimit>]
45603
45797
  attr_accessor :consumer_accept_lists
45604
45798
 
45605
- # Projects that are not allowed to connect to this service attachment. The
45606
- # project can be specified using its id or number.
45799
+ # Specifies a list of projects or networks that are not allowed to connect to
45800
+ # this service attachment. The project can be specified using its project ID or
45801
+ # project number and the network can be specified using its URL. A given service
45802
+ # attachment can manage connections at either the project or network level.
45803
+ # Therefore, both the reject and accept lists for a given service attachment
45804
+ # must contain either only projects or only networks.
45607
45805
  # Corresponds to the JSON property `consumerRejectLists`
45608
45806
  # @return [Array<String>]
45609
45807
  attr_accessor :consumer_reject_lists
@@ -55217,9 +55415,9 @@ module Google
55217
55415
  # sending the request to the backend. However, if defaultService is specified,
55218
55416
  # defaultRouteAction cannot contain any weightedBackendServices. Conversely, if
55219
55417
  # routeAction specifies any weightedBackendServices, service must not be
55220
- # specified. Only one of defaultService, defaultUrlRedirect , or
55221
- # defaultRouteAction.weightedBackendService must be set. defaultService has no
55222
- # effect when the URL map is bound to a target gRPC proxy that has the
55418
+ # specified. If defaultService is specified, then set either defaultUrlRedirect ,
55419
+ # or defaultRouteAction.weightedBackendService Don't set both. defaultService
55420
+ # has no effect when the URL map is bound to a target gRPC proxy that has the
55223
55421
  # validateForProxyless field set to true.
55224
55422
  # Corresponds to the JSON property `defaultService`
55225
55423
  # @return [String]
@@ -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.96.0"
19
+ GEM_VERSION = "0.98.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240324"
25
+ REVISION = "20240407"
26
26
  end
27
27
  end
28
28
  end
@@ -574,6 +574,18 @@ module Google
574
574
  include Google::Apis::Core::JsonObjectSupport
575
575
  end
576
576
 
577
+ class BackendServiceNetworkPassThroughLbTrafficPolicy
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
583
+ class BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
577
589
  class BackendServiceReference
578
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
591
 
@@ -2728,6 +2740,30 @@ module Google
2728
2740
  include Google::Apis::Core::JsonObjectSupport
2729
2741
  end
2730
2742
 
2743
+ class InterconnectApplicationAwareInterconnect
2744
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2745
+
2746
+ include Google::Apis::Core::JsonObjectSupport
2747
+ end
2748
+
2749
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
2750
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2751
+
2752
+ include Google::Apis::Core::JsonObjectSupport
2753
+ end
2754
+
2755
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
2756
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2757
+
2758
+ include Google::Apis::Core::JsonObjectSupport
2759
+ end
2760
+
2761
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
2762
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2763
+
2764
+ include Google::Apis::Core::JsonObjectSupport
2765
+ end
2766
+
2731
2767
  class InterconnectAttachment
2732
2768
  class Representation < Google::Apis::Core::JsonRepresentation; end
2733
2769
 
@@ -8488,6 +8524,8 @@ module Google
8488
8524
  hash :metadatas, as: 'metadatas'
8489
8525
  property :name, as: 'name'
8490
8526
  property :network, as: 'network'
8527
+ property :network_pass_through_lb_traffic_policy, as: 'networkPassThroughLbTrafficPolicy', class: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy, decorator: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicy::Representation
8528
+
8491
8529
  property :outlier_detection, as: 'outlierDetection', class: Google::Apis::ComputeAlpha::OutlierDetection, decorator: Google::Apis::ComputeAlpha::OutlierDetection::Representation
8492
8530
 
8493
8531
  property :port, as: 'port'
@@ -8755,6 +8793,22 @@ module Google
8755
8793
  end
8756
8794
  end
8757
8795
 
8796
+ class BackendServiceNetworkPassThroughLbTrafficPolicy
8797
+ # @private
8798
+ class Representation < Google::Apis::Core::JsonRepresentation
8799
+ property :zonal_affinity, as: 'zonalAffinity', class: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity, decorator: Google::Apis::ComputeAlpha::BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity::Representation
8800
+
8801
+ end
8802
+ end
8803
+
8804
+ class BackendServiceNetworkPassThroughLbTrafficPolicyZonalAffinity
8805
+ # @private
8806
+ class Representation < Google::Apis::Core::JsonRepresentation
8807
+ property :spillover, as: 'spillover'
8808
+ property :spillover_ratio, as: 'spilloverRatio'
8809
+ end
8810
+ end
8811
+
8758
8812
  class BackendServiceReference
8759
8813
  # @private
8760
8814
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12591,6 +12645,7 @@ module Google
12591
12645
  class Representation < Google::Apis::Core::JsonRepresentation
12592
12646
  property :display_name, as: 'displayName'
12593
12647
  property :name, as: 'name'
12648
+ property :priority, as: 'priority'
12594
12649
  collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
12595
12650
 
12596
12651
  property :short_name, as: 'shortName'
@@ -12855,6 +12910,8 @@ module Google
12855
12910
  # @private
12856
12911
  class Representation < Google::Apis::Core::JsonRepresentation
12857
12912
  property :admin_enabled, as: 'adminEnabled'
12913
+ property :application_aware_interconnect, as: 'applicationAwareInterconnect', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnect::Representation
12914
+
12858
12915
  collection :available_features, as: 'availableFeatures'
12859
12916
  collection :circuit_infos, as: 'circuitInfos', class: Google::Apis::ComputeAlpha::InterconnectCircuitInfo, decorator: Google::Apis::ComputeAlpha::InterconnectCircuitInfo::Representation
12860
12917
 
@@ -12891,6 +12948,39 @@ module Google
12891
12948
  end
12892
12949
  end
12893
12950
 
12951
+ class InterconnectApplicationAwareInterconnect
12952
+ # @private
12953
+ class Representation < Google::Apis::Core::JsonRepresentation
12954
+ property :bandwidth_percentage_policy, as: 'bandwidthPercentagePolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy::Representation
12955
+
12956
+ property :profile_description, as: 'profileDescription'
12957
+ property :strict_priority_policy, as: 'strictPriorityPolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy::Representation
12958
+
12959
+ end
12960
+ end
12961
+
12962
+ class InterconnectApplicationAwareInterconnectBandwidthPercentage
12963
+ # @private
12964
+ class Representation < Google::Apis::Core::JsonRepresentation
12965
+ property :percentage, as: 'percentage'
12966
+ property :traffic_class, as: 'trafficClass'
12967
+ end
12968
+ end
12969
+
12970
+ class InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy
12971
+ # @private
12972
+ class Representation < Google::Apis::Core::JsonRepresentation
12973
+ collection :bandwidth_percentages, as: 'bandwidthPercentages', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentage::Representation
12974
+
12975
+ end
12976
+ end
12977
+
12978
+ class InterconnectApplicationAwareInterconnectStrictPriorityPolicy
12979
+ # @private
12980
+ class Representation < Google::Apis::Core::JsonRepresentation
12981
+ end
12982
+ end
12983
+
12894
12984
  class InterconnectAttachment
12895
12985
  # @private
12896
12986
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -14318,6 +14408,7 @@ module Google
14318
14408
  # @private
14319
14409
  class Representation < Google::Apis::Core::JsonRepresentation
14320
14410
  hash :annotations, as: 'annotations'
14411
+ property :client_destination_port, as: 'clientDestinationPort'
14321
14412
  property :client_port, as: 'clientPort'
14322
14413
  property :fqdn, as: 'fqdn'
14323
14414
  property :instance, as: 'instance'
@@ -14800,6 +14891,7 @@ module Google
14800
14891
  class Representation < Google::Apis::Core::JsonRepresentation
14801
14892
  property :display_name, as: 'displayName'
14802
14893
  property :name, as: 'name'
14894
+ property :priority, as: 'priority'
14803
14895
  collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
14804
14896
 
14805
14897
  property :short_name, as: 'shortName'
@@ -16988,6 +17080,7 @@ module Google
16988
17080
  class Representation < Google::Apis::Core::JsonRepresentation
16989
17081
  property :display_name, as: 'displayName'
16990
17082
  property :name, as: 'name'
17083
+ property :priority, as: 'priority'
16991
17084
  collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
16992
17085
 
16993
17086
  property :type, as: 'type'
@@ -17299,11 +17392,9 @@ module Google
17299
17392
  class Representation < Google::Apis::Core::JsonRepresentation
17300
17393
  property :availability_domain_count, as: 'availabilityDomainCount'
17301
17394
  property :collocation, as: 'collocation'
17302
- property :locality, as: 'locality'
17303
17395
  property :max_distance, as: 'maxDistance'
17304
17396
  property :scope, as: 'scope'
17305
17397
  property :slice_count, as: 'sliceCount'
17306
- property :style, as: 'style'
17307
17398
  property :tpu_topology, as: 'tpuTopology'
17308
17399
  property :vm_count, as: 'vmCount'
17309
17400
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_alpha
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-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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_alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.96.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.98.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
63
63
  post_install_message:
64
64
  rdoc_options: []