google-apis-compute_v1 0.72.0 → 0.73.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: 8882905543da32b718b6df50295186cec25036dc55818987eb580543e8ebdbbf
|
4
|
+
data.tar.gz: 940a9c4cf51f44557778d61bb14b80ca68fd68a12a6d07aa8089404036b2a15b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf37e5202519234f090dc2471fad7731771640f1ec88e95b30912f0a7037c25cdaae5a4b699885b1c0fe6dfe64111c47ab7a9f0c6fd7479f44eb9ca5c1159b4c
|
7
|
+
data.tar.gz: '0181c99ce54685e1be439679b41ae78311bde727b3a254e9816d18a3af33636e3f5cc3aaa74e3a586453b297eee1bcfa95a12eeed27526e2e9e94835571291e3'
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,12 @@
|
|
1
1
|
# Release history for google-apis-compute_v1
|
2
2
|
|
3
|
-
### v0.
|
3
|
+
### v0.73.0 (2023-07-09)
|
4
4
|
|
5
|
-
* Regenerated from discovery document revision
|
5
|
+
* Regenerated from discovery document revision 20230701
|
6
|
+
|
7
|
+
### v0.72.0 (2023-07-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230620
|
6
10
|
|
7
11
|
### v0.71.0 (2023-06-18)
|
8
12
|
|
@@ -9095,9 +9095,12 @@ module Google
|
|
9095
9095
|
alias_method :all_ports?, :all_ports
|
9096
9096
|
|
9097
9097
|
# This field is used along with the backend_service field for internal load
|
9098
|
-
# balancing or with the target field for internal TargetInstance. If
|
9099
|
-
#
|
9100
|
-
#
|
9098
|
+
# balancing or with the target field for internal TargetInstance. If set to true,
|
9099
|
+
# clients can access the Internal TCP/UDP Load Balancer, Internal HTTP(S) and
|
9100
|
+
# TCP Proxy Load Balancer from all regions. If false, only allows access from
|
9101
|
+
# the local region the load balancer is located at. Note that for
|
9102
|
+
# INTERNAL_MANAGED forwarding rules, this field cannot be changed after the
|
9103
|
+
# forwarding rule is created.
|
9101
9104
|
# Corresponds to the JSON property `allowGlobalAccess`
|
9102
9105
|
# @return [Boolean]
|
9103
9106
|
attr_accessor :allow_global_access
|
@@ -14065,6 +14068,11 @@ module Google
|
|
14065
14068
|
# @return [String]
|
14066
14069
|
attr_accessor :instance_group
|
14067
14070
|
|
14071
|
+
# The repair policy for this managed instance group.
|
14072
|
+
# Corresponds to the JSON property `instanceLifecyclePolicy`
|
14073
|
+
# @return [Google::Apis::ComputeV1::InstanceGroupManagerInstanceLifecyclePolicy]
|
14074
|
+
attr_accessor :instance_lifecycle_policy
|
14075
|
+
|
14068
14076
|
# The URL of the instance template that is specified for this managed instance
|
14069
14077
|
# group. The group uses this template to create all new instances in the managed
|
14070
14078
|
# instance group. The templates for existing instances in the group do not
|
@@ -14171,6 +14179,7 @@ module Google
|
|
14171
14179
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
14172
14180
|
@id = args[:id] if args.key?(:id)
|
14173
14181
|
@instance_group = args[:instance_group] if args.key?(:instance_group)
|
14182
|
+
@instance_lifecycle_policy = args[:instance_lifecycle_policy] if args.key?(:instance_lifecycle_policy)
|
14174
14183
|
@instance_template = args[:instance_template] if args.key?(:instance_template)
|
14175
14184
|
@kind = args[:kind] if args.key?(:kind)
|
14176
14185
|
@list_managed_instances_results = args[:list_managed_instances_results] if args.key?(:list_managed_instances_results)
|
@@ -14458,6 +14467,29 @@ module Google
|
|
14458
14467
|
end
|
14459
14468
|
end
|
14460
14469
|
|
14470
|
+
#
|
14471
|
+
class InstanceGroupManagerInstanceLifecyclePolicy
|
14472
|
+
include Google::Apis::Core::Hashable
|
14473
|
+
|
14474
|
+
# A bit indicating whether to forcefully apply the group's latest configuration
|
14475
|
+
# when repairing a VM. Valid options are: - NO (default): If configuration
|
14476
|
+
# updates are available, they are not forcefully applied during repair. Instead,
|
14477
|
+
# configuration updates are applied according to the group's update policy. -
|
14478
|
+
# YES: If configuration updates are available, they are applied during repair.
|
14479
|
+
# Corresponds to the JSON property `forceUpdateOnRepair`
|
14480
|
+
# @return [String]
|
14481
|
+
attr_accessor :force_update_on_repair
|
14482
|
+
|
14483
|
+
def initialize(**args)
|
14484
|
+
update!(**args)
|
14485
|
+
end
|
14486
|
+
|
14487
|
+
# Update properties of this object
|
14488
|
+
def update!(**args)
|
14489
|
+
@force_update_on_repair = args[:force_update_on_repair] if args.key?(:force_update_on_repair)
|
14490
|
+
end
|
14491
|
+
end
|
14492
|
+
|
14461
14493
|
# [Output Only] A list of managed instance groups.
|
14462
14494
|
class InstanceGroupManagerList
|
14463
14495
|
include Google::Apis::Core::Hashable
|
@@ -18118,8 +18150,9 @@ module Google
|
|
18118
18150
|
end
|
18119
18151
|
end
|
18120
18152
|
|
18121
|
-
# Diagnostics information about
|
18122
|
-
# technical information about Google's side of the
|
18153
|
+
# Diagnostics information about the Interconnect connection, which contains
|
18154
|
+
# detailed and current technical information about Google's side of the
|
18155
|
+
# connection.
|
18123
18156
|
class InterconnectDiagnostics
|
18124
18157
|
include Google::Apis::Core::Hashable
|
18125
18158
|
|
@@ -19156,8 +19189,9 @@ module Google
|
|
19156
19189
|
class InterconnectsGetDiagnosticsResponse
|
19157
19190
|
include Google::Apis::Core::Hashable
|
19158
19191
|
|
19159
|
-
# Diagnostics information about
|
19160
|
-
# technical information about Google's side of the
|
19192
|
+
# Diagnostics information about the Interconnect connection, which contains
|
19193
|
+
# detailed and current technical information about Google's side of the
|
19194
|
+
# connection.
|
19161
19195
|
# Corresponds to the JSON property `result`
|
19162
19196
|
# @return [Google::Apis::ComputeV1::InterconnectDiagnostics]
|
19163
19197
|
attr_accessor :result
|
@@ -26108,45 +26142,38 @@ module Google
|
|
26108
26142
|
# @return [Google::Apis::ComputeV1::Duration]
|
26109
26143
|
attr_accessor :base_ejection_time
|
26110
26144
|
|
26111
|
-
# Number of errors before a
|
26112
|
-
# backend
|
26113
|
-
#
|
26114
|
-
# map that is bound to target gRPC proxy that has validateForProxyless field set
|
26115
|
-
# to true.
|
26145
|
+
# Number of consecutive errors before a backend endpoint is ejected from the
|
26146
|
+
# load balancing pool. When the backend endpoint is accessed over HTTP, a 5xx
|
26147
|
+
# return code qualifies as an error. Defaults to 5.
|
26116
26148
|
# Corresponds to the JSON property `consecutiveErrors`
|
26117
26149
|
# @return [Fixnum]
|
26118
26150
|
attr_accessor :consecutive_errors
|
26119
26151
|
|
26120
26152
|
# The number of consecutive gateway failures (502, 503, 504 status or connection
|
26121
26153
|
# errors that are mapped to one of those status codes) before a consecutive
|
26122
|
-
# gateway failure ejection occurs. Defaults to 3.
|
26123
|
-
# service is referenced by a URL map that is bound to target gRPC proxy that has
|
26124
|
-
# validateForProxyless field set to true.
|
26154
|
+
# gateway failure ejection occurs. Defaults to 3.
|
26125
26155
|
# Corresponds to the JSON property `consecutiveGatewayFailure`
|
26126
26156
|
# @return [Fixnum]
|
26127
26157
|
attr_accessor :consecutive_gateway_failure
|
26128
26158
|
|
26129
|
-
# The percentage chance that a
|
26159
|
+
# The percentage chance that a backend endpoint will be ejected when an outlier
|
26130
26160
|
# status is detected through consecutive 5xx. This setting can be used to
|
26131
|
-
# disable ejection or to ramp it up slowly. Defaults to 0.
|
26132
|
-
# the backend service is referenced by a URL map that is bound to target gRPC
|
26133
|
-
# proxy that has validateForProxyless field set to true.
|
26161
|
+
# disable ejection or to ramp it up slowly. Defaults to 0.
|
26134
26162
|
# Corresponds to the JSON property `enforcingConsecutiveErrors`
|
26135
26163
|
# @return [Fixnum]
|
26136
26164
|
attr_accessor :enforcing_consecutive_errors
|
26137
26165
|
|
26138
|
-
# The percentage chance that a
|
26166
|
+
# The percentage chance that a backend endpoint will be ejected when an outlier
|
26139
26167
|
# status is detected through consecutive gateway failures. This setting can be
|
26140
|
-
# used to disable ejection or to ramp it up slowly. Defaults to 100.
|
26141
|
-
# supported when the backend service is referenced by a URL map that is bound to
|
26142
|
-
# target gRPC proxy that has validateForProxyless field set to true.
|
26168
|
+
# used to disable ejection or to ramp it up slowly. Defaults to 100.
|
26143
26169
|
# Corresponds to the JSON property `enforcingConsecutiveGatewayFailure`
|
26144
26170
|
# @return [Fixnum]
|
26145
26171
|
attr_accessor :enforcing_consecutive_gateway_failure
|
26146
26172
|
|
26147
|
-
# The percentage chance that a
|
26173
|
+
# The percentage chance that a backend endpoint will be ejected when an outlier
|
26148
26174
|
# status is detected through success rate statistics. This setting can be used
|
26149
|
-
# to disable ejection or to ramp it up slowly. Defaults to 100.
|
26175
|
+
# to disable ejection or to ramp it up slowly. Defaults to 100. Not supported
|
26176
|
+
# when the backend service uses Serverless NEG.
|
26150
26177
|
# Corresponds to the JSON property `enforcingSuccessRate`
|
26151
26178
|
# @return [Fixnum]
|
26152
26179
|
attr_accessor :enforcing_success_rate
|
@@ -26159,25 +26186,29 @@ module Google
|
|
26159
26186
|
# @return [Google::Apis::ComputeV1::Duration]
|
26160
26187
|
attr_accessor :interval
|
26161
26188
|
|
26162
|
-
# Maximum percentage of
|
26163
|
-
# that can be ejected
|
26189
|
+
# Maximum percentage of backend endpoints in the load balancing pool for the
|
26190
|
+
# backend service that can be ejected if the ejection conditions are met.
|
26191
|
+
# Defaults to 50%.
|
26164
26192
|
# Corresponds to the JSON property `maxEjectionPercent`
|
26165
26193
|
# @return [Fixnum]
|
26166
26194
|
attr_accessor :max_ejection_percent
|
26167
26195
|
|
26168
|
-
# The number of
|
26169
|
-
# detect success rate outliers. If the number of
|
26170
|
-
#
|
26171
|
-
#
|
26196
|
+
# The number of backend endpoints in the load balancing pool that must have
|
26197
|
+
# enough request volume to detect success rate outliers. If the number of
|
26198
|
+
# backend endpoints is fewer than this setting, outlier detection via success
|
26199
|
+
# rate statistics is not performed for any backend endpoint in the load
|
26200
|
+
# balancing pool. Defaults to 5. Not supported when the backend service uses
|
26201
|
+
# Serverless NEG.
|
26172
26202
|
# Corresponds to the JSON property `successRateMinimumHosts`
|
26173
26203
|
# @return [Fixnum]
|
26174
26204
|
attr_accessor :success_rate_minimum_hosts
|
26175
26205
|
|
26176
26206
|
# The minimum number of total requests that must be collected in one interval (
|
26177
|
-
# as defined by the interval duration above) to include this
|
26178
|
-
# rate based outlier detection. If the volume is lower than this setting,
|
26179
|
-
# outlier detection via success rate statistics is not performed for that
|
26180
|
-
# Defaults to 100.
|
26207
|
+
# as defined by the interval duration above) to include this backend endpoint in
|
26208
|
+
# success rate based outlier detection. If the volume is lower than this setting,
|
26209
|
+
# outlier detection via success rate statistics is not performed for that
|
26210
|
+
# backend endpoint. Defaults to 100. Not supported when the backend service uses
|
26211
|
+
# Serverless NEG.
|
26181
26212
|
# Corresponds to the JSON property `successRateRequestVolume`
|
26182
26213
|
# @return [Fixnum]
|
26183
26214
|
attr_accessor :success_rate_request_volume
|
@@ -26185,9 +26216,10 @@ module Google
|
|
26185
26216
|
# This factor is used to determine the ejection threshold for success rate
|
26186
26217
|
# outlier ejection. The ejection threshold is the difference between the mean
|
26187
26218
|
# success rate, and the product of this factor and the standard deviation of the
|
26188
|
-
# mean success rate: mean - (stdev *
|
26219
|
+
# mean success rate: mean - (stdev * successRateStdevFactor). This factor is
|
26189
26220
|
# divided by a thousand to get a double. That is, if the desired factor is 1.9,
|
26190
|
-
# the runtime value should be 1900. Defaults to 1900.
|
26221
|
+
# the runtime value should be 1900. Defaults to 1900. Not supported when the
|
26222
|
+
# backend service uses Serverless NEG.
|
26191
26223
|
# Corresponds to the JSON property `successRateStdevFactor`
|
26192
26224
|
# @return [Fixnum]
|
26193
26225
|
attr_accessor :success_rate_stdev_factor
|
@@ -27794,7 +27826,7 @@ module Google
|
|
27794
27826
|
# @return [Fixnum]
|
27795
27827
|
attr_accessor :id
|
27796
27828
|
|
27797
|
-
# The
|
27829
|
+
# The IP address range, in CIDR format, represented by this public delegated
|
27798
27830
|
# prefix.
|
27799
27831
|
# Corresponds to the JSON property `ipCidrRange`
|
27800
27832
|
# @return [String]
|
@@ -28137,8 +28169,8 @@ module Google
|
|
28137
28169
|
# @return [String]
|
28138
28170
|
attr_accessor :description
|
28139
28171
|
|
28140
|
-
# The
|
28141
|
-
#
|
28172
|
+
# The IP address range, in CIDR format, represented by this sub public delegated
|
28173
|
+
# prefix.
|
28142
28174
|
# Corresponds to the JSON property `ipCidrRange`
|
28143
28175
|
# @return [String]
|
28144
28176
|
attr_accessor :ip_cidr_range
|
@@ -31512,6 +31544,12 @@ module Google
|
|
31512
31544
|
# @return [String]
|
31513
31545
|
attr_accessor :next_hop_gateway
|
31514
31546
|
|
31547
|
+
# [Output Only] The full resource name of the Network Connectivity Center hub
|
31548
|
+
# that will handle matching packets.
|
31549
|
+
# Corresponds to the JSON property `nextHopHub`
|
31550
|
+
# @return [String]
|
31551
|
+
attr_accessor :next_hop_hub
|
31552
|
+
|
31515
31553
|
# The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should
|
31516
31554
|
# handle matching packets or the IP address of the forwarding Rule. For example,
|
31517
31555
|
# the following are all valid URLs: - 10.128.0.56 - https://www.googleapis.com/
|
@@ -31604,6 +31642,7 @@ module Google
|
|
31604
31642
|
@name = args[:name] if args.key?(:name)
|
31605
31643
|
@network = args[:network] if args.key?(:network)
|
31606
31644
|
@next_hop_gateway = args[:next_hop_gateway] if args.key?(:next_hop_gateway)
|
31645
|
+
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
31607
31646
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
31608
31647
|
@next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
|
31609
31648
|
@next_hop_ip = args[:next_hop_ip] if args.key?(:next_hop_ip)
|
@@ -32633,6 +32672,12 @@ module Google
|
|
32633
32672
|
class RouterNat
|
32634
32673
|
include Google::Apis::Core::Hashable
|
32635
32674
|
|
32675
|
+
# The network tier to use when automatically reserving IP addresses. Must be one
|
32676
|
+
# of: PREMIUM, STANDARD. If not specified, PREMIUM tier will be used.
|
32677
|
+
# Corresponds to the JSON property `autoNetworkTier`
|
32678
|
+
# @return [String]
|
32679
|
+
attr_accessor :auto_network_tier
|
32680
|
+
|
32636
32681
|
# A list of URLs of the IP resources to be drained. These IPs must be valid
|
32637
32682
|
# static external IPs that have been assigned to the NAT. These IPs should be
|
32638
32683
|
# used for updating/patching a NAT only.
|
@@ -32766,6 +32811,7 @@ module Google
|
|
32766
32811
|
|
32767
32812
|
# Update properties of this object
|
32768
32813
|
def update!(**args)
|
32814
|
+
@auto_network_tier = args[:auto_network_tier] if args.key?(:auto_network_tier)
|
32769
32815
|
@drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips)
|
32770
32816
|
@enable_dynamic_port_allocation = args[:enable_dynamic_port_allocation] if args.key?(:enable_dynamic_port_allocation)
|
32771
32817
|
@enable_endpoint_independent_mapping = args[:enable_endpoint_independent_mapping] if args.key?(:enable_endpoint_independent_mapping)
|
@@ -38724,6 +38770,16 @@ module Google
|
|
38724
38770
|
# @return [String]
|
38725
38771
|
attr_accessor :fingerprint
|
38726
38772
|
|
38773
|
+
# Specifies how long to keep a connection open, after completing a response,
|
38774
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
38775
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
38776
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
38777
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
38778
|
+
# classic), this option is not available publicly.
|
38779
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
38780
|
+
# @return [Fixnum]
|
38781
|
+
attr_accessor :http_keep_alive_timeout_sec
|
38782
|
+
|
38727
38783
|
# [Output Only] The unique identifier for the resource. This identifier is
|
38728
38784
|
# defined by the server.
|
38729
38785
|
# Corresponds to the JSON property `id`
|
@@ -38785,6 +38841,7 @@ module Google
|
|
38785
38841
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
38786
38842
|
@description = args[:description] if args.key?(:description)
|
38787
38843
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
38844
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
38788
38845
|
@id = args[:id] if args.key?(:id)
|
38789
38846
|
@kind = args[:kind] if args.key?(:kind)
|
38790
38847
|
@name = args[:name] if args.key?(:name)
|
@@ -39173,6 +39230,16 @@ module Google
|
|
39173
39230
|
# @return [String]
|
39174
39231
|
attr_accessor :fingerprint
|
39175
39232
|
|
39233
|
+
# Specifies how long to keep a connection open, after completing a response,
|
39234
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
39235
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
39236
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
39237
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
39238
|
+
# classic), this option is not available publicly.
|
39239
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
39240
|
+
# @return [Fixnum]
|
39241
|
+
attr_accessor :http_keep_alive_timeout_sec
|
39242
|
+
|
39176
39243
|
# [Output Only] The unique identifier for the resource. This identifier is
|
39177
39244
|
# defined by the server.
|
39178
39245
|
# Corresponds to the JSON property `id`
|
@@ -39278,6 +39345,7 @@ module Google
|
|
39278
39345
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
39279
39346
|
@description = args[:description] if args.key?(:description)
|
39280
39347
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
39348
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
39281
39349
|
@id = args[:id] if args.key?(:id)
|
39282
39350
|
@kind = args[:kind] if args.key?(:kind)
|
39283
39351
|
@name = args[:name] if args.key?(:name)
|
@@ -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.73.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230701"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1648,6 +1648,12 @@ module Google
|
|
1648
1648
|
include Google::Apis::Core::JsonObjectSupport
|
1649
1649
|
end
|
1650
1650
|
|
1651
|
+
class InstanceGroupManagerInstanceLifecyclePolicy
|
1652
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1653
|
+
|
1654
|
+
include Google::Apis::Core::JsonObjectSupport
|
1655
|
+
end
|
1656
|
+
|
1651
1657
|
class InstanceGroupManagerList
|
1652
1658
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1653
1659
|
|
@@ -9104,6 +9110,8 @@ module Google
|
|
9104
9110
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
9105
9111
|
property :id, :numeric_string => true, as: 'id'
|
9106
9112
|
property :instance_group, as: 'instanceGroup'
|
9113
|
+
property :instance_lifecycle_policy, as: 'instanceLifecyclePolicy', class: Google::Apis::ComputeV1::InstanceGroupManagerInstanceLifecyclePolicy, decorator: Google::Apis::ComputeV1::InstanceGroupManagerInstanceLifecyclePolicy::Representation
|
9114
|
+
|
9107
9115
|
property :instance_template, as: 'instanceTemplate'
|
9108
9116
|
property :kind, as: 'kind'
|
9109
9117
|
property :list_managed_instances_results, as: 'listManagedInstancesResults'
|
@@ -9186,6 +9194,13 @@ module Google
|
|
9186
9194
|
end
|
9187
9195
|
end
|
9188
9196
|
|
9197
|
+
class InstanceGroupManagerInstanceLifecyclePolicy
|
9198
|
+
# @private
|
9199
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9200
|
+
property :force_update_on_repair, as: 'forceUpdateOnRepair'
|
9201
|
+
end
|
9202
|
+
end
|
9203
|
+
|
9189
9204
|
class InstanceGroupManagerList
|
9190
9205
|
# @private
|
9191
9206
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13613,6 +13628,7 @@ module Google
|
|
13613
13628
|
property :name, as: 'name'
|
13614
13629
|
property :network, as: 'network'
|
13615
13630
|
property :next_hop_gateway, as: 'nextHopGateway'
|
13631
|
+
property :next_hop_hub, as: 'nextHopHub'
|
13616
13632
|
property :next_hop_ilb, as: 'nextHopIlb'
|
13617
13633
|
property :next_hop_instance, as: 'nextHopInstance'
|
13618
13634
|
property :next_hop_ip, as: 'nextHopIp'
|
@@ -13867,6 +13883,7 @@ module Google
|
|
13867
13883
|
class RouterNat
|
13868
13884
|
# @private
|
13869
13885
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13886
|
+
property :auto_network_tier, as: 'autoNetworkTier'
|
13870
13887
|
collection :drain_nat_ips, as: 'drainNatIps'
|
13871
13888
|
property :enable_dynamic_port_allocation, as: 'enableDynamicPortAllocation'
|
13872
13889
|
property :enable_endpoint_independent_mapping, as: 'enableEndpointIndependentMapping'
|
@@ -15376,6 +15393,7 @@ module Google
|
|
15376
15393
|
property :creation_timestamp, as: 'creationTimestamp'
|
15377
15394
|
property :description, as: 'description'
|
15378
15395
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
15396
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
15379
15397
|
property :id, :numeric_string => true, as: 'id'
|
15380
15398
|
property :kind, as: 'kind'
|
15381
15399
|
property :name, as: 'name'
|
@@ -15488,6 +15506,7 @@ module Google
|
|
15488
15506
|
property :creation_timestamp, as: 'creationTimestamp'
|
15489
15507
|
property :description, as: 'description'
|
15490
15508
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
15509
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
15491
15510
|
property :id, :numeric_string => true, as: 'id'
|
15492
15511
|
property :kind, as: 'kind'
|
15493
15512
|
property :name, as: 'name'
|
@@ -21070,7 +21070,8 @@ module Google
|
|
21070
21070
|
# behavior. For more information, see the [known issue](/compute/docs/
|
21071
21071
|
# troubleshooting/known-issues#
|
21072
21072
|
# ving_vms_or_disks_using_the_moveinstance_api_or_the_causes_unexpected_behavior)
|
21073
|
-
# .
|
21073
|
+
# . [Deprecated] This method is deprecated. See [moving instance across zones](/
|
21074
|
+
# compute/docs/instances/moving-instance-across-zones) instead.
|
21074
21075
|
# @param [String] project
|
21075
21076
|
# Project ID for this request.
|
21076
21077
|
# @param [Google::Apis::ComputeV1::MoveInstanceRequest] move_instance_request_object
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.73.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: 2023-07-
|
11
|
+
date: 2023-07-09 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.73.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|