google-apis-compute_beta 0.22.0 → 0.23.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: 91938d95d32737298a1125dd1767c1d51bd3dff67025118f93699a9dc5a39383
|
4
|
+
data.tar.gz: 77622a0280627fe26ca8271ca57a2f31d39ab208a8a4f164ca850f05d623bc2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db67d83166ae9c3e1c65058673117241f769d0204a0c684a6e8b0b7d957c177ed2dea1719d59a94d7b5b582f087777d6d1f7199fc3a78ca0be203c9280bfbaff
|
7
|
+
data.tar.gz: 293c32a5ac9fa846dca85a1fdcabed272561767993fa67588219441c6713046682f00247a4a65c1b3d9af95fb74f90c44e5020d5a837e22820cf3a3a44c34b3b
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/compute_beta"
|
|
51
51
|
client = Google::Apis::ComputeBeta::ComputeService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -1072,6 +1072,12 @@ module Google
|
|
1072
1072
|
attr_accessor :enable_nested_virtualization
|
1073
1073
|
alias_method :enable_nested_virtualization?, :enable_nested_virtualization
|
1074
1074
|
|
1075
|
+
# Whether to enable UEFI networking for instance creation.
|
1076
|
+
# Corresponds to the JSON property `enableUefiNetworking`
|
1077
|
+
# @return [Boolean]
|
1078
|
+
attr_accessor :enable_uefi_networking
|
1079
|
+
alias_method :enable_uefi_networking?, :enable_uefi_networking
|
1080
|
+
|
1075
1081
|
# The number of threads per physical core. To disable simultaneous
|
1076
1082
|
# multithreading (SMT) set this to 1. If unset, the maximum number of threads
|
1077
1083
|
# supported per core by the underlying processor is assumed.
|
@@ -1086,6 +1092,7 @@ module Google
|
|
1086
1092
|
# Update properties of this object
|
1087
1093
|
def update!(**args)
|
1088
1094
|
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
1095
|
+
@enable_uefi_networking = args[:enable_uefi_networking] if args.key?(:enable_uefi_networking)
|
1089
1096
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
1090
1097
|
end
|
1091
1098
|
end
|
@@ -1213,6 +1220,11 @@ module Google
|
|
1213
1220
|
class AllocationSpecificSkuReservation
|
1214
1221
|
include Google::Apis::Core::Hashable
|
1215
1222
|
|
1223
|
+
# [Output Only] Indicates how many instances are actually usable currently.
|
1224
|
+
# Corresponds to the JSON property `assuredCount`
|
1225
|
+
# @return [Fixnum]
|
1226
|
+
attr_accessor :assured_count
|
1227
|
+
|
1216
1228
|
# Specifies the number of resources that are allocated.
|
1217
1229
|
# Corresponds to the JSON property `count`
|
1218
1230
|
# @return [Fixnum]
|
@@ -1234,6 +1246,7 @@ module Google
|
|
1234
1246
|
|
1235
1247
|
# Update properties of this object
|
1236
1248
|
def update!(**args)
|
1249
|
+
@assured_count = args[:assured_count] if args.key?(:assured_count)
|
1237
1250
|
@count = args[:count] if args.key?(:count)
|
1238
1251
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
1239
1252
|
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
@@ -13522,6 +13535,30 @@ module Google
|
|
13522
13535
|
# @return [Fixnum]
|
13523
13536
|
attr_accessor :restarting
|
13524
13537
|
|
13538
|
+
# [Output Only] The number of instances in the managed instance group that are
|
13539
|
+
# scheduled to be resumed or are currently being resumed.
|
13540
|
+
# Corresponds to the JSON property `resuming`
|
13541
|
+
# @return [Fixnum]
|
13542
|
+
attr_accessor :resuming
|
13543
|
+
|
13544
|
+
# [Output Only] The number of instances in the managed instance group that are
|
13545
|
+
# scheduled to be started or are currently being started.
|
13546
|
+
# Corresponds to the JSON property `starting`
|
13547
|
+
# @return [Fixnum]
|
13548
|
+
attr_accessor :starting
|
13549
|
+
|
13550
|
+
# [Output Only] The number of instances in the managed instance group that are
|
13551
|
+
# scheduled to be stopped or are currently being stopped.
|
13552
|
+
# Corresponds to the JSON property `stopping`
|
13553
|
+
# @return [Fixnum]
|
13554
|
+
attr_accessor :stopping
|
13555
|
+
|
13556
|
+
# [Output Only] The number of instances in the managed instance group that are
|
13557
|
+
# scheduled to be suspended or are currently being suspended.
|
13558
|
+
# Corresponds to the JSON property `suspending`
|
13559
|
+
# @return [Fixnum]
|
13560
|
+
attr_accessor :suspending
|
13561
|
+
|
13525
13562
|
# [Output Only] The number of instances in the managed instance group that are
|
13526
13563
|
# being verified. See the managedInstances[].currentAction property in the
|
13527
13564
|
# listManagedInstances method documentation.
|
@@ -13543,6 +13580,10 @@ module Google
|
|
13543
13580
|
@recreating = args[:recreating] if args.key?(:recreating)
|
13544
13581
|
@refreshing = args[:refreshing] if args.key?(:refreshing)
|
13545
13582
|
@restarting = args[:restarting] if args.key?(:restarting)
|
13583
|
+
@resuming = args[:resuming] if args.key?(:resuming)
|
13584
|
+
@starting = args[:starting] if args.key?(:starting)
|
13585
|
+
@stopping = args[:stopping] if args.key?(:stopping)
|
13586
|
+
@suspending = args[:suspending] if args.key?(:suspending)
|
13546
13587
|
@verifying = args[:verifying] if args.key?(:verifying)
|
13547
13588
|
end
|
13548
13589
|
end
|
@@ -18296,7 +18337,7 @@ module Google
|
|
18296
18337
|
class LocationPolicyLocation
|
18297
18338
|
include Google::Apis::Core::Hashable
|
18298
18339
|
|
18299
|
-
# Preference for a given location
|
18340
|
+
# Preference for a given location.
|
18300
18341
|
# Corresponds to the JSON property `preference`
|
18301
18342
|
# @return [String]
|
18302
18343
|
attr_accessor :preference
|
@@ -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.23.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211228"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -5778,6 +5778,7 @@ module Google
|
|
5778
5778
|
# @private
|
5779
5779
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5780
5780
|
property :enable_nested_virtualization, as: 'enableNestedVirtualization'
|
5781
|
+
property :enable_uefi_networking, as: 'enableUefiNetworking'
|
5781
5782
|
property :threads_per_core, as: 'threadsPerCore'
|
5782
5783
|
end
|
5783
5784
|
end
|
@@ -5816,6 +5817,7 @@ module Google
|
|
5816
5817
|
class AllocationSpecificSkuReservation
|
5817
5818
|
# @private
|
5818
5819
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5820
|
+
property :assured_count, :numeric_string => true, as: 'assuredCount'
|
5819
5821
|
property :count, :numeric_string => true, as: 'count'
|
5820
5822
|
property :in_use_count, :numeric_string => true, as: 'inUseCount'
|
5821
5823
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationReservedInstanceProperties, decorator: Google::Apis::ComputeBeta::AllocationSpecificSkuAllocationReservedInstanceProperties::Representation
|
@@ -8565,6 +8567,10 @@ module Google
|
|
8565
8567
|
property :recreating, as: 'recreating'
|
8566
8568
|
property :refreshing, as: 'refreshing'
|
8567
8569
|
property :restarting, as: 'restarting'
|
8570
|
+
property :resuming, as: 'resuming'
|
8571
|
+
property :starting, as: 'starting'
|
8572
|
+
property :stopping, as: 'stopping'
|
8573
|
+
property :suspending, as: 'suspending'
|
8568
8574
|
property :verifying, as: 'verifying'
|
8569
8575
|
end
|
8570
8576
|
end
|
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.23.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:
|
11
|
+
date: 2022-01-10 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.23.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Compute Engine API Beta
|