google-apis-compute_beta 0.68.0 → 0.70.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: a0c3b32dbc50af415e1623dd4fafc64ae9b0d41b74136589090bb043f3334ef2
|
4
|
+
data.tar.gz: c0d5fcd602827cb3ca8e1d4d3e6cc4bc4a2de52519652262f8cd1ec4727e8d17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 662b928f049e6805781801ed9e2c0d82f17d0b523377565db353271c2d7e628ba51489287bcf2197110b55aba85797a3895a4d14defb31d01e191422c2e8bf03
|
7
|
+
data.tar.gz: 5b49a1c74e801a12d76ff20156f7a9169f1725d74a9c7950000729d75fb3e9d9c7ff2d6e4ec29dbc76568ee3b7b23108b50a47e2c70e02a17c1a8cd68ea676aa
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.70.0 (2023-06-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230530
|
6
|
+
|
7
|
+
### v0.69.0 (2023-05-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230516
|
10
|
+
|
3
11
|
### v0.68.0 (2023-05-21)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230509
|
@@ -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
|
@@ -38561,6 +38577,11 @@ module Google
|
|
38561
38577
|
# @return [String]
|
38562
38578
|
attr_accessor :source_instant_snapshot
|
38563
38579
|
|
38580
|
+
# Customer provided encryption key when creating Snapshot from Instant Snapshot.
|
38581
|
+
# Corresponds to the JSON property `sourceInstantSnapshotEncryptionKey`
|
38582
|
+
# @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]
|
38583
|
+
attr_accessor :source_instant_snapshot_encryption_key
|
38584
|
+
|
38564
38585
|
# [Output Only] The unique ID of the instant snapshot used to create this
|
38565
38586
|
# snapshot. This value identifies the exact instant snapshot that was used to
|
38566
38587
|
# create this persistent disk. For example, if you created the persistent disk
|
@@ -38644,6 +38665,7 @@ module Google
|
|
38644
38665
|
@source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
|
38645
38666
|
@source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
|
38646
38667
|
@source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
|
38668
|
+
@source_instant_snapshot_encryption_key = args[:source_instant_snapshot_encryption_key] if args.key?(:source_instant_snapshot_encryption_key)
|
38647
38669
|
@source_instant_snapshot_id = args[:source_instant_snapshot_id] if args.key?(:source_instant_snapshot_id)
|
38648
38670
|
@source_snapshot_schedule_policy = args[:source_snapshot_schedule_policy] if args.key?(:source_snapshot_schedule_policy)
|
38649
38671
|
@source_snapshot_schedule_policy_id = args[:source_snapshot_schedule_policy_id] if args.key?(:source_snapshot_schedule_policy_id)
|
@@ -41343,6 +41365,16 @@ module Google
|
|
41343
41365
|
# @return [Array<String>]
|
41344
41366
|
attr_accessor :http_filters
|
41345
41367
|
|
41368
|
+
# Specifies how long to keep a connection open, after completing a response,
|
41369
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
41370
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
41371
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
41372
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
41373
|
+
# classic), this option is not available publicly.
|
41374
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
41375
|
+
# @return [Fixnum]
|
41376
|
+
attr_accessor :http_keep_alive_timeout_sec
|
41377
|
+
|
41346
41378
|
# [Output Only] The unique identifier for the resource. This identifier is
|
41347
41379
|
# defined by the server.
|
41348
41380
|
# Corresponds to the JSON property `id`
|
@@ -41405,6 +41437,7 @@ module Google
|
|
41405
41437
|
@description = args[:description] if args.key?(:description)
|
41406
41438
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
41407
41439
|
@http_filters = args[:http_filters] if args.key?(:http_filters)
|
41440
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
41408
41441
|
@id = args[:id] if args.key?(:id)
|
41409
41442
|
@kind = args[:kind] if args.key?(:kind)
|
41410
41443
|
@name = args[:name] if args.key?(:name)
|
@@ -41888,6 +41921,16 @@ module Google
|
|
41888
41921
|
# @return [Array<String>]
|
41889
41922
|
attr_accessor :http_filters
|
41890
41923
|
|
41924
|
+
# Specifies how long to keep a connection open, after completing a response,
|
41925
|
+
# while there is no matching traffic (in seconds). If an HTTP keep-alive is not
|
41926
|
+
# specified, a default value (610 seconds) will be used. For Global external
|
41927
|
+
# HTTP(S) load balancer, the minimum allowed value is 5 seconds and the maximum
|
41928
|
+
# allowed value is 1200 seconds. For Global external HTTP(S) load balancer (
|
41929
|
+
# classic), this option is not available publicly.
|
41930
|
+
# Corresponds to the JSON property `httpKeepAliveTimeoutSec`
|
41931
|
+
# @return [Fixnum]
|
41932
|
+
attr_accessor :http_keep_alive_timeout_sec
|
41933
|
+
|
41891
41934
|
# [Output Only] The unique identifier for the resource. This identifier is
|
41892
41935
|
# defined by the server.
|
41893
41936
|
# Corresponds to the JSON property `id`
|
@@ -41996,6 +42039,7 @@ module Google
|
|
41996
42039
|
@description = args[:description] if args.key?(:description)
|
41997
42040
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
41998
42041
|
@http_filters = args[:http_filters] if args.key?(:http_filters)
|
42042
|
+
@http_keep_alive_timeout_sec = args[:http_keep_alive_timeout_sec] if args.key?(:http_keep_alive_timeout_sec)
|
41999
42043
|
@id = args[:id] if args.key?(:id)
|
42000
42044
|
@kind = args[:kind] if args.key?(:kind)
|
42001
42045
|
@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.70.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 = "20230530"
|
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'
|
@@ -15674,6 +15675,8 @@ module Google
|
|
15674
15675
|
|
15675
15676
|
property :source_disk_id, as: 'sourceDiskId'
|
15676
15677
|
property :source_instant_snapshot, as: 'sourceInstantSnapshot'
|
15678
|
+
property :source_instant_snapshot_encryption_key, as: 'sourceInstantSnapshotEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
|
15679
|
+
|
15677
15680
|
property :source_instant_snapshot_id, as: 'sourceInstantSnapshotId'
|
15678
15681
|
property :source_snapshot_schedule_policy, as: 'sourceSnapshotSchedulePolicy'
|
15679
15682
|
property :source_snapshot_schedule_policy_id, as: 'sourceSnapshotSchedulePolicyId'
|
@@ -16347,6 +16350,7 @@ module Google
|
|
16347
16350
|
property :description, as: 'description'
|
16348
16351
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
16349
16352
|
collection :http_filters, as: 'httpFilters'
|
16353
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
16350
16354
|
property :id, :numeric_string => true, as: 'id'
|
16351
16355
|
property :kind, as: 'kind'
|
16352
16356
|
property :name, as: 'name'
|
@@ -16482,6 +16486,7 @@ module Google
|
|
16482
16486
|
property :description, as: 'description'
|
16483
16487
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
16484
16488
|
collection :http_filters, as: 'httpFilters'
|
16489
|
+
property :http_keep_alive_timeout_sec, as: 'httpKeepAliveTimeoutSec'
|
16485
16490
|
property :id, :numeric_string => true, as: 'id'
|
16486
16491
|
property :kind, as: 'kind'
|
16487
16492
|
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.70.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-
|
11
|
+
date: 2023-06-11 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.70.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: []
|