google-apis-compute_beta 0.68.0 → 0.69.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: 37f4fe75ef69906ceae35c192b2a34a4411f14a7c19133bc1c3424e8cf6e75c0
|
4
|
+
data.tar.gz: 83bfaaed914a3c639951274baf53d98ba8663ad5291153e0e7631749d6dc541f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dfb848631d669f21181551c6dd749896fcea148c62aa35e1a8a0a1218ed240c2ebe8987b9af7b3b56496a7470bc15ca15d433c1d554698a47ac8edce410f3d0
|
7
|
+
data.tar.gz: a994d48a3a0f60577131df5f16db15cece4faba98036609d65bce671c7301cde40e7d3d49aa2efd4efec4609729fbb6f7ffa2e8d4b8ef3626e6c27a55ced38c4
|
data/CHANGELOG.md
CHANGED
@@ -1502,6 +1502,14 @@ module Google
|
|
1502
1502
|
# @return [String]
|
1503
1503
|
attr_accessor :mode
|
1504
1504
|
|
1505
|
+
# For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this field
|
1506
|
+
# is set to PRESERVED if the LocalSSD data has been saved to a persistent
|
1507
|
+
# location by customer request. (see the discard_local_ssd option on Stop/
|
1508
|
+
# Suspend). Read-only in the api.
|
1509
|
+
# Corresponds to the JSON property `savedState`
|
1510
|
+
# @return [String]
|
1511
|
+
attr_accessor :saved_state
|
1512
|
+
|
1505
1513
|
# Initial State for shielded instance, these are public keys which are safe to
|
1506
1514
|
# store in public
|
1507
1515
|
# Corresponds to the JSON property `shieldedInstanceInitialState`
|
@@ -1553,6 +1561,7 @@ module Google
|
|
1553
1561
|
@licenses = args[:licenses] if args.key?(:licenses)
|
1554
1562
|
@locked = args[:locked] if args.key?(:locked)
|
1555
1563
|
@mode = args[:mode] if args.key?(:mode)
|
1564
|
+
@saved_state = args[:saved_state] if args.key?(:saved_state)
|
1556
1565
|
@shielded_instance_initial_state = args[:shielded_instance_initial_state] if args.key?(:shielded_instance_initial_state)
|
1557
1566
|
@source = args[:source] if args.key?(:source)
|
1558
1567
|
@type = args[:type] if args.key?(:type)
|
@@ -2371,13 +2380,16 @@ module Google
|
|
2371
2380
|
class AutoscalingPolicy
|
2372
2381
|
include Google::Apis::Core::Hashable
|
2373
2382
|
|
2374
|
-
# The number of seconds that
|
2375
|
-
#
|
2376
|
-
#
|
2377
|
-
#
|
2378
|
-
#
|
2379
|
-
#
|
2380
|
-
#
|
2383
|
+
# The number of seconds that your application takes to initialize on a VM
|
2384
|
+
# instance. This is referred to as the [initialization period](/compute/docs/
|
2385
|
+
# autoscaler#cool_down_period). Specifying an accurate initialization period
|
2386
|
+
# improves autoscaler decisions. For example, when scaling out, the autoscaler
|
2387
|
+
# ignores data from VMs that are still initializing because those VMs might not
|
2388
|
+
# yet represent normal usage of your application. The default initialization
|
2389
|
+
# period is 60 seconds. Initialization periods might vary because of numerous
|
2390
|
+
# factors. We recommend that you test how long your application takes to
|
2391
|
+
# initialize. To do this, create a VM and time your application's startup
|
2392
|
+
# process.
|
2381
2393
|
# Corresponds to the JSON property `coolDownPeriodSec`
|
2382
2394
|
# @return [Fixnum]
|
2383
2395
|
attr_accessor :cool_down_period_sec
|
@@ -2411,7 +2423,11 @@ module Google
|
|
2411
2423
|
# @return [Fixnum]
|
2412
2424
|
attr_accessor :min_num_replicas
|
2413
2425
|
|
2414
|
-
# Defines operating mode for this policy.
|
2426
|
+
# Defines the operating mode for this policy. The following modes are available:
|
2427
|
+
# - OFF: Disables the autoscaler but maintains its configuration. -
|
2428
|
+
# ONLY_SCALE_OUT: Restricts the autoscaler to add VM instances only. - ON:
|
2429
|
+
# Enables all autoscaler activities according to its policy. For more
|
2430
|
+
# information, see "Turning off or restricting an autoscaler"
|
2415
2431
|
# Corresponds to the JSON property `mode`
|
2416
2432
|
# @return [String]
|
2417
2433
|
attr_accessor :mode
|
@@ -10568,8 +10584,8 @@ module Google
|
|
10568
10584
|
# The ID of a supported feature. To add multiple values, use commas to separate
|
10569
10585
|
# values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
|
10570
10586
|
# WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
|
10571
|
-
# SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE
|
10572
|
-
#
|
10587
|
+
# SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more
|
10588
|
+
# information, see Enabling guest operating system features.
|
10573
10589
|
# Corresponds to the JSON property `type`
|
10574
10590
|
# @return [String]
|
10575
10591
|
attr_accessor :type
|
@@ -22793,8 +22809,8 @@ module Google
|
|
22793
22809
|
class NetworkAttachmentConnectedEndpoint
|
22794
22810
|
include Google::Apis::Core::Hashable
|
22795
22811
|
|
22796
|
-
# The
|
22797
|
-
# will be a range in case of Serverless.
|
22812
|
+
# The IPv4 address assigned to the producer instance network interface. This
|
22813
|
+
# value will be a range in case of Serverless.
|
22798
22814
|
# Corresponds to the JSON property `ipAddress`
|
22799
22815
|
# @return [String]
|
22800
22816
|
attr_accessor :ip_address
|
@@ -41343,6 +41359,16 @@ module Google
|
|
41343
41359
|
# @return [Array<String>]
|
41344
41360
|
attr_accessor :http_filters
|
41345
41361
|
|
41362
|
+
# Specifies how long to keep a connection open, after completing a response,
|
41363
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
41364
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
41365
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
41366
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
41367
|
+
# classic), this option is not available publicly.
|
41368
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
41369
|
+
# @return [Fixnum]
|
41370
|
+
attr_accessor :http_keep_alive_timeout_sec
|
41371
|
+
|
41346
41372
|
# [Output Only] The unique identifier for the resource. This identifier is
|
41347
41373
|
# defined by the server.
|
41348
41374
|
# Corresponds to the JSON property `id`
|
@@ -41405,6 +41431,7 @@ module Google
|
|
41405
41431
|
@description = args[:description] if args.key?(:description)
|
41406
41432
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
41407
41433
|
@http_filters = args[:http_filters] if args.key?(:http_filters)
|
41434
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
41408
41435
|
@id = args[:id] if args.key?(:id)
|
41409
41436
|
@kind = args[:kind] if args.key?(:kind)
|
41410
41437
|
@name = args[:name] if args.key?(:name)
|
@@ -41888,6 +41915,16 @@ module Google
|
|
41888
41915
|
# @return [Array<String>]
|
41889
41916
|
attr_accessor :http_filters
|
41890
41917
|
|
41918
|
+
# Specifies how long to keep a connection open, after completing a response,
|
41919
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
41920
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
41921
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
41922
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
41923
|
+
# classic), this option is not available publicly.
|
41924
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
41925
|
+
# @return [Fixnum]
|
41926
|
+
attr_accessor :http_keep_alive_timeout_sec
|
41927
|
+
|
41891
41928
|
# [Output Only] The unique identifier for the resource. This identifier is
|
41892
41929
|
# defined by the server.
|
41893
41930
|
# Corresponds to the JSON property `id`
|
@@ -41996,6 +42033,7 @@ module Google
|
|
41996
42033
|
@description = args[:description] if args.key?(:description)
|
41997
42034
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
41998
42035
|
@http_filters = args[:http_filters] if args.key?(:http_filters)
|
42036
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
41999
42037
|
@id = args[:id] if args.key?(:id)
|
42000
42038
|
@kind = args[:kind] if args.key?(:kind)
|
42001
42039
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.69.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 = "20230516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6619,6 +6619,7 @@ module Google
|
|
6619
6619
|
collection :licenses, as: 'licenses'
|
6620
6620
|
property :locked, as: 'locked'
|
6621
6621
|
property :mode, as: 'mode'
|
6622
|
+
property :saved_state, as: 'savedState'
|
6622
6623
|
property :shielded_instance_initial_state, as: 'shieldedInstanceInitialState', class: Google::Apis::ComputeBeta::InitialStateConfig, decorator: Google::Apis::ComputeBeta::InitialStateConfig::Representation
|
6623
6624
|
|
6624
6625
|
property :source, as: 'source'
|
@@ -16347,6 +16348,7 @@ module Google
|
|
16347
16348
|
property :description, as: 'description'
|
16348
16349
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
16349
16350
|
collection :http_filters, as: 'httpFilters'
|
16351
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
16350
16352
|
property :id, :numeric_string => true, as: 'id'
|
16351
16353
|
property :kind, as: 'kind'
|
16352
16354
|
property :name, as: 'name'
|
@@ -16482,6 +16484,7 @@ module Google
|
|
16482
16484
|
property :description, as: 'description'
|
16483
16485
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
16484
16486
|
collection :http_filters, as: 'httpFilters'
|
16487
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
16485
16488
|
property :id, :numeric_string => true, as: 'id'
|
16486
16489
|
property :kind, as: 'kind'
|
16487
16490
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.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-05-
|
11
|
+
date: 2023-05-28 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_beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.69.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|