google-apis-compute_v1 0.105.0 → 0.106.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: c74d8b23852155c76351139f8783b7c4f6141a09c772b54c5f3c40c6ffc7ae97
|
4
|
+
data.tar.gz: 8abc76c2289d9357e3d93b06a3070581663ce05133995efb24a02e4f628b5325
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85595a6776a771da201663aa19721dfc79f61a096499cfc8b29712be5bd27c20c5c73a107ffc00ac2fcc575bf97aa735eb012ee4a62c4b991e7224597f44b5ce
|
7
|
+
data.tar.gz: 6dfd48dbf10195463a2ab9f70eb7075f2f79209d2c0270d847fe27780c12b6c456a8d89f76f4f75adb8a9bda6637c4093c45a60b13d894952b94fa034862b2c2
|
data/CHANGELOG.md
CHANGED
@@ -1157,6 +1157,13 @@ module Google
|
|
1157
1157
|
# @return [Fixnum]
|
1158
1158
|
attr_accessor :threads_per_core
|
1159
1159
|
|
1160
|
+
# Turbo frequency mode to use for the instance. Supported modes include: *
|
1161
|
+
# ALL_CORE_MAX Using empty string or not setting this field will use the
|
1162
|
+
# platform-specific default turbo mode.
|
1163
|
+
# Corresponds to the JSON property `turboMode`
|
1164
|
+
# @return [String]
|
1165
|
+
attr_accessor :turbo_mode
|
1166
|
+
|
1160
1167
|
# The number of physical cores to expose to an instance. Multiply by the number
|
1161
1168
|
# of threads per core to compute the total number of virtual CPUs to expose to
|
1162
1169
|
# the instance. If unset, the number of cores is inferred from the instance's
|
@@ -1175,6 +1182,7 @@ module Google
|
|
1175
1182
|
@enable_uefi_networking = args[:enable_uefi_networking] if args.key?(:enable_uefi_networking)
|
1176
1183
|
@performance_monitoring_unit = args[:performance_monitoring_unit] if args.key?(:performance_monitoring_unit)
|
1177
1184
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
1185
|
+
@turbo_mode = args[:turbo_mode] if args.key?(:turbo_mode)
|
1178
1186
|
@visible_core_count = args[:visible_core_count] if args.key?(:visible_core_count)
|
1179
1187
|
end
|
1180
1188
|
end
|
@@ -26400,6 +26408,12 @@ module Google
|
|
26400
26408
|
# @return [String]
|
26401
26409
|
attr_accessor :name
|
26402
26410
|
|
26411
|
+
# [Output only] Priority of firewall policy association. Not applicable for type=
|
26412
|
+
# HIERARCHY.
|
26413
|
+
# Corresponds to the JSON property `priority`
|
26414
|
+
# @return [Fixnum]
|
26415
|
+
attr_accessor :priority
|
26416
|
+
|
26403
26417
|
# The rules that apply to the network.
|
26404
26418
|
# Corresponds to the JSON property `rules`
|
26405
26419
|
# @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
|
@@ -26423,6 +26437,7 @@ module Google
|
|
26423
26437
|
def update!(**args)
|
26424
26438
|
@display_name = args[:display_name] if args.key?(:display_name)
|
26425
26439
|
@name = args[:name] if args.key?(:name)
|
26440
|
+
@priority = args[:priority] if args.key?(:priority)
|
26426
26441
|
@rules = args[:rules] if args.key?(:rules)
|
26427
26442
|
@short_name = args[:short_name] if args.key?(:short_name)
|
26428
26443
|
@type = args[:type] if args.key?(:type)
|
@@ -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.106.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240820"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6903,6 +6903,7 @@ module Google
|
|
6903
6903
|
property :enable_uefi_networking, as: 'enableUefiNetworking'
|
6904
6904
|
property :performance_monitoring_unit, as: 'performanceMonitoringUnit'
|
6905
6905
|
property :threads_per_core, as: 'threadsPerCore'
|
6906
|
+
property :turbo_mode, as: 'turboMode'
|
6906
6907
|
property :visible_core_count, as: 'visibleCoreCount'
|
6907
6908
|
end
|
6908
6909
|
end
|
@@ -12924,6 +12925,7 @@ module Google
|
|
12924
12925
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12925
12926
|
property :display_name, as: 'displayName'
|
12926
12927
|
property :name, as: 'name'
|
12928
|
+
property :priority, as: 'priority'
|
12927
12929
|
collection :rules, as: 'rules', class: Google::Apis::ComputeV1::FirewallPolicyRule, decorator: Google::Apis::ComputeV1::FirewallPolicyRule::Representation
|
12928
12930
|
|
12929
12931
|
property :short_name, as: 'shortName'
|
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.106.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: 2024-
|
11
|
+
date: 2024-09-01 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.106.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: []
|