google-apis-compute_v1 0.71.0 → 0.73.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11c2160708cc9fd5638860dff7b003ee7933890b73212ef045f18153a9df41b8
4
- data.tar.gz: 44353c4ab42f618b14063fed9d22a5f9119ed7bb8ba88e1628b89a91d6c1e2ac
3
+ metadata.gz: 8882905543da32b718b6df50295186cec25036dc55818987eb580543e8ebdbbf
4
+ data.tar.gz: 940a9c4cf51f44557778d61bb14b80ca68fd68a12a6d07aa8089404036b2a15b
5
5
  SHA512:
6
- metadata.gz: 8d8816b079fd98a5e4936baafeea7f31aaaa582696106e5963569a5bdaedca2f7d51cb1800a2fe05ea67e4d3f848321106a6792c9e973ba2996f5d704e985b35
7
- data.tar.gz: cf9d56eee6cd2c5db479ccdf1b8f43f3923039d0eb0bed8b228eb968d8e0ac26bd4cce1c80c3c2fca00fd7c5acbc82818218e3ac229282b8f78973c057f6ecf6
6
+ metadata.gz: bf37e5202519234f090dc2471fad7731771640f1ec88e95b30912f0a7037c25cdaae5a4b699885b1c0fe6dfe64111c47ab7a9f0c6fd7479f44eb9ca5c1159b4c
7
+ data.tar.gz: '0181c99ce54685e1be439679b41ae78311bde727b3a254e9816d18a3af33636e3f5cc3aaa74e3a586453b297eee1bcfa95a12eeed27526e2e9e94835571291e3'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.73.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230701
6
+
7
+ ### v0.72.0 (2023-07-02)
8
+
9
+ * Regenerated from discovery document revision 20230620
10
+
3
11
  ### v0.71.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230606
@@ -592,7 +592,7 @@ module Google
592
592
  attr_accessor :id
593
593
 
594
594
  # The IP version that will be used by this address. Valid options are IPV4 or
595
- # IPV6. This can only be specified for a global address.
595
+ # IPV6.
596
596
  # Corresponds to the JSON property `ipVersion`
597
597
  # @return [String]
598
598
  attr_accessor :ip_version
@@ -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 the field
9099
- # is set to TRUE, clients can access ILB from all regions. Otherwise only allows
9100
- # access from clients in the same region as the internal load balancer.
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
@@ -14734,12 +14766,12 @@ module Google
14734
14766
  attr_accessor :minimal_action
14735
14767
 
14736
14768
  # Most disruptive action that is allowed to be taken on an instance. You can
14737
- # specify either NONE to forbid any actions, REFRESH to allow actions that do
14738
- # not need instance restart, RESTART to allow actions that can be applied
14739
- # without instance replacing or REPLACE to allow all possible actions. If the
14740
- # Updater determines that the minimal update action needed is more disruptive
14741
- # than most disruptive allowed action you specify it will not perform the update
14742
- # at all.
14769
+ # specify either NONE to forbid any actions, REFRESH to avoid restarting the VM
14770
+ # and to limit disruption as much as possible. RESTART to allow actions that can
14771
+ # be applied without instance replacing or REPLACE to allow all possible actions.
14772
+ # If the Updater determines that the minimal update action needed is more
14773
+ # disruptive than most disruptive allowed action you specify it will not perform
14774
+ # the update at all.
14743
14775
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
14744
14776
  # @return [String]
14745
14777
  attr_accessor :most_disruptive_allowed_action
@@ -14852,20 +14884,22 @@ module Google
14852
14884
 
14853
14885
  # The minimal action that you want to perform on each instance during the update:
14854
14886
  # - REPLACE: At minimum, delete the instance and create it again. - RESTART:
14855
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
14856
- # NONE: Do not disrupt the instance at all. By default, the minimum action is
14857
- # NONE. If your update requires a more disruptive action than you set with this
14858
- # flag, the necessary action is performed to execute the update.
14887
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
14888
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
14889
+ # all. By default, the minimum action is NONE. If your update requires a more
14890
+ # disruptive action than you set with this flag, the necessary action is
14891
+ # performed to execute the update.
14859
14892
  # Corresponds to the JSON property `minimalAction`
14860
14893
  # @return [String]
14861
14894
  attr_accessor :minimal_action
14862
14895
 
14863
14896
  # The most disruptive action that you want to perform on each instance during
14864
14897
  # the update: - REPLACE: Delete the instance and create it again. - RESTART:
