google-apis-compute_v1 0.147.0 → 0.149.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: a02ec038b48d3dea53e17f17988d2a2849c8699fc905df4caa73ddf75c8cf714
|
|
4
|
+
data.tar.gz: b3d9a211614d1611568cdd1512499e78b4b5e9c4a7a0c3464993ff185e4dac7e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2bc2ca5e807253bb964cc15de3136040d1c25171240473d7f94266ba538099d8e1e19cd3dfa062a190fadb9df794c89f31c6aa405c2eac4987058dfb407b10c
|
|
7
|
+
data.tar.gz: afabc07256b9cbff77fa4ce22311bdb385b99ff641109479549b26e1512bac367f34babc814a8ee45f9c2ecc796c1f946706d0dce9a6ecd1c9a611c9c90bd7dd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-compute_v1
|
|
2
2
|
|
|
3
|
+
### v0.149.0 (2026-07-05)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260625
|
|
6
|
+
|
|
7
|
+
### v0.148.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260612
|
|
10
|
+
|
|
3
11
|
### v0.147.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260530
|
|
@@ -23149,16 +23149,15 @@ module Google
|
|
|
23149
23149
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
|
23150
23150
|
include Google::Apis::Core::Hashable
|
|
23151
23151
|
|
|
23152
|
-
# The action that a MIG performs on a failed
|
|
23153
|
-
#
|
|
23154
|
-
#
|
|
23152
|
+
# The action that a MIG performs on a failed VM. If the value of the
|
|
23153
|
+
# onFailedHealthCheck field is `DEFAULT_ACTION`, then the same action also
|
|
23154
|
+
# applies to the VMs on which your application fails a health check.
|
|
23155
23155
|
# Valid values are
|
|
23156
23156
|
#
|
|
23157
|
-
# - REPAIR (default): MIG automatically repairs a failed
|
|
23158
|
-
#
|
|
23157
|
+
# - REPAIR (default): MIG automatically repairs a failed VM
|
|
23158
|
+
# by recreating it. For more information, see About
|
|
23159
23159
|
# repairing VMs in a MIG.
|
|
23160
|
-
# - DO_NOTHING: MIG does not repair a failed
|
|
23161
|
-
# VM.
|
|
23160
|
+
# - DO_NOTHING: MIG does not repair a failed VM.
|
|
23162
23161
|
# Corresponds to the JSON property `defaultActionOnFailure`
|
|
23163
23162
|
# @return [String]
|
|
23164
23163
|
attr_accessor :default_action_on_failure
|
|
@@ -52796,6 +52795,15 @@ module Google
|
|
|
52796
52795
|
# @return [Array<String>]
|
|
52797
52796
|
attr_accessor :drain_nat_ips
|
|
52798
52797
|
|
|
52798
|
+
# Output only. Effective timeout (in seconds) for TCP connections that are in
|
|
52799
|
+
# TIME_WAIT
|
|
52800
|
+
# state. This value is equal to tcp_time_wait_timeout_sec.
|
|
52801
|
+
# If tcp_time_wait_timeout_sec isn't set, the effective timeout is 30s or
|
|
52802
|
+
# 120s. The field is output only.
|
|
52803
|
+
# Corresponds to the JSON property `effectiveTcpTimeWaitTimeoutSec`
|
|
52804
|
+
# @return [Fixnum]
|
|
52805
|
+
attr_accessor :effective_tcp_time_wait_timeout_sec
|
|
52806
|
+
|
|
52799
52807
|
# Enable Dynamic Port Allocation.
|
|
52800
52808
|
# If not specified, it is disabled by default.
|
|
52801
52809
|
# If set to true,
|
|
@@ -52969,6 +52977,7 @@ module Google
|
|
|
52969
52977
|
def update!(**args)
|
|
52970
52978
|
@auto_network_tier = args[:auto_network_tier] if args.key?(:auto_network_tier)
|
|
52971
52979
|
@drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips)
|
|
52980
|
+
@effective_tcp_time_wait_timeout_sec = args[:effective_tcp_time_wait_timeout_sec] if args.key?(:effective_tcp_time_wait_timeout_sec)
|
|
52972
52981
|
@enable_dynamic_port_allocation = args[:enable_dynamic_port_allocation] if args.key?(:enable_dynamic_port_allocation)
|
|
52973
52982
|
@enable_endpoint_independent_mapping = args[:enable_endpoint_independent_mapping] if args.key?(:enable_endpoint_independent_mapping)
|
|
52974
52983
|
@endpoint_types = args[:endpoint_types] if args.key?(:endpoint_types)
|
|
@@ -55281,6 +55290,29 @@ module Google
|
|
|
55281
55290
|
class SecurityPolicyDdosProtectionConfig
|
|
55282
55291
|
include Google::Apis::Core::Hashable
|
|
55283
55292
|
|
|
55293
|
+
#
|
|
55294
|
+
# Corresponds to the JSON property `ddosAdaptiveProtection`
|
|
55295
|
+
# @return [String]
|
|
55296
|
+
attr_accessor :ddos_adaptive_protection
|
|
55297
|
+
|
|
55298
|
+
# DDoS Protection for Network Load Balancers (and VMs with public IPs)
|
|
55299
|
+
# builds DDoS mitigations that minimize collateral damage. It quantifies
|
|
55300
|
+
# this as the fraction of a non-abuse baseline that's inadvertently
|
|
55301
|
+
# blocked.
|
|
55302
|
+
# Rules whose collateral damage exceeds ddosImpactedBaselineThreshold will
|
|
55303
|
+
# not be deployed. Using a lower value will prioritize keeping collateral
|
|
55304
|
+
# damage low, possibly at the cost of its effectiveness in rate limiting
|
|
55305
|
+
# some or all of the attack. It should typically be unset, so Advanced DDoS
|
|
55306
|
+
# (and Adaptive Protection) uses the best mitigation it can find. Setting
|
|
55307
|
+
# the threshold is advised if there are logs for false positive detections
|
|
55308
|
+
# with high collateral damage, and will cause Advanced DDoS to attempt to
|
|
55309
|
+
# find a less aggressive rule that satisfies the constraint. If a suitable
|
|
55310
|
+
# rule cannot be found, the system falls back to either no mitigation for
|
|
55311
|
+
# smaller attacks or broader network throttles for larger ones.
|
|
55312
|
+
# Corresponds to the JSON property `ddosImpactedBaselineThreshold`
|
|
55313
|
+
# @return [Float]
|
|
55314
|
+
attr_accessor :ddos_impacted_baseline_threshold
|
|
55315
|
+
|
|
55284
55316
|
#
|
|
55285
55317
|
# Corresponds to the JSON property `ddosProtection`
|
|
55286
55318
|
# @return [String]
|
|
@@ -55292,6 +55324,8 @@ module Google
|
|
|
55292
55324
|
|
|
55293
55325
|
# Update properties of this object
|
|
55294
55326
|
def update!(**args)
|
|
55327
|
+
@ddos_adaptive_protection = args[:ddos_adaptive_protection] if args.key?(:ddos_adaptive_protection)
|
|
55328
|
+
@ddos_impacted_baseline_threshold = args[:ddos_impacted_baseline_threshold] if args.key?(:ddos_impacted_baseline_threshold)
|
|
55295
55329
|
@ddos_protection = args[:ddos_protection] if args.key?(:ddos_protection)
|
|
55296
55330
|
end
|
|
55297
55331
|
end
|
|
@@ -56533,6 +56567,12 @@ module Google
|
|
|
56533
56567
|
# @return [String]
|
|
56534
56568
|
attr_accessor :name
|
|
56535
56569
|
|
|
56570
|
+
# The number of NAT IP addresses to be allocated per connected endpoint.
|
|
56571
|
+
# If not specified, the default value is 1.
|
|
56572
|
+
# Corresponds to the JSON property `natIpsPerEndpoint`
|
|
56573
|
+
# @return [Fixnum]
|
|
56574
|
+
attr_accessor :nat_ips_per_endpoint
|
|
56575
|
+
|
|
56536
56576
|
# An array of URLs where each entry is the URL of a subnet provided
|
|
56537
56577
|
# by the service producer to use for NAT in this service attachment.
|
|
56538
56578
|
# Corresponds to the JSON property `natSubnets`
|
|
@@ -56622,6 +56662,7 @@ module Google
|
|
|
56622
56662
|
@kind = args[:kind] if args.key?(:kind)
|
|
56623
56663
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
56624
56664
|
@name = args[:name] if args.key?(:name)
|
|
56665
|
+
@nat_ips_per_endpoint = args[:nat_ips_per_endpoint] if args.key?(:nat_ips_per_endpoint)
|
|
56625
56666
|
@nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets)
|
|
56626
56667
|
@producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule)
|
|
56627
56668
|
@propagated_connection_limit = args[:propagated_connection_limit] if args.key?(:propagated_connection_limit)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeV1
|
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.149.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260625"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -20969,6 +20969,7 @@ module Google
|
|
|
20969
20969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
20970
20970
|
property :auto_network_tier, as: 'autoNetworkTier'
|
|
20971
20971
|
collection :drain_nat_ips, as: 'drainNatIps'
|
|
20972
|
+
property :effective_tcp_time_wait_timeout_sec, as: 'effectiveTcpTimeWaitTimeoutSec'
|
|
20972
20973
|
property :enable_dynamic_port_allocation, as: 'enableDynamicPortAllocation'
|
|
20973
20974
|
property :enable_endpoint_independent_mapping, as: 'enableEndpointIndependentMapping'
|
|
20974
20975
|
collection :endpoint_types, as: 'endpointTypes'
|
|
@@ -21534,6 +21535,8 @@ module Google
|
|
|
21534
21535
|
class SecurityPolicyDdosProtectionConfig
|
|
21535
21536
|
# @private
|
|
21536
21537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
21538
|
+
property :ddos_adaptive_protection, as: 'ddosAdaptiveProtection'
|
|
21539
|
+
property :ddos_impacted_baseline_threshold, as: 'ddosImpactedBaselineThreshold'
|
|
21537
21540
|
property :ddos_protection, as: 'ddosProtection'
|
|
21538
21541
|
end
|
|
21539
21542
|
end
|
|
@@ -21821,6 +21824,7 @@ module Google
|
|
|
21821
21824
|
property :kind, as: 'kind'
|
|
21822
21825
|
hash :metadata, as: 'metadata'
|
|
21823
21826
|
property :name, as: 'name'
|
|
21827
|
+
property :nat_ips_per_endpoint, as: 'natIpsPerEndpoint'
|
|
21824
21828
|
collection :nat_subnets, as: 'natSubnets'
|
|
21825
21829
|
property :producer_forwarding_rule, as: 'producerForwardingRule'
|
|
21826
21830
|
property :propagated_connection_limit, as: 'propagatedConnectionLimit'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.149.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.149.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|