google-apis-compute_alpha 0.84.0 → 0.86.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.
@@ -1171,6 +1171,12 @@ module Google
|
|
1171
1171
|
attr_accessor :enable_uefi_networking
|
1172
1172
|
alias_method :enable_uefi_networking?, :enable_uefi_networking
|
1173
1173
|
|
1174
|
+
# Whether to enable the watchdog timer.
|
1175
|
+
# Corresponds to the JSON property `enableWatchdogTimer`
|
1176
|
+
# @return [Boolean]
|
1177
|
+
attr_accessor :enable_watchdog_timer
|
1178
|
+
alias_method :enable_watchdog_timer?, :enable_watchdog_timer
|
1179
|
+
|
1174
1180
|
# The number of vNUMA nodes.
|
1175
1181
|
# Corresponds to the JSON property `numaNodeCount`
|
1176
1182
|
# @return [Fixnum]
|
@@ -1204,6 +1210,7 @@ module Google
|
|
1204
1210
|
def update!(**args)
|
1205
1211
|
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
1206
1212
|
@enable_uefi_networking = args[:enable_uefi_networking] if args.key?(:enable_uefi_networking)
|
1213
|
+
@enable_watchdog_timer = args[:enable_watchdog_timer] if args.key?(:enable_watchdog_timer)
|
1207
1214
|
@numa_node_count = args[:numa_node_count] if args.key?(:numa_node_count)
|
1208
1215
|
@performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
|
1209
1216
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
@@ -3576,13 +3583,13 @@ module Google
|
|
3576
3583
|
class BackendService
|
3577
3584
|
include Google::Apis::Core::Hashable
|
3578
3585
|
|
3579
|
-
# Lifetime of cookies in seconds. This setting is applicable to
|
3580
|
-
#
|
3581
|
-
#
|
3582
|
-
#
|
3583
|
-
#
|
3584
|
-
#
|
3585
|
-
#
|
3586
|
+
# Lifetime of cookies in seconds. This setting is applicable to Application Load
|
3587
|
+
# Balancers and Traffic Director and requires GENERATED_COOKIE or HTTP_COOKIE
|
3588
|
+
# session affinity. If set to 0, the cookie is non-persistent and lasts only
|
3589
|
+
# until the end of the browser session (or equivalent). The maximum allowed
|
3590
|
+
# value is two weeks (1,209,600). Not supported when the backend service is
|
3591
|
+
# referenced by a URL map that is bound to target gRPC proxy that has
|
3592
|
+
# validateForProxyless field set to true.
|
3586
3593
|
# Corresponds to the JSON property `affinityCookieTtlSec`
|
3587
3594
|
# @return [Fixnum]
|
3588
3595
|
attr_accessor :affinity_cookie_ttl_sec
|
@@ -3653,23 +3660,23 @@ module Google
|
|
3653
3660
|
# @return [String]
|
3654
3661
|
attr_accessor :edge_security_policy
|
3655
3662
|
|
3656
|
-
# If true, enables Cloud CDN for the backend service of
|
3657
|
-
#
|
3663
|
+
# If true, enables Cloud CDN for the backend service of a global external
|
3664
|
+
# Application Load Balancer.
|
3658
3665
|
# Corresponds to the JSON property `enableCDN`
|
3659
3666
|
# @return [Boolean]
|
3660
3667
|
attr_accessor :enable_cdn
|
3661
3668
|
alias_method :enable_cdn?, :enable_cdn
|
3662
3669
|
|
3663
|
-
# For load balancers that have configurable failover: [Internal
|
3664
|
-
#
|
3665
|
-
# overview) and [external
|
3666
|
-
# balancing/docs/network/networklb-failover-overview). On
|
3667
|
-
# this field indicates whether connection draining will be
|
3668
|
-
# has a fixed connection draining timeout of 10 minutes. A
|
3669
|
-
# terminates existing TCP connections to the active pool during
|
3670
|
-
# failback, immediately draining traffic. A setting of false allows
|
3671
|
-
# connections to persist, even on VMs no longer in the active pool,
|
3672
|
-
# the duration of the connection draining timeout (10 minutes).
|
3670
|
+
# For load balancers that have configurable failover: [Internal passthrough
|
3671
|
+
# Network Load Balancers](https://cloud.google.com/load-balancing/docs/internal/
|
3672
|
+
# failover-overview) and [external passthrough Network Load Balancers](https://
|
3673
|
+
# cloud.google.com/load-balancing/docs/network/networklb-failover-overview). On
|
3674
|
+
# failover or failback, this field indicates whether connection draining will be
|
3675
|
+
# honored. Google Cloud has a fixed connection draining timeout of 10 minutes. A
|
3676
|
+
# setting of true terminates existing TCP connections to the active pool during
|
3677
|
+
# failover and failback, immediately draining traffic. A setting of false allows
|
3678
|
+
# existing TCP connections to persist, even on VMs no longer in the active pool,
|
3679
|
+
# for up to the duration of the connection draining timeout (10 minutes).
|
3673
3680
|
# Corresponds to the JSON property `failoverPolicy`
|
3674
3681
|
# @return [Google::Apis::ComputeAlpha::BackendServiceFailoverPolicy]
|
3675
3682
|
attr_accessor :failover_policy
|
@@ -3685,6 +3692,11 @@ module Google
|
|
3685
3692
|
# @return [String]
|
3686
3693
|
attr_accessor :fingerprint
|
3687
3694
|
|
3695
|
+
# Configuring haPolicy is not supported.
|
3696
|
+
# Corresponds to the JSON property `haPolicy`
|
3697
|
+
# @return [Google::Apis::ComputeAlpha::BackendServiceHaPolicy]
|
3698
|
+
attr_accessor :ha_policy
|
3699
|
+
|
3688
3700
|
# The list of URLs to the healthChecks, httpHealthChecks (legacy), or
|
3689
3701
|
# httpsHealthChecks (legacy) resource for health checking this backend service.
|
3690
3702
|
# Not all backend services support legacy health checks. See Load balancer guide.
|
@@ -3718,12 +3730,13 @@ module Google
|
|
3718
3730
|
# traffic to the backends of the backend service (Instance Group, Managed
|
3719
3731
|
# Instance Group, Network Endpoint Group), regardless of traffic from the client
|
3720
3732
|
# to the proxy. Only IPv6 health checks are used to check the health of the
|
3721
|
-
# backends. This field is applicable to either: - Advanced
|
3722
|
-
# Load
|
3723
|
-
#
|
3724
|
-
# INTERNAL_MANAGED), - Regional
|
3725
|
-
# scheme INTERNAL_MANAGED), - Traffic Director with
|
3726
|
-
# gRPC (load balancing scheme INTERNAL_SELF_MANAGED).
|
3733
|
+
# backends. This field is applicable to either: - Advanced global external
|
3734
|
+
# Application Load Balancer (load balancing scheme EXTERNAL_MANAGED), - Regional
|
3735
|
+
# external Application Load Balancer, - Internal proxy Network Load Balancer (
|
3736
|
+
# load balancing scheme INTERNAL_MANAGED), - Regional internal Application Load
|
3737
|
+
# Balancer (load balancing scheme INTERNAL_MANAGED), - Traffic Director with
|
3738
|
+
# Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED).
|
3739
|
+
#
|
3727
3740
|
# Corresponds to the JSON property `ipAddressSelectionPolicy`
|
3728
3741
|
# @return [String]
|
3729
3742
|
attr_accessor :ip_address_selection_policy
|
@@ -3823,8 +3836,8 @@ module Google
|
|
3823
3836
|
attr_accessor :outlier_detection
|
3824
3837
|
|
3825
3838
|
# Deprecated in favor of portName. The TCP port to connect on the backend. The
|
3826
|
-
# default value is 80. For
|
3827
|
-
#
|
3839
|
+
# default value is 80. For internal passthrough Network Load Balancers and
|
3840
|
+
# external passthrough Network Load Balancers, omit port.
|
3828
3841
|
# Corresponds to the JSON property `port`
|
3829
3842
|
# @return [Fixnum]
|
3830
3843
|
attr_accessor :port
|
@@ -3833,8 +3846,8 @@ module Google
|
|
3833
3846
|
# communication to the backend VMs in that group. The named port must be [
|
3834
3847
|
# defined on each backend instance group](https://cloud.google.com/load-
|
3835
3848
|
# balancing/docs/backend-service#named_ports). This parameter has no meaning if
|
3836
|
-
# the backends are NEGs. For
|
3837
|
-
#
|
3849
|
+
# the backends are NEGs. For internal passthrough Network Load Balancers and
|
3850
|
+
# external passthrough Network Load Balancers, omit port_name.
|
3838
3851
|
# Corresponds to the JSON property `portName`
|
3839
3852
|
# @return [String]
|
3840
3853
|
attr_accessor :port_name
|
@@ -3958,6 +3971,7 @@ module Google
|
|
3958
3971
|
@enable_cdn = args[:enable_cdn] if args.key?(:enable_cdn)
|
3959
3972
|
@failover_policy = args[:failover_policy] if args.key?(:failover_policy)
|
3960
3973
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
3974
|
+
@ha_policy = args[:ha_policy] if args.key?(:ha_policy)
|
3961
3975
|
@health_checks = args[:health_checks] if args.key?(:health_checks)
|
3962
3976
|
@iap = args[:iap] if args.key?(:iap)
|
3963
3977
|
@id = args[:id] if args.key?(:id)
|
@@ -4343,20 +4357,20 @@ module Google
|
|
4343
4357
|
# @return [String]
|
4344
4358
|
attr_accessor :connection_persistence_on_unhealthy_backends
|
4345
4359
|
|
4346
|
-
# Enable Strong Session Affinity for Network Load
|
4347
|
-
# available publicly.
|
4360
|
+
# Enable Strong Session Affinity for external passthrough Network Load Balancers.
|
4361
|
+
# This option is not available publicly.
|
4348
4362
|
# Corresponds to the JSON property `enableStrongAffinity`
|
4349
4363
|
# @return [Boolean]
|
4350
4364
|
attr_accessor :enable_strong_affinity
|
4351
4365
|
alias_method :enable_strong_affinity?, :enable_strong_affinity
|
4352
4366
|
|
4353
4367
|
# Specifies how long to keep a Connection Tracking entry while there is no
|
4354
|
-
# matching traffic (in seconds). For
|
4355
|
-
# minimum (default) is 10 minutes and the maximum is 16 hours. - It can
|
4356
|
-
# only if Connection Tracking is less than 5-tuple (i.e. Session Affinity
|
4357
|
-
# CLIENT_IP_NO_DESTINATION, CLIENT_IP or CLIENT_IP_PROTO, and Tracking Mode
|
4358
|
-
# PER_SESSION). For Network Load
|
4359
|
-
# is not available publicly.
|
4368
|
+
# matching traffic (in seconds). For internal passthrough Network Load Balancers:
|
4369
|
+
# - The minimum (default) is 10 minutes and the maximum is 16 hours. - It can
|
4370
|
+
# be set only if Connection Tracking is less than 5-tuple (i.e. Session Affinity
|
4371
|
+
# is CLIENT_IP_NO_DESTINATION, CLIENT_IP or CLIENT_IP_PROTO, and Tracking Mode
|
4372
|
+
# is PER_SESSION). For external passthrough Network Load Balancers the default
|
4373
|
+
# is 60 seconds. This option is not available publicly.
|
4360
4374
|
# Corresponds to the JSON property `idleTimeoutSec`
|
4361
4375
|
# @return [Fixnum]
|
4362
4376
|
attr_accessor :idle_timeout_sec
|
@@ -4387,16 +4401,16 @@ module Google
|
|
4387
4401
|
end
|
4388
4402
|
end
|
4389
4403
|
|
4390
|
-
# For load balancers that have configurable failover: [Internal
|
4391
|
-
#
|
4392
|
-
# overview) and [external
|
4393
|
-
# balancing/docs/network/networklb-failover-overview). On
|
4394
|
-
# this field indicates whether connection draining will be
|
4395
|
-
# has a fixed connection draining timeout of 10 minutes. A
|
4396
|
-
# terminates existing TCP connections to the active pool during
|
4397
|
-
# failback, immediately draining traffic. A setting of false allows
|
4398
|
-
# connections to persist, even on VMs no longer in the active pool,
|
4399
|
-
# the duration of the connection draining timeout (10 minutes).
|
4404
|
+
# For load balancers that have configurable failover: [Internal passthrough
|
4405
|
+
# Network Load Balancers](https://cloud.google.com/load-balancing/docs/internal/
|
4406
|
+
# failover-overview) and [external passthrough Network Load Balancers](https://
|
4407
|
+
# cloud.google.com/load-balancing/docs/network/networklb-failover-overview). On
|
4408
|
+
# failover or failback, this field indicates whether connection draining will be
|
4409
|
+
# honored. Google Cloud has a fixed connection draining timeout of 10 minutes. A
|
4410
|
+
# setting of true terminates existing TCP connections to the active pool during
|
4411
|
+
# failover and failback, immediately draining traffic. A setting of false allows
|
4412
|
+
# existing TCP connections to persist, even on VMs no longer in the active pool,
|
4413
|
+
# for up to the duration of the connection draining timeout (10 minutes).
|
4400
4414
|
class BackendServiceFailoverPolicy
|
4401
4415
|
include Google::Apis::Core::Hashable
|
4402
4416
|
|
@@ -4410,10 +4424,10 @@ module Google
|
|
4410
4424
|
# and all backup backend VMs are unhealthy.If set to false, connections are
|
4411
4425
|
# distributed among all primary VMs when all primary and all backup backend VMs
|
4412
4426
|
# are unhealthy. For load balancers that have configurable failover: [Internal
|
4413
|
-
#
|
4414
|
-
# failover-overview) and [external
|
4415
|
-
# com/load-balancing/docs/network/networklb-
|
4416
|
-
# false.
|
4427
|
+
# passthrough Network Load Balancers](https://cloud.google.com/load-balancing/
|
4428
|
+
# docs/internal/failover-overview) and [external passthrough Network Load
|
4429
|
+
# Balancers](https://cloud.google.com/load-balancing/docs/network/networklb-
|
4430
|
+
# failover-overview). The default is false.
|
4417
4431
|
# Corresponds to the JSON property `dropTrafficIfUnhealthy`
|
4418
4432
|
# @return [Boolean]
|
4419
4433
|
attr_accessor :drop_traffic_if_unhealthy
|
@@ -4476,6 +4490,75 @@ module Google
|
|
4476
4490
|
end
|
4477
4491
|
end
|
4478
4492
|
|
4493
|
+
#
|
4494
|
+
class BackendServiceHaPolicy
|
4495
|
+
include Google::Apis::Core::Hashable
|
4496
|
+
|
4497
|
+
# Enabling fastIPMove is not supported.
|
4498
|
+
# Corresponds to the JSON property `fastIPMove`
|
4499
|
+
# @return [String]
|
4500
|
+
attr_accessor :fast_ip_move
|
4501
|
+
|
4502
|
+
# Setting a leader is not supported.
|
4503
|
+
# Corresponds to the JSON property `leader`
|
4504
|
+
# @return [Google::Apis::ComputeAlpha::BackendServiceHaPolicyLeader]
|
4505
|
+
attr_accessor :leader
|
4506
|
+
|
4507
|
+
def initialize(**args)
|
4508
|
+
update!(**args)
|
4509
|
+
end
|
4510
|
+
|
4511
|
+
# Update properties of this object
|
4512
|
+
def update!(**args)
|
4513
|
+
@fast_ip_move = args[:fast_ip_move] if args.key?(:fast_ip_move)
|
4514
|
+
@leader = args[:leader] if args.key?(:leader)
|
4515
|
+
end
|
4516
|
+
end
|
4517
|
+
|
4518
|
+
#
|
4519
|
+
class BackendServiceHaPolicyLeader
|
4520
|
+
include Google::Apis::Core::Hashable
|
4521
|
+
|
4522
|
+
# Setting backendGroup is not supported.
|
4523
|
+
# Corresponds to the JSON property `backendGroup`
|
4524
|
+
# @return [String]
|
4525
|
+
attr_accessor :backend_group
|
4526
|
+
|
4527
|
+
# Setting a network endpoint as leader is not supported.
|
4528
|
+
# Corresponds to the JSON property `networkEndpoint`
|
4529
|
+
# @return [Google::Apis::ComputeAlpha::BackendServiceHaPolicyLeaderNetworkEndpoint]
|
4530
|
+
attr_accessor :network_endpoint
|
4531
|
+
|
4532
|
+
def initialize(**args)
|
4533
|
+
update!(**args)
|
4534
|
+
end
|
4535
|
+
|
4536
|
+
# Update properties of this object
|
4537
|
+
def update!(**args)
|
4538
|
+
@backend_group = args[:backend_group] if args.key?(:backend_group)
|
4539
|
+
@network_endpoint = args[:network_endpoint] if args.key?(:network_endpoint)
|
4540
|
+
end
|
4541
|
+
end
|
4542
|
+
|
4543
|
+
#
|
4544
|
+
class BackendServiceHaPolicyLeaderNetworkEndpoint
|
4545
|
+
include Google::Apis::Core::Hashable
|
4546
|
+
|
4547
|
+
# Specifying the instance name of a leader is not supported.
|
4548
|
+
# Corresponds to the JSON property `instance`
|
4549
|
+
# @return [String]
|
4550
|
+
attr_accessor :instance
|
4551
|
+
|
4552
|
+
def initialize(**args)
|
4553
|
+
update!(**args)
|
4554
|
+
end
|
4555
|
+
|
4556
|
+
# Update properties of this object
|
4557
|
+
def update!(**args)
|
4558
|
+
@instance = args[:instance] if args.key?(:instance)
|
4559
|
+
end
|
4560
|
+
end
|
4561
|
+
|
4479
4562
|
# Identity-Aware Proxy
|
4480
4563
|
class BackendServiceIap
|
4481
4564
|
include Google::Apis::Core::Hashable
|
@@ -7275,6 +7358,12 @@ module Google
|
|
7275
7358
|
# @return [Google::Apis::ComputeAlpha::DiskResourceStatus]
|
7276
7359
|
attr_accessor :resource_status
|
7277
7360
|
|
7361
|
+
# Output only. Reserved for future use.
|
7362
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
7363
|
+
# @return [Boolean]
|
7364
|
+
attr_accessor :satisfies_pzi
|
7365
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
7366
|
+
|
7278
7367
|
# [Output Only] Reserved for future use.
|
7279
7368
|
# Corresponds to the JSON property `satisfiesPzs`
|
7280
7369
|
# @return [Boolean]
|
@@ -7502,6 +7591,7 @@ module Google
|
|
7502
7591
|
@replica_zones = args[:replica_zones] if args.key?(:replica_zones)
|
7503
7592
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
7504
7593
|
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
7594
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
7505
7595
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
7506
7596
|
@self_link = args[:self_link] if args.key?(:self_link)
|
7507
7597
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -10424,10 +10514,10 @@ module Google
|
|
10424
10514
|
# google.com/compute/docs/reference/rest/alpha/globalForwardingRules) * [
|
10425
10515
|
# Regional](https://cloud.google.com/compute/docs/reference/rest/alpha/
|
10426
10516
|
# forwardingRules) A forwarding rule and its corresponding IP address represent
|
10427
|
-
# the frontend configuration of a Google Cloud
|
10428
|
-
#
|
10429
|
-
#
|
10430
|
-
#
|
10517
|
+
# the frontend configuration of a Google Cloud load balancer. Forwarding rules
|
10518
|
+
# can also reference target instances and Cloud VPN Classic gateways (
|
10519
|
+
# targetVpnGateway). For more information, read Forwarding rule concepts and
|
10520
|
+
# Using protocol forwarding.
|
10431
10521
|
class ForwardingRule
|
10432
10522
|
include Google::Apis::Core::Hashable
|
10433
10523
|
|
@@ -10465,13 +10555,17 @@ module Google
|
|
10465
10555
|
# @return [String]
|
10466
10556
|
attr_accessor :ip_protocol
|
10467
10557
|
|
10468
|
-
#
|
10469
|
-
#
|
10470
|
-
#
|
10471
|
-
#
|
10472
|
-
#
|
10473
|
-
#
|
10474
|
-
#
|
10558
|
+
# The ports, portRange, and allPorts fields are mutually exclusive. Only packets
|
10559
|
+
# addressed to ports in the specified range will be forwarded to the backends
|
10560
|
+
# configured with this forwarding rule. The allPorts field has the following
|
10561
|
+
# limitations: - It requires that the forwarding rule IPProtocol be TCP, UDP,
|
10562
|
+
# SCTP, or L3_DEFAULT. - It's applicable only to the following products:
|
10563
|
+
# internal passthrough Network Load Balancers, backend service-based external
|
10564
|
+
# passthrough Network Load Balancers, and internal and external protocol
|
10565
|
+
# forwarding. - Set this field to true to allow packets addressed to any port or
|
10566
|
+
# packets lacking destination port information (for example, UDP fragments after
|
10567
|
+
# the first fragment) to be forwarded to the backends configured with this
|
10568
|
+
# forwarding rule. The L3_DEFAULT protocol requires allPorts be set to true.
|
10475
10569
|
# Corresponds to the JSON property `allPorts`
|
10476
10570
|
# @return [Boolean]
|
10477
10571
|
attr_accessor :all_ports
|
@@ -10479,11 +10573,12 @@ module Google
|
|
10479
10573
|
|
10480
10574
|
# This field is used along with the backend_service field for internal load
|
10481
10575
|
# balancing or with the target field for internal TargetInstance. If set to true,
|
10482
|
-
# clients can access the
|
10483
|
-
#
|
10484
|
-
#
|
10485
|
-
#
|
10486
|
-
# forwarding rule is
|
10576
|
+
# clients can access the internal passthrough Network Load Balancers, the
|
10577
|
+
# regional internal Application Load Balancer, and the regional internal proxy
|
10578
|
+
# Network Load Balancer from all regions. If false, only allows access from the
|
10579
|
+
# local region the load balancer is located at. Note that for INTERNAL_MANAGED
|
10580
|
+
# forwarding rules, this field cannot be changed after the forwarding rule is
|
10581
|
+
# created.
|
10487
10582
|
# Corresponds to the JSON property `allowGlobalAccess`
|
10488
10583
|
# @return [Boolean]
|
10489
10584
|
attr_accessor :allow_global_access
|
@@ -10507,16 +10602,16 @@ module Google
|
|
10507
10602
|
alias_method :allow_psc_packet_injection?, :allow_psc_packet_injection
|
10508
10603
|
|
10509
10604
|
# Identifies the backend service to which the forwarding rule sends traffic.
|
10510
|
-
# Required for
|
10511
|
-
#
|
10605
|
+
# Required for internal and external passthrough Network Load Balancers; must be
|
10606
|
+
# omitted for all other load balancer types.
|
10512
10607
|
# Corresponds to the JSON property `backendService`
|
10513
10608
|
# @return [String]
|
10514
10609
|
attr_accessor :backend_service
|
10515
10610
|
|
10516
|
-
# [Output Only] The URL for the corresponding base
|
10517
|
-
#
|
10518
|
-
# protocol, and port settings with the current
|
10519
|
-
# sourceIPRanges specified. Always empty if the current
|
10611
|
+
# [Output Only] The URL for the corresponding base forwarding rule. By base
|
10612
|
+
# forwarding rule, we mean the forwarding rule that has the same IP address,
|
10613
|
+
# protocol, and port settings with the current forwarding rule, but without
|
10614
|
+
# sourceIPRanges specified. Always empty if the current forwarding rule does not
|
10520
10615
|
# have sourceIPRanges specified.
|
10521
10616
|
# Corresponds to the JSON property `baseForwardingRule`
|
10522
10617
|
# @return [String]
|
@@ -10578,7 +10673,7 @@ module Google
|
|
10578
10673
|
alias_method :is_mirroring_collector?, :is_mirroring_collector
|
10579
10674
|
|
10580
10675
|
# [Output Only] Type of the resource. Always compute#forwardingRule for
|
10581
|
-
#
|
10676
|
+
# forwarding rule resources.
|
10582
10677
|
# Corresponds to the JSON property `kind`
|
10583
10678
|
# @return [String]
|
10584
10679
|
attr_accessor :kind
|
@@ -10640,13 +10735,13 @@ module Google
|
|
10640
10735
|
# @return [String]
|
10641
10736
|
attr_accessor :name
|
10642
10737
|
|
10643
|
-
# This field is not used for global external load balancing. For
|
10644
|
-
#
|
10645
|
-
# IP should belong to for this
|
10646
|
-
# the network of the subnetwork will be used. If neither
|
10647
|
-
# field is specified, the default network will be used. For
|
10648
|
-
# Connect forwarding rules that forward traffic to Google APIs,
|
10649
|
-
# be provided.
|
10738
|
+
# This field is not used for global external load balancing. For internal
|
10739
|
+
# passthrough Network Load Balancers, this field identifies the network that the
|
10740
|
+
# load balanced IP should belong to for this forwarding rule. If the subnetwork
|
10741
|
+
# is specified, the network of the subnetwork will be used. If neither
|
10742
|
+
# subnetwork nor this field is specified, the default network will be used. For
|
10743
|
+
# Private Service Connect forwarding rules that forward traffic to Google APIs,
|
10744
|
+
# a network must be provided.
|
10650
10745
|
# Corresponds to the JSON property `network`
|
10651
10746
|
# @return [String]
|
10652
10747
|
attr_accessor :network
|
@@ -10669,40 +10764,43 @@ module Google
|
|
10669
10764
|
attr_accessor :no_automate_dns_zone
|
10670
10765
|
alias_method :no_automate_dns_zone?, :no_automate_dns_zone
|
10671
10766
|
|
10672
|
-
#
|
10673
|
-
#
|
10674
|
-
#
|
10675
|
-
#
|
10676
|
-
#
|
10677
|
-
#
|
10678
|
-
#
|
10679
|
-
#
|
10680
|
-
#
|
10681
|
-
#
|
10682
|
-
#
|
10683
|
-
#
|
10684
|
-
# portRanges. @pattern:
|
10767
|
+
# The ports, portRange, and allPorts fields are mutually exclusive. Only packets
|
10768
|
+
# addressed to ports in the specified range will be forwarded to the backends
|
10769
|
+
# configured with this forwarding rule. The portRange field has the following
|
10770
|
+
# limitations: - It requires that the forwarding rule IPProtocol be TCP, UDP, or
|
10771
|
+
# SCTP, and - It's applicable only to the following products: external
|
10772
|
+
# passthrough Network Load Balancers, internal and external proxy Network Load
|
10773
|
+
# Balancers, internal and external Application Load Balancers, external protocol
|
10774
|
+
# forwarding, and Classic VPN. - Some products have restrictions on what ports
|
10775
|
+
# can be used. See port specifications for details. For external forwarding
|
10776
|
+
# rules, two or more forwarding rules cannot use the same [IPAddress, IPProtocol]
|
10777
|
+
# pair, and cannot have overlapping portRanges. For internal forwarding rules
|
10778
|
+
# within the same VPC network, two or more forwarding rules cannot use the same [
|
10779
|
+
# IPAddress, IPProtocol] pair, and cannot have overlapping portRanges. @pattern:
|
10780
|
+
# \\d+(?:-\\d+)?
|
10685
10781
|
# Corresponds to the JSON property `portRange`
|
10686
10782
|
# @return [String]
|
10687
10783
|
attr_accessor :port_range
|
10688
10784
|
|
10689
|
-
#
|
10690
|
-
#
|
10691
|
-
#
|
10692
|
-
#
|
10693
|
-
#
|
10694
|
-
#
|
10695
|
-
#
|
10696
|
-
#
|
10697
|
-
#
|
10698
|
-
#
|
10699
|
-
#
|
10700
|
-
#
|
10785
|
+
# The ports, portRange, and allPorts fields are mutually exclusive. Only packets
|
10786
|
+
# addressed to ports in the specified range will be forwarded to the backends
|
10787
|
+
# configured with this forwarding rule. The ports field has the following
|
10788
|
+
# limitations: - It requires that the forwarding rule IPProtocol be TCP, UDP, or
|
10789
|
+
# SCTP, and - It's applicable only to the following products: internal
|
10790
|
+
# passthrough Network Load Balancers, backend service-based external passthrough
|
10791
|
+
# Network Load Balancers, and internal protocol forwarding. - You can specify a
|
10792
|
+
# list of up to five ports by number, separated by commas. The ports can be
|
10793
|
+
# contiguous or discontiguous. For external forwarding rules, two or more
|
10794
|
+
# forwarding rules cannot use the same [IPAddress, IPProtocol] pair if they
|
10795
|
+
# share at least one port number. For internal forwarding rules within the same
|
10796
|
+
# VPC network, two or more forwarding rules cannot use the same [IPAddress,
|
10797
|
+
# IPProtocol] pair if they share at least one port number. @pattern: \\d+(?:-\\d+
|
10798
|
+
# )?
|
10701
10799
|
# Corresponds to the JSON property `ports`
|
10702
10800
|
# @return [Array<String>]
|
10703
10801
|
attr_accessor :ports
|
10704
10802
|
|
10705
|
-
# [Output Only] The PSC connection id of the PSC
|
10803
|
+
# [Output Only] The PSC connection id of the PSC forwarding rule.
|
10706
10804
|
# Corresponds to the JSON property `pscConnectionId`
|
10707
10805
|
# @return [Fixnum]
|
10708
10806
|
attr_accessor :psc_connection_id
|
@@ -10736,7 +10834,7 @@ module Google
|
|
10736
10834
|
# @return [Array<Google::Apis::ComputeAlpha::ForwardingRuleServiceDirectoryRegistration>]
|
10737
10835
|
attr_accessor :service_directory_registrations
|
10738
10836
|
|
10739
|
-
# An optional prefix to the service name for this
|
10837
|
+
# An optional prefix to the service name for this forwarding rule. If specified,
|
10740
10838
|
# the prefix is the first label of the fully qualified service name. The label
|
10741
10839
|
# must be 1-63 characters long, and comply with RFC1035. Specifically, the label
|
10742
10840
|
# must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*
|
@@ -10748,16 +10846,16 @@ module Google
|
|
10748
10846
|
# @return [String]
|
10749
10847
|
attr_accessor :service_label
|
10750
10848
|
|
10751
|
-
# [Output Only] The internal fully qualified service name for this
|
10752
|
-
#
|
10849
|
+
# [Output Only] The internal fully qualified service name for this forwarding
|
10850
|
+
# rule. This field is only used for internal load balancing.
|
10753
10851
|
# Corresponds to the JSON property `serviceName`
|
10754
10852
|
# @return [String]
|
10755
10853
|
attr_accessor :service_name
|
10756
10854
|
|
10757
|
-
# If not empty, this
|
10855
|
+
# If not empty, this forwarding rule will only forward the traffic when the
|
10758
10856
|
# source IP address matches one of the IP addresses or CIDR ranges set here.
|
10759
|
-
# Note that a
|
10760
|
-
# field can only be used with a regional
|
10857
|
+
# Note that a forwarding rule can only have up to 64 source IP ranges, and this
|
10858
|
+
# field can only be used with a regional forwarding rule whose scheme is
|
10761
10859
|
# EXTERNAL. Each source_ip_range entry should be either an IP address (for
|
10762
10860
|
# example, 1.2.3.4) or a CIDR range (for example, 1.2.3.0/24).
|
10763
10861
|
# Corresponds to the JSON property `sourceIpRanges`
|
@@ -10765,10 +10863,11 @@ module Google
|
|
10765
10863
|
attr_accessor :source_ip_ranges
|
10766
10864
|
|
10767
10865
|
# This field identifies the subnetwork that the load balanced IP should belong
|
10768
|
-
# to for this
|
10769
|
-
#
|
10770
|
-
# field is optional. However, a subnetwork must be
|
10771
|
-
# in custom subnet mode or when creating external
|
10866
|
+
# to for this forwarding rule, used with internal load balancers and external
|
10867
|
+
# passthrough Network Load Balancers with IPv6. If the network specified is in
|
10868
|
+
# auto subnet mode, this field is optional. However, a subnetwork must be
|
10869
|
+
# specified if the network is in custom subnet mode or when creating external
|
10870
|
+
# forwarding rule with IPv6.
|
10772
10871
|
# Corresponds to the JSON property `subnetwork`
|
10773
10872
|
# @return [String]
|
10774
10873
|
attr_accessor :subnetwork
|
@@ -11095,9 +11194,9 @@ module Google
|
|
11095
11194
|
end
|
11096
11195
|
end
|
11097
11196
|
|
11098
|
-
# Describes the auto-registration of the
|
11197
|
+
# Describes the auto-registration of the forwarding rule to Service Directory.
|
11099
11198
|
# The region and project of the Service Directory resource generated from this
|
11100
|
-
# registration will be the same as this
|
11199
|
+
# registration will be the same as this forwarding rule.
|
11101
11200
|
class ForwardingRuleServiceDirectoryRegistration
|
11102
11201
|
include Google::Apis::Core::Hashable
|
11103
11202
|
|
@@ -11113,7 +11212,7 @@ module Google
|
|
11113
11212
|
|
11114
11213
|
# [Optional] Service Directory region to register this global forwarding rule
|
11115
11214
|
# under. Default to "us-central1". Only used for PSC for Google APIs. All PSC
|
11116
|
-
# for Google APIs
|
11215
|
+
# for Google APIs forwarding rules on the same network should use the same
|
11117
11216
|
# Service Directory region.
|
11118
11217
|
# Corresponds to the JSON property `serviceDirectoryRegion`
|
11119
11218
|
# @return [String]
|
@@ -11226,9 +11325,9 @@ module Google
|
|
11226
11325
|
class FutureReservation
|
11227
11326
|
include Google::Apis::Core::Hashable
|
11228
11327
|
|
11229
|
-
# Future timestamp when the FR auto-created reservations will be deleted by
|
11230
|
-
# Format of this field must be a valid href="https://www.ietf.
|
11231
|
-
# txt">RFC3339 value.
|
11328
|
+
# Future timestamp when the FR auto-created reservations will be deleted by
|
11329
|
+
# Compute Engine. Format of this field must be a valid href="https://www.ietf.
|
11330
|
+
# org/rfc/rfc3339.txt">RFC3339 value.
|
11232
11331
|
# Corresponds to the JSON property `autoCreatedReservationsDeleteTime`
|
11233
11332
|
# @return [String]
|
11234
11333
|
attr_accessor :auto_created_reservations_delete_time
|
@@ -11967,7 +12066,7 @@ module Google
|
|
11967
12066
|
|
11968
12067
|
# Specifies how a port is selected for health checking. Can be one of the
|
11969
12068
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
11970
|
-
# port field in the health check. Supported by backend services for
|
12069
|
+
# port field in the health check. Supported by backend services for passthrough
|
11971
12070
|
# load balancers and backend services for proxy load balancers. Not supported by
|
11972
12071
|
# target pools. The health check supports all backends supported by the backend
|
11973
12072
|
# service provided the backend can be health checked. For example, GCE_VM_IP
|
@@ -11975,13 +12074,13 @@ module Google
|
|
11975
12074
|
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
11976
12075
|
# indirect method of specifying the health check port by referring to the
|
11977
12076
|
# backend service. Only supported by backend services for proxy load balancers.
|
11978
|
-
# Not supported by target pools. Not supported by backend services for
|
11979
|
-
#
|
11980
|
-
# example, GCE_VM_IP_PORT network endpoint groups and instance group
|
11981
|
-
# For GCE_VM_IP_PORT network endpoint group backends, the health check
|
11982
|
-
# port number specified for each endpoint in the network endpoint group.
|
11983
|
-
# instance group backends, the health check uses the port number determined
|
11984
|
-
# looking up the backend service's named port in the instance group's list of
|
12077
|
+
# Not supported by target pools. Not supported by backend services for
|
12078
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
12079
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12080
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12081
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
12082
|
+
# For instance group backends, the health check uses the port number determined
|
12083
|
+
# by looking up the backend service's named port in the instance group's list of
|
11985
12084
|
# named ports.
|
11986
12085
|
# Corresponds to the JSON property `portSpecification`
|
11987
12086
|
# @return [String]
|
@@ -12425,7 +12524,7 @@ module Google
|
|
12425
12524
|
|
12426
12525
|
# Specifies how a port is selected for health checking. Can be one of the
|
12427
12526
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
12428
|
-
# port field in the health check. Supported by backend services for
|
12527
|
+
# port field in the health check. Supported by backend services for passthrough
|
12429
12528
|
# load balancers and backend services for proxy load balancers. Not supported by
|
12430
12529
|
# target pools. The health check supports all backends supported by the backend
|
12431
12530
|
# service provided the backend can be health checked. For example, GCE_VM_IP
|
@@ -12433,13 +12532,13 @@ module Google
|
|
12433
12532
|
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
12434
12533
|
# indirect method of specifying the health check port by referring to the
|
12435
12534
|
# backend service. Only supported by backend services for proxy load balancers.
|
12436
|
-
# Not supported by target pools. Not supported by backend services for
|
12437
|
-
#
|
12438
|
-
# example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12439
|
-
# For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12440
|
-
# port number specified for each endpoint in the network endpoint group.
|
12441
|
-
# instance group backends, the health check uses the port number determined
|
12442
|
-
# looking up the backend service's named port in the instance group's list of
|
12535
|
+
# Not supported by target pools. Not supported by backend services for
|
12536
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
12537
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12538
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12539
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
12540
|
+
# For instance group backends, the health check uses the port number determined
|
12541
|
+
# by looking up the backend service's named port in the instance group's list of
|
12443
12542
|
# named ports.
|
12444
12543
|
# Corresponds to the JSON property `portSpecification`
|
12445
12544
|
# @return [String]
|
@@ -12513,7 +12612,7 @@ module Google
|
|
12513
12612
|
|
12514
12613
|
# Specifies how a port is selected for health checking. Can be one of the
|
12515
12614
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
12516
|
-
# port field in the health check. Supported by backend services for
|
12615
|
+
# port field in the health check. Supported by backend services for passthrough
|
12517
12616
|
# load balancers and backend services for proxy load balancers. Also supported
|
12518
12617
|
# in legacy HTTP health checks for target pools. The health check supports all
|
12519
12618
|
# backends supported by the backend service provided the backend can be health
|
@@ -12601,7 +12700,7 @@ module Google
|
|
12601
12700
|
|
12602
12701
|
# Specifies how a port is selected for health checking. Can be one of the
|
12603
12702
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
12604
|
-
# port field in the health check. Supported by backend services for
|
12703
|
+
# port field in the health check. Supported by backend services for passthrough
|
12605
12704
|
# load balancers and backend services for proxy load balancers. Not supported by
|
12606
12705
|
# target pools. The health check supports all backends supported by the backend
|
12607
12706
|
# service provided the backend can be health checked. For example, GCE_VM_IP
|
@@ -12609,13 +12708,13 @@ module Google
|
|
12609
12708
|
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
12610
12709
|
# indirect method of specifying the health check port by referring to the
|
12611
12710
|
# backend service. Only supported by backend services for proxy load balancers.
|
12612
|
-
# Not supported by target pools. Not supported by backend services for
|
12613
|
-
#
|
12614
|
-
# example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12615
|
-
# For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12616
|
-
# port number specified for each endpoint in the network endpoint group.
|
12617
|
-
# instance group backends, the health check uses the port number determined
|
12618
|
-
# looking up the backend service's named port in the instance group's list of
|
12711
|
+
# Not supported by target pools. Not supported by backend services for
|
12712
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
12713
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12714
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12715
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
12716
|
+
# For instance group backends, the health check uses the port number determined
|
12717
|
+
# by looking up the backend service's named port in the instance group's list of
|
12619
12718
|
# named ports.
|
12620
12719
|
# Corresponds to the JSON property `portSpecification`
|
12621
12720
|
# @return [String]
|
@@ -12667,18 +12766,13 @@ module Google
|
|
12667
12766
|
# resources: * [Regional](/compute/docs/reference/rest/alpha/regionHealthChecks)
|
12668
12767
|
# * [Global](/compute/docs/reference/rest/alpha/healthChecks) These health check
|
12669
12768
|
# resources can be used for load balancing and for autohealing VMs in a managed
|
12670
|
-
# instance group (MIG). **Load balancing**
|
12671
|
-
#
|
12672
|
-
#
|
12673
|
-
#
|
12674
|
-
#
|
12675
|
-
#
|
12676
|
-
#
|
12677
|
-
# reference/rest/v1/httpHealthChecks): * Target pool-based network load balancer
|
12678
|
-
# **Autohealing in MIGs** The health checks that you use for autohealing VMs in
|
12679
|
-
# a MIG can be either regional or global. For more information, see Set up an
|
12680
|
-
# application health check and autohealing. For more information, see Health
|
12681
|
-
# checks overview.
|
12769
|
+
# instance group (MIG). **Load balancing** Health check requirements vary
|
12770
|
+
# depending on the type of load balancer. For details about the type of health
|
12771
|
+
# check supported for each load balancer and corresponding backend type, see
|
12772
|
+
# Health checks overview: Load balancer guide. **Autohealing in MIGs** The
|
12773
|
+
# health checks that you use for autohealing VMs in a MIG can be either regional
|
12774
|
+
# or global. For more information, see Set up an application health check and
|
12775
|
+
# autohealing. For more information, see Health checks overview.
|
12682
12776
|
class HealthCheck
|
12683
12777
|
include Google::Apis::Core::Hashable
|
12684
12778
|
|
@@ -15320,6 +15414,12 @@ module Google
|
|
15320
15414
|
# @return [Google::Apis::ComputeAlpha::RolloutPolicy]
|
15321
15415
|
attr_accessor :rollout_override
|
15322
15416
|
|
15417
|
+
# Output only. Reserved for future use.
|
15418
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
15419
|
+
# @return [Boolean]
|
15420
|
+
attr_accessor :satisfies_pzi
|
15421
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
15422
|
+
|
15323
15423
|
# [Output Only] Reserved for future use.
|
15324
15424
|
# Corresponds to the JSON property `satisfiesPzs`
|
15325
15425
|
# @return [Boolean]
|
@@ -15466,6 +15566,7 @@ module Google
|
|
15466
15566
|
@name = args[:name] if args.key?(:name)
|
15467
15567
|
@raw_disk = args[:raw_disk] if args.key?(:raw_disk)
|
15468
15568
|
@rollout_override = args[:rollout_override] if args.key?(:rollout_override)
|
15569
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
15469
15570
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
15470
15571
|
@self_link = args[:self_link] if args.key?(:self_link)
|
15471
15572
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -15945,6 +16046,12 @@ module Google
|
|
15945
16046
|
# @return [Google::Apis::ComputeAlpha::ResourceStatus]
|
15946
16047
|
attr_accessor :resource_status
|
15947
16048
|
|
16049
|
+
# [Output Only] Reserved for future use.
|
16050
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
16051
|
+
# @return [Boolean]
|
16052
|
+
attr_accessor :satisfies_pzi
|
16053
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
16054
|
+
|
15948
16055
|
# [Output Only] Reserved for future use.
|
15949
16056
|
# Corresponds to the JSON property `satisfiesPzs`
|
15950
16057
|
# @return [Boolean]
|
@@ -16099,6 +16206,7 @@ module Google
|
|
16099
16206
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
16100
16207
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
16101
16208
|
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
16209
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
16102
16210
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
16103
16211
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
16104
16212
|
@secure_tags = args[:secure_tags] if args.key?(:secure_tags)
|
@@ -16795,6 +16903,11 @@ module Google
|
|
16795
16903
|
# @return [Array<Google::Apis::ComputeAlpha::NamedPort>]
|
16796
16904
|
attr_accessor :named_ports
|
16797
16905
|
|
16906
|
+
# Input only additional params for instance group manager creation.
|
16907
|
+
# Corresponds to the JSON property `params`
|
16908
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerParams]
|
16909
|
+
attr_accessor :params
|
16910
|
+
|
16798
16911
|
# [Output Only] The URL of the region where the managed instance group resides (
|
16799
16912
|
# for regional resources).
|
16800
16913
|
# Corresponds to the JSON property `region`
|
@@ -16916,6 +17029,7 @@ module Google
|
|
16916
17029
|
@list_managed_instances_results = args[:list_managed_instances_results] if args.key?(:list_managed_instances_results)
|
16917
17030
|
@name = args[:name] if args.key?(:name)
|
16918
17031
|
@named_ports = args[:named_ports] if args.key?(:named_ports)
|
17032
|
+
@params = args[:params] if args.key?(:params)
|
16919
17033
|
@region = args[:region] if args.key?(:region)
|
16920
17034
|
@self_link = args[:self_link] if args.key?(:self_link)
|
16921
17035
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -17517,6 +17631,28 @@ module Google
|
|
17517
17631
|
end
|
17518
17632
|
end
|
17519
17633
|
|
17634
|
+
# Input only additional params for instance group manager creation.
|
17635
|
+
class InstanceGroupManagerParams
|
17636
|
+
include Google::Apis::Core::Hashable
|
17637
|
+
|
17638
|
+
# Resource manager tags to be bound to the instance group manager. Tag keys and
|
17639
|
+
# values have the same definition as resource manager tags. Keys must be in the
|
17640
|
+
# format `tagKeys/123`, and values are in the format `tagValues/456`. The field
|
17641
|
+
# is allowed for INSERT only.
|
17642
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
17643
|
+
# @return [Hash<String,String>]
|
17644
|
+
attr_accessor :resource_manager_tags
|
17645
|
+
|
17646
|
+
def initialize(**args)
|
17647
|
+
update!(**args)
|
17648
|
+
end
|
17649
|
+
|
17650
|
+
# Update properties of this object
|
17651
|
+
def update!(**args)
|
17652
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
17653
|
+
end
|
17654
|
+
end
|
17655
|
+
|
17520
17656
|
# InstanceGroupManagerResizeRequest represents a request to create a number of
|
17521
17657
|
# VMs: either immediately or by queuing the request for the specified time. This
|
17522
17658
|
# resize request is nested under InstanceGroupManager and the VMs created by
|
@@ -17888,7 +18024,8 @@ module Google
|
|
17888
18024
|
# @return [Fixnum]
|
17889
18025
|
attr_accessor :initial_delay_sec
|
17890
18026
|
|
17891
|
-
# Defines
|
18027
|
+
# Defines how a MIG resumes or starts VMs from a standby pool when the group
|
18028
|
+
# scales out. The default mode is `MANUAL`.
|
17892
18029
|
# Corresponds to the JSON property `mode`
|
17893
18030
|
# @return [String]
|
17894
18031
|
attr_accessor :mode
|
@@ -20357,6 +20494,25 @@ module Google
|
|
20357
20494
|
end
|
20358
20495
|
end
|
20359
20496
|
|
20497
|
+
#
|
20498
|
+
class InstancesAddNetworkInterfaceRequest
|
20499
|
+
include Google::Apis::Core::Hashable
|
20500
|
+
|
20501
|
+
# A network interface resource attached to an instance.
|
20502
|
+
# Corresponds to the JSON property `network_interface`
|
20503
|
+
# @return [Google::Apis::ComputeAlpha::NetworkInterface]
|
20504
|
+
attr_accessor :network_interface
|
20505
|
+
|
20506
|
+
def initialize(**args)
|
20507
|
+
update!(**args)
|
20508
|
+
end
|
20509
|
+
|
20510
|
+
# Update properties of this object
|
20511
|
+
def update!(**args)
|
20512
|
+
@network_interface = args[:network_interface] if args.key?(:network_interface)
|
20513
|
+
end
|
20514
|
+
end
|
20515
|
+
|
20360
20516
|
#
|
20361
20517
|
class InstancesAddResourcePoliciesRequest
|
20362
20518
|
include Google::Apis::Core::Hashable
|
@@ -20922,6 +21078,12 @@ module Google
|
|
20922
21078
|
# @return [Google::Apis::ComputeAlpha::InstantSnapshotResourceStatus]
|
20923
21079
|
attr_accessor :resource_status
|
20924
21080
|
|
21081
|
+
# Output only. Reserved for future use.
|
21082
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
21083
|
+
# @return [Boolean]
|
21084
|
+
attr_accessor :satisfies_pzi
|
21085
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
21086
|
+
|
20925
21087
|
# [Output Only] Reserved for future use.
|
20926
21088
|
# Corresponds to the JSON property `satisfiesPzs`
|
20927
21089
|
# @return [Boolean]
|
@@ -20988,6 +21150,7 @@ module Google
|
|
20988
21150
|
@name = args[:name] if args.key?(:name)
|
20989
21151
|
@region = args[:region] if args.key?(:region)
|
20990
21152
|
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
21153
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
20991
21154
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
20992
21155
|
@self_link = args[:self_link] if args.key?(:self_link)
|
20993
21156
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -24948,6 +25111,12 @@ module Google
|
|
24948
25111
|
# @return [String]
|
24949
25112
|
attr_accessor :name
|
24950
25113
|
|
25114
|
+
# Output only. Reserved for future use.
|
25115
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
25116
|
+
# @return [Boolean]
|
25117
|
+
attr_accessor :satisfies_pzi
|
25118
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
25119
|
+
|
24951
25120
|
# [Output Only] Reserved for future use.
|
24952
25121
|
# Corresponds to the JSON property `satisfiesPzs`
|
24953
25122
|
# @return [Boolean]
|
@@ -25022,6 +25191,7 @@ module Google
|
|
25022
25191
|
@kind = args[:kind] if args.key?(:kind)
|
25023
25192
|
@machine_image_encryption_key = args[:machine_image_encryption_key] if args.key?(:machine_image_encryption_key)
|
25024
25193
|
@name = args[:name] if args.key?(:name)
|
25194
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
25025
25195
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
25026
25196
|
@saved_disks = args[:saved_disks] if args.key?(:saved_disks)
|
25027
25197
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -33685,7 +33855,7 @@ module Google
|
|
33685
33855
|
attr_accessor :kind
|
33686
33856
|
|
33687
33857
|
# [Output Only] The Cloud Armor Managed Protection (CAMP) tier for this project.
|
33688
|
-
# It can be one of the following values: CA_STANDARD,
|
33858
|
+
# It can be one of the following values: CA_STANDARD, CAMP_PLUS_PAYGO. If this
|
33689
33859
|
# field is not specified, it is assumed to be CA_STANDARD.
|
33690
33860
|
# Corresponds to the JSON property `managedProtectionTier`
|
33691
33861
|
# @return [String]
|
@@ -39028,6 +39198,17 @@ module Google
|
|
39028
39198
|
# @return [Hash<String,Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus>]
|
39029
39199
|
attr_accessor :service_integration_statuses
|
39030
39200
|
|
39201
|
+
# Specifies if the instance is in `SHUTTING_DOWN` state or there is a instance
|
39202
|
+
# stopping scheduled.
|
39203
|
+
# Corresponds to the JSON property `shutdownDetails`
|
39204
|
+
# @return [Google::Apis::ComputeAlpha::ResourceStatusShutdownDetails]
|
39205
|
+
attr_accessor :shutdown_details
|
39206
|
+
|
39207
|
+
# Upcoming Maintenance notification information.
|
39208
|
+
# Corresponds to the JSON property `upcomingMaintenance`
|
39209
|
+
# @return [Google::Apis::ComputeAlpha::UpcomingMaintenance]
|
39210
|
+
attr_accessor :upcoming_maintenance
|
39211
|
+
|
39031
39212
|
def initialize(**args)
|
39032
39213
|
update!(**args)
|
39033
39214
|
end
|
@@ -39038,6 +39219,8 @@ module Google
|
|
39038
39219
|
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
39039
39220
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
39040
39221
|
@service_integration_statuses = args[:service_integration_statuses] if args.key?(:service_integration_statuses)
|
39222
|
+
@shutdown_details = args[:shutdown_details] if args.key?(:shutdown_details)
|
39223
|
+
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
39041
39224
|
end
|
39042
39225
|
end
|
39043
39226
|
|
@@ -39140,6 +39323,48 @@ module Google
|
|
39140
39323
|
end
|
39141
39324
|
end
|
39142
39325
|
|
39326
|
+
# Specifies if the instance is in `SHUTTING_DOWN` state or there is a instance
|
39327
|
+
# stopping scheduled.
|
39328
|
+
class ResourceStatusShutdownDetails
|
39329
|
+
include Google::Apis::Core::Hashable
|
39330
|
+
|
39331
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
39332
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
39333
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
39334
|
+
# 000 years.
|
39335
|
+
# Corresponds to the JSON property `maxDuration`
|
39336
|
+
# @return [Google::Apis::ComputeAlpha::Duration]
|
39337
|
+
attr_accessor :max_duration
|
39338
|
+
|
39339
|
+
# Past timestamp indicating the beginning of current `stopState` in RFC3339 text
|
39340
|
+
# format.
|
39341
|
+
# Corresponds to the JSON property `requestTimestamp`
|
39342
|
+
# @return [String]
|
39343
|
+
attr_accessor :request_timestamp
|
39344
|
+
|
39345
|
+
# Current stopping state of the instance.
|
39346
|
+
# Corresponds to the JSON property `stopState`
|
39347
|
+
# @return [String]
|
39348
|
+
attr_accessor :stop_state
|
39349
|
+
|
39350
|
+
# Target instance state.
|
39351
|
+
# Corresponds to the JSON property `targetState`
|
39352
|
+
# @return [String]
|
39353
|
+
attr_accessor :target_state
|
39354
|
+
|
39355
|
+
def initialize(**args)
|
39356
|
+
update!(**args)
|
39357
|
+
end
|
39358
|
+
|
39359
|
+
# Update properties of this object
|
39360
|
+
def update!(**args)
|
39361
|
+
@max_duration = args[:max_duration] if args.key?(:max_duration)
|
39362
|
+
@request_timestamp = args[:request_timestamp] if args.key?(:request_timestamp)
|
39363
|
+
@stop_state = args[:stop_state] if args.key?(:stop_state)
|
39364
|
+
@target_state = args[:target_state] if args.key?(:target_state)
|
39365
|
+
end
|
39366
|
+
end
|
39367
|
+
|
39143
39368
|
# A rollout policy configuration.
|
39144
39369
|
class RolloutPolicy
|
39145
39370
|
include Google::Apis::Core::Hashable
|
@@ -40985,6 +41210,13 @@ module Google
|
|
40985
41210
|
# @return [Google::Apis::ComputeAlpha::BfdStatus]
|
40986
41211
|
attr_accessor :bfd_status
|
40987
41212
|
|
41213
|
+
# Enable IPv4 traffic over BGP Peer. It is enabled by default if the
|
41214
|
+
# peerIpAddress is version 4.
|
41215
|
+
# Corresponds to the JSON property `enableIpv4`
|
41216
|
+
# @return [Boolean]
|
41217
|
+
attr_accessor :enable_ipv4
|
41218
|
+
alias_method :enable_ipv4?, :enable_ipv4
|
41219
|
+
|
40988
41220
|
# Enable IPv6 traffic over BGP Peer. If not specified, it is disabled by default.
|
40989
41221
|
# Corresponds to the JSON property `enableIpv6`
|
40990
41222
|
# @return [Boolean]
|
@@ -40996,6 +41228,11 @@ module Google
|
|
40996
41228
|
# @return [String]
|
40997
41229
|
attr_accessor :ip_address
|
40998
41230
|
|
41231
|
+
# IPv4 address of the local BGP interface.
|
41232
|
+
# Corresponds to the JSON property `ipv4NexthopAddress`
|
41233
|
+
# @return [String]
|
41234
|
+
attr_accessor :ipv4_nexthop_address
|
41235
|
+
|
40999
41236
|
# IPv6 address of the local BGP interface.
|
41000
41237
|
# Corresponds to the JSON property `ipv6NexthopAddress`
|
41001
41238
|
# @return [String]
|
@@ -41027,6 +41264,11 @@ module Google
|
|
41027
41264
|
# @return [String]
|
41028
41265
|
attr_accessor :peer_ip_address
|
41029
41266
|
|
41267
|
+
# IPv4 address of the remote BGP interface.
|
41268
|
+
# Corresponds to the JSON property `peerIpv4NexthopAddress`
|
41269
|
+
# @return [String]
|
41270
|
+
attr_accessor :peer_ipv4_nexthop_address
|
41271
|
+
|
41030
41272
|
# IPv6 address of the remote BGP interface.
|
41031
41273
|
# Corresponds to the JSON property `peerIpv6NexthopAddress`
|
41032
41274
|
# @return [String]
|
@@ -41074,14 +41316,17 @@ module Google
|
|
41074
41316
|
def update!(**args)
|
41075
41317
|
@advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
|
41076
41318
|
@bfd_status = args[:bfd_status] if args.key?(:bfd_status)
|
41319
|
+
@enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
|
41077
41320
|
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
41078
41321
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
41322
|
+
@ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
|
41079
41323
|
@ipv6_nexthop_address = args[:ipv6_nexthop_address] if args.key?(:ipv6_nexthop_address)
|
41080
41324
|
@linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
|
41081
41325
|
@md5_auth_enabled = args[:md5_auth_enabled] if args.key?(:md5_auth_enabled)
|
41082
41326
|
@name = args[:name] if args.key?(:name)
|
41083
41327
|
@num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
|
41084
41328
|
@peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
|
41329
|
+
@peer_ipv4_nexthop_address = args[:peer_ipv4_nexthop_address] if args.key?(:peer_ipv4_nexthop_address)
|
41085
41330
|
@peer_ipv6_nexthop_address = args[:peer_ipv6_nexthop_address] if args.key?(:peer_ipv6_nexthop_address)
|
41086
41331
|
@router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
|
41087
41332
|
@state = args[:state] if args.key?(:state)
|
@@ -41705,7 +41950,7 @@ module Google
|
|
41705
41950
|
|
41706
41951
|
# Specifies how a port is selected for health checking. Can be one of the
|
41707
41952
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
41708
|
-
# port field in the health check. Supported by backend services for
|
41953
|
+
# port field in the health check. Supported by backend services for passthrough
|
41709
41954
|
# load balancers and backend services for proxy load balancers. Not supported by
|
41710
41955
|
# target pools. The health check supports all backends supported by the backend
|
41711
41956
|
# service provided the backend can be health checked. For example, GCE_VM_IP
|
@@ -41713,13 +41958,13 @@ module Google
|
|
41713
41958
|
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
41714
41959
|
# indirect method of specifying the health check port by referring to the
|
41715
41960
|
# backend service. Only supported by backend services for proxy load balancers.
|
41716
|
-
# Not supported by target pools. Not supported by backend services for
|
41717
|
-
#
|
41718
|
-
# example, GCE_VM_IP_PORT network endpoint groups and instance group
|
41719
|
-
# For GCE_VM_IP_PORT network endpoint group backends, the health check
|
41720
|
-
# port number specified for each endpoint in the network endpoint group.
|
41721
|
-
# instance group backends, the health check uses the port number determined
|
41722
|
-
# looking up the backend service's named port in the instance group's list of
|
41961
|
+
# Not supported by target pools. Not supported by backend services for
|
41962
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
41963
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
41964
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
41965
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
41966
|
+
# For instance group backends, the health check uses the port number determined
|
41967
|
+
# by looking up the backend service's named port in the instance group's list of
|
41723
41968
|
# named ports.
|
41724
41969
|
# Corresponds to the JSON property `portSpecification`
|
41725
41970
|
# @return [String]
|
@@ -42002,6 +42247,11 @@ module Google
|
|
42002
42247
|
# @return [Fixnum]
|
42003
42248
|
attr_accessor :current_memory_mb
|
42004
42249
|
|
42250
|
+
# Configuration for gracefully shutting down the instance.
|
42251
|
+
# Corresponds to the JSON property `gracefulShutdown`
|
42252
|
+
# @return [Google::Apis::ComputeAlpha::SchedulingGracefulShutdown]
|
42253
|
+
attr_accessor :graceful_shutdown
|
42254
|
+
|
42005
42255
|
# Specify the time in seconds for host error detection, the value must be within
|
42006
42256
|
# the range of [90, 330] with the increment of 30, if unset, the default
|
42007
42257
|
# behavior of host error recovery will be used.
|
@@ -42107,6 +42357,7 @@ module Google
|
|
42107
42357
|
@availability_domain = args[:availability_domain] if args.key?(:availability_domain)
|
42108
42358
|
@current_cpus = args[:current_cpus] if args.key?(:current_cpus)
|
42109
42359
|
@current_memory_mb = args[:current_memory_mb] if args.key?(:current_memory_mb)
|
42360
|
+
@graceful_shutdown = args[:graceful_shutdown] if args.key?(:graceful_shutdown)
|
42110
42361
|
@host_error_timeout_seconds = args[:host_error_timeout_seconds] if args.key?(:host_error_timeout_seconds)
|
42111
42362
|
@instance_termination_action = args[:instance_termination_action] if args.key?(:instance_termination_action)
|
42112
42363
|
@latency_tolerant = args[:latency_tolerant] if args.key?(:latency_tolerant)
|
@@ -42124,6 +42375,35 @@ module Google
|
|
42124
42375
|
end
|
42125
42376
|
end
|
42126
42377
|
|
42378
|
+
# Configuration for gracefully shutting down the instance.
|
42379
|
+
class SchedulingGracefulShutdown
|
42380
|
+
include Google::Apis::Core::Hashable
|
42381
|
+
|
42382
|
+
# Opts-in for graceful shutdown.
|
42383
|
+
# Corresponds to the JSON property `enabled`
|
42384
|
+
# @return [Boolean]
|
42385
|
+
attr_accessor :enabled
|
42386
|
+
alias_method :enabled?, :enabled
|
42387
|
+
|
42388
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
42389
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
42390
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
42391
|
+
# 000 years.
|
42392
|
+
# Corresponds to the JSON property `maxDuration`
|
42393
|
+
# @return [Google::Apis::ComputeAlpha::Duration]
|
42394
|
+
attr_accessor :max_duration
|
42395
|
+
|
42396
|
+
def initialize(**args)
|
42397
|
+
update!(**args)
|
42398
|
+
end
|
42399
|
+
|
42400
|
+
# Update properties of this object
|
42401
|
+
def update!(**args)
|
42402
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
42403
|
+
@max_duration = args[:max_duration] if args.key?(:max_duration)
|
42404
|
+
end
|
42405
|
+
end
|
42406
|
+
|
42127
42407
|
# Node Affinity: the configuration of desired nodes onto which this Instance
|
42128
42408
|
# could be scheduled.
|
42129
42409
|
class SchedulingNodeAffinity
|
@@ -42796,12 +43076,33 @@ module Google
|
|
42796
43076
|
# @return [Float]
|
42797
43077
|
attr_accessor :auto_deploy_load_threshold
|
42798
43078
|
|
43079
|
+
#
|
43080
|
+
# Corresponds to the JSON property `detectionAbsoluteQps`
|
43081
|
+
# @return [Float]
|
43082
|
+
attr_accessor :detection_absolute_qps
|
43083
|
+
|
43084
|
+
#
|
43085
|
+
# Corresponds to the JSON property `detectionLoadThreshold`
|
43086
|
+
# @return [Float]
|
43087
|
+
attr_accessor :detection_load_threshold
|
43088
|
+
|
43089
|
+
#
|
43090
|
+
# Corresponds to the JSON property `detectionRelativeToBaselineQps`
|
43091
|
+
# @return [Float]
|
43092
|
+
attr_accessor :detection_relative_to_baseline_qps
|
43093
|
+
|
42799
43094
|
# The name must be 1-63 characters long, and comply with RFC1035. The name must
|
42800
43095
|
# be unique within the security policy.
|
42801
43096
|
# Corresponds to the JSON property `name`
|
42802
43097
|
# @return [String]
|
42803
43098
|
attr_accessor :name
|
42804
43099
|
|
43100
|
+
# Configuration options for enabling Adaptive Protection to operate on specified
|
43101
|
+
# granular traffic units.
|
43102
|
+
# Corresponds to the JSON property `trafficGranularityConfigs`
|
43103
|
+
# @return [Array<Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig>]
|
43104
|
+
attr_accessor :traffic_granularity_configs
|
43105
|
+
|
42805
43106
|
def initialize(**args)
|
42806
43107
|
update!(**args)
|
42807
43108
|
end
|
@@ -42812,7 +43113,46 @@ module Google
|
|
42812
43113
|
@auto_deploy_expiration_sec = args[:auto_deploy_expiration_sec] if args.key?(:auto_deploy_expiration_sec)
|
42813
43114
|
@auto_deploy_impacted_baseline_threshold = args[:auto_deploy_impacted_baseline_threshold] if args.key?(:auto_deploy_impacted_baseline_threshold)
|
42814
43115
|
@auto_deploy_load_threshold = args[:auto_deploy_load_threshold] if args.key?(:auto_deploy_load_threshold)
|
43116
|
+
@detection_absolute_qps = args[:detection_absolute_qps] if args.key?(:detection_absolute_qps)
|
43117
|
+
@detection_load_threshold = args[:detection_load_threshold] if args.key?(:detection_load_threshold)
|
43118
|
+
@detection_relative_to_baseline_qps = args[:detection_relative_to_baseline_qps] if args.key?(:detection_relative_to_baseline_qps)
|
42815
43119
|
@name = args[:name] if args.key?(:name)
|
43120
|
+
@traffic_granularity_configs = args[:traffic_granularity_configs] if args.key?(:traffic_granularity_configs)
|
43121
|
+
end
|
43122
|
+
end
|
43123
|
+
|
43124
|
+
# Configurations to specifc granular traffic units processed by Adaptive
|
43125
|
+
# Protection.
|
43126
|
+
class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigThresholdConfigTrafficGranularityConfig
|
43127
|
+
include Google::Apis::Core::Hashable
|
43128
|
+
|
43129
|
+
# If enabled, traffic matching each unique value for the specified type
|
43130
|
+
# constitutes a separate traffic unit. It can only be set to true if `value` is
|
43131
|
+
# empty.
|
43132
|
+
# Corresponds to the JSON property `enableEachUniqueValue`
|
43133
|
+
# @return [Boolean]
|
43134
|
+
attr_accessor :enable_each_unique_value
|
43135
|
+
alias_method :enable_each_unique_value?, :enable_each_unique_value
|
43136
|
+
|
43137
|
+
# Type of this configuration.
|
43138
|
+
# Corresponds to the JSON property `type`
|
43139
|
+
# @return [String]
|
43140
|
+
attr_accessor :type
|
43141
|
+
|
43142
|
+
# Requests that match this value constitute a granular traffic unit.
|
43143
|
+
# Corresponds to the JSON property `value`
|
43144
|
+
# @return [String]
|
43145
|
+
attr_accessor :value
|
43146
|
+
|
43147
|
+
def initialize(**args)
|
43148
|
+
update!(**args)
|
43149
|
+
end
|
43150
|
+
|
43151
|
+
# Update properties of this object
|
43152
|
+
def update!(**args)
|
43153
|
+
@enable_each_unique_value = args[:enable_each_unique_value] if args.key?(:enable_each_unique_value)
|
43154
|
+
@type = args[:type] if args.key?(:type)
|
43155
|
+
@value = args[:value] if args.key?(:value)
|
42816
43156
|
end
|
42817
43157
|
end
|
42818
43158
|
|
@@ -43785,7 +44125,13 @@ module Google
|
|
43785
44125
|
# is truncated to the first 128 bytes. - SNI: Server name indication in the TLS
|
43786
44126
|
# session of the HTTPS request. The key value is truncated to the first 128
|
43787
44127
|
# bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The
|
43788
|
-
# country/region from which the request originates.
|
44128
|
+
# country/region from which the request originates. - TLS_JA3_FINGERPRINT: JA3
|
44129
|
+
# TLS/SSL fingerprint if the client connects using HTTPS, HTTP/2 or HTTP/3. If
|
44130
|
+
# not available, the key type defaults to ALL. - USER_IP: The IP address of the
|
44131
|
+
# originating client, which is resolved based on "userIpRequestHeaders"
|
44132
|
+
# configured with the security policy. If there is no "userIpRequestHeaders"
|
44133
|
+
# configuration or an IP address cannot be resolved from it, the key type
|
44134
|
+
# defaults to IP.
|
43789
44135
|
# Corresponds to the JSON property `enforceOnKey`
|
43790
44136
|
# @return [String]
|
43791
44137
|
attr_accessor :enforce_on_key
|
@@ -43880,7 +44226,13 @@ module Google
|
|
43880
44226
|
# is truncated to the first 128 bytes. - SNI: Server name indication in the TLS
|
43881
44227
|
# session of the HTTPS request. The key value is truncated to the first 128
|
43882
44228
|
# bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The
|
43883
|
-
# country/region from which the request originates.
|
44229
|
+
# country/region from which the request originates. - TLS_JA3_FINGERPRINT: JA3
|
44230
|
+
# TLS/SSL fingerprint if the client connects using HTTPS, HTTP/2 or HTTP/3. If
|
44231
|
+
# not available, the key type defaults to ALL. - USER_IP: The IP address of the
|
44232
|
+
# originating client, which is resolved based on "userIpRequestHeaders"
|
44233
|
+
# configured with the security policy. If there is no "userIpRequestHeaders"
|
44234
|
+
# configuration or an IP address cannot be resolved from it, the key type
|
44235
|
+
# defaults to IP.
|
43884
44236
|
# Corresponds to the JSON property `enforceOnKeyType`
|
43885
44237
|
# @return [String]
|
43886
44238
|
attr_accessor :enforce_on_key_type
|
@@ -45445,6 +45797,12 @@ module Google
|
|
45445
45797
|
# @return [String]
|
45446
45798
|
attr_accessor :region
|
45447
45799
|
|
45800
|
+
# Output only. Reserved for future use.
|
45801
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
45802
|
+
# @return [Boolean]
|
45803
|
+
attr_accessor :satisfies_pzi
|
45804
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
45805
|
+
|
45448
45806
|
# [Output Only] Reserved for future use.
|
45449
45807
|
# Corresponds to the JSON property `satisfiesPzs`
|
45450
45808
|
# @return [Boolean]
|
@@ -45594,6 +45952,7 @@ module Google
|
|
45594
45952
|
@max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days)
|
45595
45953
|
@name = args[:name] if args.key?(:name)
|
45596
45954
|
@region = args[:region] if args.key?(:region)
|
45955
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
45597
45956
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
45598
45957
|
@self_link = args[:self_link] if args.key?(:self_link)
|
45599
45958
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -47078,9 +47437,10 @@ module Google
|
|
47078
47437
|
end
|
47079
47438
|
end
|
47080
47439
|
|
47081
|
-
# Represents an SSL Policy resource. Use SSL policies to control
|
47082
|
-
#
|
47083
|
-
#
|
47440
|
+
# Represents an SSL Policy resource. Use SSL policies to control SSL features,
|
47441
|
+
# such as versions and cipher suites, that are offered by Application Load
|
47442
|
+
# Balancers and proxy Network Load Balancers. For more information, read SSL
|
47443
|
+
# policies overview.
|
47084
47444
|
class SslPolicy
|
47085
47445
|
include Google::Apis::Core::Hashable
|
47086
47446
|
|
@@ -49500,7 +49860,7 @@ module Google
|
|
49500
49860
|
|
49501
49861
|
# Specifies how a port is selected for health checking. Can be one of the
|
49502
49862
|
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
49503
|
-
# port field in the health check. Supported by backend services for
|
49863
|
+
# port field in the health check. Supported by backend services for passthrough
|
49504
49864
|
# load balancers and backend services for proxy load balancers. Not supported by
|
49505
49865
|
# target pools. The health check supports all backends supported by the backend
|
49506
49866
|
# service provided the backend can be health checked. For example, GCE_VM_IP
|
@@ -49508,13 +49868,13 @@ module Google
|
|
49508
49868
|
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
49509
49869
|
# indirect method of specifying the health check port by referring to the
|
49510
49870
|
# backend service. Only supported by backend services for proxy load balancers.
|
49511
|
-
# Not supported by target pools. Not supported by backend services for
|
49512
|
-
#
|
49513
|
-
# example, GCE_VM_IP_PORT network endpoint groups and instance group
|
49514
|
-
# For GCE_VM_IP_PORT network endpoint group backends, the health check
|
49515
|
-
# port number specified for each endpoint in the network endpoint group.
|
49516
|
-
# instance group backends, the health check uses the port number determined
|
49517
|
-
# looking up the backend service's named port in the instance group's list of
|
49871
|
+
# Not supported by target pools. Not supported by backend services for
|
49872
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
49873
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
49874
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
49875
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
49876
|
+
# For instance group backends, the health check uses the port number determined
|
49877
|
+
# by looking up the backend service's named port in the instance group's list of
|
49518
49878
|
# named ports.
|
49519
49879
|
# Corresponds to the JSON property `portSpecification`
|
49520
49880
|
# @return [String]
|
@@ -51332,10 +51692,10 @@ module Google
|
|
51332
51692
|
end
|
51333
51693
|
end
|
51334
51694
|
|
51335
|
-
# Represents a Target Pool resource. Target pools are used
|
51336
|
-
#
|
51337
|
-
# legacy HttpHealthCheck resource, and, optionally, a backup
|
51338
|
-
# more information, read Using target pools.
|
51695
|
+
# Represents a Target Pool resource. Target pools are used with external
|
51696
|
+
# passthrough Network Load Balancers. A target pool references member instances,
|
51697
|
+
# an associated legacy HttpHealthCheck resource, and, optionally, a backup
|
51698
|
+
# target pool. For more information, read Using target pools.
|
51339
51699
|
class TargetPool
|
51340
51700
|
include Google::Apis::Core::Hashable
|
51341
51701
|
|
@@ -52011,9 +52371,9 @@ module Google
|
|
52011
52371
|
end
|
52012
52372
|
|
52013
52373
|
# Represents a Target SSL Proxy resource. A target SSL proxy is a component of a
|
52014
|
-
#
|
52015
|
-
# and the target proxy then references
|
52016
|
-
# information, read
|
52374
|
+
# Proxy Network Load Balancer. The forwarding rule references the target SSL
|
52375
|
+
# proxy, and the target proxy then references a backend service. For more
|
52376
|
+
# information, read Proxy Network Load Balancer overview.
|
52017
52377
|
class TargetSslProxy
|
52018
52378
|
include Google::Apis::Core::Hashable
|
52019
52379
|
|
@@ -52358,9 +52718,9 @@ module Google
|
|
52358
52718
|
end
|
52359
52719
|
|
52360
52720
|
# Represents a Target TCP Proxy resource. A target TCP proxy is a component of a
|
52361
|
-
#
|
52362
|
-
# and the target proxy then references
|
52363
|
-
# information, read
|
52721
|
+
# Proxy Network Load Balancer. The forwarding rule references the target TCP
|
52722
|
+
# proxy, and the target proxy then references a backend service. For more
|
52723
|
+
# information, read Proxy Network Load Balancer overview.
|
52364
52724
|
class TargetTcpProxy
|
52365
52725
|
include Google::Apis::Core::Hashable
|
52366
52726
|
|