google-apis-compute_alpha 0.97.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f24cd0c05b39f06ca2d7f2374d041361471efab3ab1dc4b34a312c62289f549
|
4
|
+
data.tar.gz: f9026f65062787de748c5d416650f639d9fa5241fb971d3af65b30d17f5efdea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 621d53d69ffd60b35eab56d6202f64b6f6bee207a49ee8be4331e56e5b426699caa54434e60163bc6b3622803aaa4ef0f351c03db25219a82db248a54e5dafa4
|
7
|
+
data.tar.gz: 6a8e29c63a477db80042cca300c3470c8a8df99b7130ee4fb883549ebed0e4c28885cb745df655a5cffa8946dd764c4665ed876f138d3caa1928305d52486493
|
data/CHANGELOG.md
CHANGED
@@ -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,
|
3671
|
-
#
|
3672
|
-
# must be changed to PREPARE. The state must be
|
3673
|
-
# loadBalancingScheme can be changed to
|
3674
|
-
# state can be used to
|
3675
|
-
#
|
3676
|
-
# the states to be set in reverse order. So
|
3677
|
-
# EXTERNAL_MANAGED to EXTERNAL requires the state to be
|
3678
|
-
# same time. Optionally, the
|
3679
|
-
#
|
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
|
3688
|
-
# the loadBalancingScheme in the BackendService is set to EXTERNAL when
|
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,
|
10743
|
-
# migration from EXTERNAL to EXTERNAL_MANAGED,
|
10744
|
-
# PREPARE. The state must be changed to
|
10745
|
-
#
|
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
|
10751
|
-
# migrate some traffic back to EXTERNAL or PREPARE can be
|
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
|
10759
|
-
# field must be in the range [0, 100]. This value
|
10760
|
-
# loadBalancingScheme is set to EXTERNAL (when using the
|
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)
|
@@ -22208,12 +22289,6 @@ module Google
|
|
22208
22289
|
# @return [Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy]
|
22209
22290
|
attr_accessor :bandwidth_percentage_policy
|
22210
22291
|
|
22211
|
-
# Enable or disable the AAI feature on this interconnect.
|
22212
|
-
# Corresponds to the JSON property `enabled`
|
22213
|
-
# @return [Boolean]
|
22214
|
-
attr_accessor :enabled
|
22215
|
-
alias_method :enabled?, :enabled
|
22216
|
-
|
22217
22292
|
# A description for the AAI profile on this interconnect.
|
22218
22293
|
# Corresponds to the JSON property `profileDescription`
|
22219
22294
|
# @return [String]
|
@@ -22231,7 +22306,6 @@ module Google
|
|
22231
22306
|
# Update properties of this object
|
22232
22307
|
def update!(**args)
|
22233
22308
|
@bandwidth_percentage_policy = args[:bandwidth_percentage_policy] if args.key?(:bandwidth_percentage_policy)
|
22234
|
-
@enabled = args[:enabled] if args.key?(:enabled)
|
22235
22309
|
@profile_description = args[:profile_description] if args.key?(:profile_description)
|
22236
22310
|
@strict_priority_policy = args[:strict_priority_policy] if args.key?(:strict_priority_policy)
|
22237
22311
|
end
|
@@ -28006,6 +28080,12 @@ module Google
|
|
28006
28080
|
# @return [Hash<String,String>]
|
28007
28081
|
attr_accessor :annotations
|
28008
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
|
+
|
28009
28089
|
# Represents the port number to which PSC consumer sends packets. Only valid for
|
28010
28090
|
# network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
|
28011
28091
|
# Corresponds to the JSON property `clientPort`
|
@@ -28068,6 +28148,7 @@ module Google
|
|
28068
28148
|
# Update properties of this object
|
28069
28149
|
def update!(**args)
|
28070
28150
|
@annotations = args[:annotations] if args.key?(:annotations)
|
28151
|
+
@client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
|
28071
28152
|
@client_port = args[:client_port] if args.key?(:client_port)
|
28072
28153
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
28073
28154
|
@instance = args[:instance] if args.key?(:instance)
|
@@ -28172,7 +28253,7 @@ module Google
|
|
28172
28253
|
|
28173
28254
|
# Type of network endpoints in this network endpoint group. Can be one of
|
28174
28255
|
# GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
|
28175
|
-
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
|
28256
|
+
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
|
28176
28257
|
# Corresponds to the JSON property `networkEndpointType`
|
28177
28258
|
# @return [String]
|
28178
28259
|
attr_accessor :network_endpoint_type
|
@@ -30056,6 +30137,12 @@ module Google
|
|
30056
30137
|
# @return [String]
|
30057
30138
|
attr_accessor :name
|
30058
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
|
+
|
30059
30146
|
# The rules that apply to the network.
|
30060
30147
|
# Corresponds to the JSON property `rules`
|
30061
30148
|
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRule>]
|
@@ -30079,6 +30166,7 @@ module Google
|
|
30079
30166
|
def update!(**args)
|
30080
30167
|
@display_name = args[:display_name] if args.key?(:display_name)
|
30081
30168
|
@name = args[:name] if args.key?(:name)
|
30169
|
+
@priority = args[:priority] if args.key?(:priority)
|
30082
30170
|
@rules = args[:rules] if args.key?(:rules)
|
30083
30171
|
@short_name = args[:short_name] if args.key?(:short_name)
|
30084
30172
|
@type = args[:type] if args.key?(:type)
|
@@ -33592,8 +33680,7 @@ module Google
|
|
33592
33680
|
# ingress) or destination (egress) IP in the IP header. If no ranges are
|
33593
33681
|
# specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
|
33594
33682
|
# If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
|
33595
|
-
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
33596
|
-
# Support for IPv6 traffic is in preview.
|
33683
|
+
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
33597
33684
|
# Corresponds to the JSON property `cidrRanges`
|
33598
33685
|
# @return [Array<String>]
|
33599
33686
|
attr_accessor :cidr_ranges
|
@@ -39210,7 +39297,7 @@ module Google
|
|
39210
39297
|
attr_accessor :disk_consistency_group_policy
|
39211
39298
|
|
39212
39299
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
39213
|
-
# specifies the failure bucket separation
|
39300
|
+
# specifies the failure bucket separation
|
39214
39301
|
# Corresponds to the JSON property `groupPlacementPolicy`
|
39215
39302
|
# @return [Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy]
|
39216
39303
|
attr_accessor :group_placement_policy
|
@@ -39485,7 +39572,7 @@ module Google
|
|
39485
39572
|
end
|
39486
39573
|
|
39487
39574
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
39488
|
-
# specifies the failure bucket separation
|
39575
|
+
# specifies the failure bucket separation
|
39489
39576
|
class ResourcePolicyGroupPlacementPolicy
|
39490
39577
|
include Google::Apis::Core::Hashable
|
39491
39578
|
|
@@ -39501,11 +39588,6 @@ module Google
|
|
39501
39588
|
# @return [String]
|
39502
39589
|
attr_accessor :collocation
|
39503
39590
|
|
39504
|
-
# Specifies network locality
|
39505
|
-
# Corresponds to the JSON property `locality`
|
39506
|
-
# @return [String]
|
39507
|
-
attr_accessor :locality
|
39508
|
-
|
39509
39591
|
# Specifies the number of max logical switches.
|
39510
39592
|
# Corresponds to the JSON property `maxDistance`
|
39511
39593
|
# @return [Fixnum]
|
@@ -39521,11 +39603,6 @@ module Google
|
|
39521
39603
|
# @return [Fixnum]
|
39522
39604
|
attr_accessor :slice_count
|
39523
39605
|
|
39524
|
-
# Specifies instances to hosts placement relationship
|
39525
|
-
# Corresponds to the JSON property `style`
|
39526
|
-
# @return [String]
|
39527
|
-
attr_accessor :style
|
39528
|
-
|
39529
39606
|
# Specifies the shape of the TPU slice
|
39530
39607
|
# Corresponds to the JSON property `tpuTopology`
|
39531
39608
|
# @return [String]
|
@@ -39546,11 +39623,9 @@ module Google
|
|
39546
39623
|
def update!(**args)
|
39547
39624
|
@availability_domain_count = args[:availability_domain_count] if args.key?(:availability_domain_count)
|
39548
39625
|
@collocation = args[:collocation] if args.key?(:collocation)
|
39549
|
-
@locality = args[:locality] if args.key?(:locality)
|
39550
39626
|
@max_distance = args[:max_distance] if args.key?(:max_distance)
|
39551
39627
|
@scope = args[:scope] if args.key?(:scope)
|
39552
39628
|
@slice_count = args[:slice_count] if args.key?(:slice_count)
|
39553
|
-
@style = args[:style] if args.key?(:style)
|
39554
39629
|
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
39555
39630
|
@vm_count = args[:vm_count] if args.key?(:vm_count)
|
39556
39631
|
end
|
@@ -45712,13 +45787,21 @@ module Google
|
|
45712
45787
|
# @return [String]
|
45713
45788
|
attr_accessor :connection_preference
|
45714
45789
|
|
45715
|
-
#
|
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.
|
45716
45795
|
# Corresponds to the JSON property `consumerAcceptLists`
|
45717
45796
|
# @return [Array<Google::Apis::ComputeAlpha::ServiceAttachmentConsumerProjectLimit>]
|
45718
45797
|
attr_accessor :consumer_accept_lists
|
45719
45798
|
|
45720
|
-
#
|
45721
|
-
# project can be specified using its
|
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.
|
45722
45805
|
# Corresponds to the JSON property `consumerRejectLists`
|
45723
45806
|
# @return [Array<String>]
|
45724
45807
|
attr_accessor :consumer_reject_lists
|
@@ -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.
|
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 = "
|
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
|
|
@@ -8512,6 +8524,8 @@ module Google
|
|
8512
8524
|
hash :metadatas, as: 'metadatas'
|
8513
8525
|
property :name, as: 'name'
|
8514
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
|
+
|
8515
8529
|
property :outlier_detection, as: 'outlierDetection', class: Google::Apis::ComputeAlpha::OutlierDetection, decorator: Google::Apis::ComputeAlpha::OutlierDetection::Representation
|
8516
8530
|
|
8517
8531
|
property :port, as: 'port'
|
@@ -8779,6 +8793,22 @@ module Google
|
|
8779
8793
|
end
|
8780
8794
|
end
|
8781
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
|
+
|
8782
8812
|
class BackendServiceReference
|
8783
8813
|
# @private
|
8784
8814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12615,6 +12645,7 @@ module Google
|
|
12615
12645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12616
12646
|
property :display_name, as: 'displayName'
|
12617
12647
|
property :name, as: 'name'
|
12648
|
+
property :priority, as: 'priority'
|
12618
12649
|
collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
|
12619
12650
|
|
12620
12651
|
property :short_name, as: 'shortName'
|
@@ -12922,7 +12953,6 @@ module Google
|
|
12922
12953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12923
12954
|
property :bandwidth_percentage_policy, as: 'bandwidthPercentagePolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectBandwidthPercentagePolicy::Representation
|
12924
12955
|
|
12925
|
-
property :enabled, as: 'enabled'
|
12926
12956
|
property :profile_description, as: 'profileDescription'
|
12927
12957
|
property :strict_priority_policy, as: 'strictPriorityPolicy', class: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy, decorator: Google::Apis::ComputeAlpha::InterconnectApplicationAwareInterconnectStrictPriorityPolicy::Representation
|
12928
12958
|
|
@@ -14378,6 +14408,7 @@ module Google
|
|
14378
14408
|
# @private
|
14379
14409
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14380
14410
|
hash :annotations, as: 'annotations'
|
14411
|
+
property :client_destination_port, as: 'clientDestinationPort'
|
14381
14412
|
property :client_port, as: 'clientPort'
|
14382
14413
|
property :fqdn, as: 'fqdn'
|
14383
14414
|
property :instance, as: 'instance'
|
@@ -14860,6 +14891,7 @@ module Google
|
|
14860
14891
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14861
14892
|
property :display_name, as: 'displayName'
|
14862
14893
|
property :name, as: 'name'
|
14894
|
+
property :priority, as: 'priority'
|
14863
14895
|
collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::FirewallPolicyRule, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRule::Representation
|
14864
14896
|
|
14865
14897
|
property :short_name, as: 'shortName'
|
@@ -17360,11 +17392,9 @@ module Google
|
|
17360
17392
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17361
17393
|
property :availability_domain_count, as: 'availabilityDomainCount'
|
17362
17394
|
property :collocation, as: 'collocation'
|
17363
|
-
property :locality, as: 'locality'
|
17364
17395
|
property :max_distance, as: 'maxDistance'
|
17365
17396
|
property :scope, as: 'scope'
|
17366
17397
|
property :slice_count, as: 'sliceCount'
|
17367
|
-
property :style, as: 'style'
|
17368
17398
|
property :tpu_topology, as: 'tpuTopology'
|
17369
17399
|
property :vm_count, as: 'vmCount'
|
17370
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.
|
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-
|
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.
|
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: []
|