14865
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
14866
- # NONE: Do not disrupt the instance at all. By default, the most disruptive
14867
- # allowed action is REPLACE. If your update requires a more disruptive action
14868
- # than you set with this flag, the update request will fail.
14898
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
14899
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
14900
+ # all. By default, the most disruptive allowed action is REPLACE. If your update
14901
+ # requires a more disruptive action than you set with this flag, the update
14902
+ # request will fail.
14869
14903
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
14870
14904
  # @return [String]
14871
14905
  attr_accessor :most_disruptive_allowed_action
@@ -18116,8 +18150,9 @@ module Google
18116
18150
  end
18117
18151
  end
18118
18152
 
18119
- # Diagnostics information about interconnect, contains detailed and current
18120
- # technical information about Google's side of the connection.
18153
+ # Diagnostics information about the Interconnect connection, which contains
18154
+ # detailed and current technical information about Google's side of the
18155
+ # connection.
18121
18156
  class InterconnectDiagnostics
18122
18157
  include Google::Apis::Core::Hashable
18123
18158
 
@@ -19154,8 +19189,9 @@ module Google
19154
19189
  class InterconnectsGetDiagnosticsResponse
19155
19190
  include Google::Apis::Core::Hashable
19156
19191
 
19157
- # Diagnostics information about interconnect, contains detailed and current
19158
- # technical information about Google's side of the connection.
19192
+ # Diagnostics information about the Interconnect connection, which contains
19193
+ # detailed and current technical information about Google's side of the
19194
+ # connection.
19159
19195
  # Corresponds to the JSON property `result`
19160
19196
  # @return [Google::Apis::ComputeV1::InterconnectDiagnostics]
19161
19197
  attr_accessor :result
@@ -26106,45 +26142,38 @@ module Google
26106
26142
  # @return [Google::Apis::ComputeV1::Duration]
26107
26143
  attr_accessor :base_ejection_time
26108
26144
 
26109
- # Number of errors before a host is ejected from the connection pool. When the
26110
- # backend host is accessed over HTTP, a 5xx return code qualifies as an error.
26111
- # Defaults to 5. Not supported when the backend service is referenced by a URL
26112
- # map that is bound to target gRPC proxy that has validateForProxyless field set
26113
- # 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.
26114
26148
  # Corresponds to the JSON property `consecutiveErrors`
26115
26149
  # @return [Fixnum]
26116
26150
  attr_accessor :consecutive_errors
26117
26151
 
26118
26152
  # The number of consecutive gateway failures (502, 503, 504 status or connection
26119
26153
  # errors that are mapped to one of those status codes) before a consecutive
26120
- # gateway failure ejection occurs. Defaults to 3. Not supported when the backend
26121
- # service is referenced by a URL map that is bound to target gRPC proxy that has
26122
- # validateForProxyless field set to true.
26154
+ # gateway failure ejection occurs. Defaults to 3.
26123
26155
  # Corresponds to the JSON property `consecutiveGatewayFailure`
26124
26156
  # @return [Fixnum]
26125
26157
  attr_accessor :consecutive_gateway_failure
26126
26158
 
26127
- # The percentage chance that a host will be actually ejected when an outlier
26159
+ # The percentage chance that a backend endpoint will be ejected when an outlier
26128
26160
  # status is detected through consecutive 5xx. This setting can be used to
26129
- # disable ejection or to ramp it up slowly. Defaults to 0. Not supported when
26130
- # the backend service is referenced by a URL map that is bound to target gRPC
26131
- # proxy that has validateForProxyless field set to true.
26161
+ # disable ejection or to ramp it up slowly. Defaults to 0.
26132
26162
  # Corresponds to the JSON property `enforcingConsecutiveErrors`
26133
26163
  # @return [Fixnum]
26134
26164
  attr_accessor :enforcing_consecutive_errors
26135
26165
 
26136
- # The percentage chance that a host will be actually ejected when an outlier
26166
+ # The percentage chance that a backend endpoint will be ejected when an outlier
26137
26167
  # status is detected through consecutive gateway failures. This setting can be
26138
- # used to disable ejection or to ramp it up slowly. Defaults to 100. Not
26139
- # supported when the backend service is referenced by a URL map that is bound to
26140
- # target gRPC proxy that has validateForProxyless field set to true.
26168
+ # used to disable ejection or to ramp it up slowly. Defaults to 100.
26141
26169
  # Corresponds to the JSON property `enforcingConsecutiveGatewayFailure`
26142
26170
  # @return [Fixnum]
26143
26171
  attr_accessor :enforcing_consecutive_gateway_failure
26144
26172
 
26145
- # The percentage chance that a host will be actually ejected when an outlier
26173
+ # The percentage chance that a backend endpoint will be ejected when an outlier
26146
26174
  # status is detected through success rate statistics. This setting can be used
26147
- # 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.
26148
26177
  # Corresponds to the JSON property `enforcingSuccessRate`
26149
26178
  # @return [Fixnum]
26150
26179
  attr_accessor :enforcing_success_rate
@@ -26157,25 +26186,29 @@ module Google
26157
26186
  # @return [Google::Apis::ComputeV1::Duration]
26158
26187
  attr_accessor :interval
26159
26188
 
26160
- # Maximum percentage of hosts in the load balancing pool for the backend service
26161
- # that can be ejected. Defaults to 50%.
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%.
26162
26192
  # Corresponds to the JSON property `maxEjectionPercent`
26163
26193
  # @return [Fixnum]
26164
26194
  attr_accessor :max_ejection_percent
26165
26195
 
26166
- # The number of hosts in a cluster that must have enough request volume to
26167
- # detect success rate outliers. If the number of hosts is less than this setting,
26168
- # outlier detection via success rate statistics is not performed for any host
26169
- # in the cluster. Defaults to 5.
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.
26170
26202
  # Corresponds to the JSON property `successRateMinimumHosts`
26171
26203
  # @return [Fixnum]
26172
26204
  attr_accessor :success_rate_minimum_hosts
26173
26205
 
26174
26206
  # The minimum number of total requests that must be collected in one interval (
26175
- # as defined by the interval duration above) to include this host in success
26176
- # rate based outlier detection. If the volume is lower than this setting,
26177
- # outlier detection via success rate statistics is not performed for that host.
26178
- # 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.
26179
26212
  # Corresponds to the JSON property `successRateRequestVolume`
26180
26213
  # @return [Fixnum]
26181
26214
  attr_accessor :success_rate_request_volume
@@ -26183,9 +26216,10 @@ module Google
26183
26216
  # This factor is used to determine the ejection threshold for success rate
26184
26217
  # outlier ejection. The ejection threshold is the difference between the mean
26185
26218
  # success rate, and the product of this factor and the standard deviation of the
26186
- # mean success rate: mean - (stdev * success_rate_stdev_factor). This factor is
26219
+ # mean success rate: mean - (stdev * successRateStdevFactor). This factor is
26187
26220
  # divided by a thousand to get a double. That is, if the desired factor is 1.9,
26188
- # 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.
26189
26223
  # Corresponds to the JSON property `successRateStdevFactor`
26190
26224
  # @return [Fixnum]
26191
26225
  attr_accessor :success_rate_stdev_factor
@@ -27500,7 +27534,7 @@ module Google
27500
27534
  # @return [String]
27501
27535
  attr_accessor :description
27502
27536
 
27503
- # The IPv4 address to be used for reverse DNS verification.
27537
+ # The address to be used for reverse DNS verification.
27504
27538
  # Corresponds to the JSON property `dnsVerificationIp`
27505
27539
  # @return [String]
27506
27540
  attr_accessor :dns_verification_ip
@@ -27522,7 +27556,7 @@ module Google
27522
27556
  # @return [Fixnum]
27523
27557
  attr_accessor :id
27524
27558
 
27525
- # The IPv4 address range, in CIDR format, represented by this public advertised
27559
+ # The address range, in CIDR format, represented by this public advertised
27526
27560
  # prefix.
27527
27561
  # Corresponds to the JSON property `ipCidrRange`
27528
27562
  # @return [String]
@@ -27792,7 +27826,7 @@ module Google
27792
27826
  # @return [Fixnum]
27793
27827
  attr_accessor :id
27794
27828
 
27795
- # The IPv4 address range, in CIDR format, represented by this public delegated
27829
+ # The IP address range, in CIDR format, represented by this public delegated
27796
27830
  # prefix.
27797
27831
  # Corresponds to the JSON property `ipCidrRange`
27798
27832
  # @return [String]
@@ -28135,8 +28169,8 @@ module Google
28135
28169
  # @return [String]
28136
28170
  attr_accessor :description
28137
28171
 
28138
- # The IPv4 address range, in CIDR format, represented by this sub public
28139
- # delegated prefix.
28172
+ # The IP address range, in CIDR format, represented by this sub public delegated
28173
+ # prefix.
28140
28174
  # Corresponds to the JSON property `ipCidrRange`
28141
28175
  # @return [String]
28142
28176
  attr_accessor :ip_cidr_range
@@ -29151,20 +29185,22 @@ module Google
29151
29185
 
29152
29186
  # The minimal action that you want to perform on each instance during the update:
29153
29187
  # - REPLACE: At minimum, delete the instance and create it again. - RESTART:
29154
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
29155
- # NONE: Do not disrupt the instance at all. By default, the minimum action is
29156
- # NONE. If your update requires a more disruptive action than you set with this
29157
- # flag, the necessary action is performed to execute the update.
29188
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
29189
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
29190
+ # all. By default, the minimum action is NONE. If your update requires a more
29191
+ # disruptive action than you set with this flag, the necessary action is
29192
+ # performed to execute the update.
29158
29193
  # Corresponds to the JSON property `minimalAction`
29159
29194
  # @return [String]
29160
29195
  attr_accessor :minimal_action
29161
29196
 
29162
29197
  # The most disruptive action that you want to perform on each instance during
29163
29198
  # the update: - REPLACE: Delete the instance and create it again. - RESTART:
29164
- # Stop the instance and start it again. - REFRESH: Do not stop the instance. -
29165
- # NONE: Do not disrupt the instance at all. By default, the most disruptive
29166
- # allowed action is REPLACE. If your update requires a more disruptive action
29167
- # than you set with this flag, the update request will fail.
29199
+ # Stop the instance and start it again. - REFRESH: Do not stop the instance and
29200
+ # limit disruption as much as possible. - NONE: Do not disrupt the instance at
29201
+ # all. By default, the most disruptive allowed action is REPLACE. If your update
29202
+ # requires a more disruptive action than you set with this flag, the update
29203
+ # request will fail.
29168
29204
  # Corresponds to the JSON property `mostDisruptiveAllowedAction`
29169
29205
  # @return [String]
29170
29206
  attr_accessor :most_disruptive_allowed_action
@@ -31508,6 +31544,12 @@ module Google
31508
31544
  # @return [String]
31509
31545
  attr_accessor :next_hop_gateway
31510
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
+
31511
31553
  # The URL to a forwarding rule of type loadBalancingScheme=INTERNAL that should
31512
31554
  # handle matching packets or the IP address of the forwarding Rule. For example,
31513
31555
  # the following are all valid URLs: - 10.128.0.56 - https://www.googleapis.com/
@@ -31600,6 +31642,7 @@ module Google
31600
31642
  @name = args[:name] if args.key?(:name)
31601
31643
  @network = args[:network] if args.key?(:network)
31602
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)
31603
31646
  @next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
31604
31647
  @next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
31605
31648
  @next_hop_ip = args[:next_hop_ip] if args.key?(:next_hop_ip)
@@ -32629,6 +32672,12 @@ module Google
32629
32672
  class RouterNat
32630
32673
  include Google::Apis::Core::Hashable
32631
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
+
32632
32681
  # A list of URLs of the IP resources to be drained. These IPs must be valid
32633
32682
  # static external IPs that have been assigned to the NAT. These IPs should be
32634
32683
  # used for updating/patching a NAT only.
@@ -32762,6 +32811,7 @@ module Google
32762
32811
 
32763
32812
  # Update properties of this object
32764
32813
  def update!(**args)
32814
+ @auto_network_tier = args[:auto_network_tier] if args.key?(:auto_network_tier)
32765
32815
  @drain_nat_ips = args[:drain_nat_ips] if args.key?(:drain_nat_ips)
32766
32816
  @enable_dynamic_port_allocation = args[:enable_dynamic_port_allocation] if args.key?(:enable_dynamic_port_allocation)
32767
32817
  @enable_endpoint_independent_mapping = args[:enable_endpoint_independent_mapping] if args.key?(:enable_endpoint_independent_mapping)
@@ -38720,6 +38770,16 @@ module Google
38720
38770
  # @return [String]
38721
38771
  attr_accessor :fingerprint
38722
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
+
38723
38783
  # [Output Only] The unique identifier for the resource. This identifier is
38724
38784
  # defined by the server.
38725
38785
  # Corresponds to the JSON property `id`
@@ -38781,6 +38841,7 @@ module Google
38781
38841
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
38782
38842
  @description = args[:description] if args.key?(:description)
38783
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)
38784
38845
  @id = args[:id] if args.key?(:id)
38785
38846
  @kind = args[:kind] if args.key?(:kind)
38786
38847
  @name = args[:name] if args.key?(:name)
@@ -39169,6 +39230,16 @@ module Google
39169
39230
  # @return [String]
39170
39231
  attr_accessor :fingerprint
39171
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
+
39172
39243
  # [Output Only] The unique identifier for the resource. This identifier is
39173
39244
  # defined by the server.
39174
39245
  # Corresponds to the JSON property `id`
@@ -39274,6 +39345,7 @@ module Google
39274
39345
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
39275
39346
  @description = args[:description] if args.key?(:description)
39276
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)
39277
39349
  @id = args[:id] if args.key?(:id)
39278
39350
  @kind = args[:kind] if args.key?(:kind)
39279
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.71.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 = "20230606"
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.71.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-06-18 00:00:00.000000000 Z
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.71.0
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: []