From 07ea756150fe76ef56b05138f03b741dc2028185 Mon Sep 17 00:00:00 2001 From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com> Date: Sun, 28 Apr 2024 03:36:16 -0700 Subject: [PATCH] feat: Automated regeneration of container v1 client (#18881) Auto-created at 2024-04-28 10:10:27 +0000 using the toys pull request generator. --- api_names_out.yaml | 1 + generated/google-apis-container_v1/CHANGELOG.md | 4 ++++ .../lib/google/apis/container_v1/classes.rb | 10 +++++++++- .../lib/google/apis/container_v1/gem_version.rb | 4 ++-- .../lib/google/apis/container_v1/representations.rb | 1 + 5 files changed, 17 insertions(+), 3 deletions(-) diff --git a/api_names_out.yaml b/api_names_out.yaml index c7f87a4baaf..86eeed7b63b 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -111094,6 +111094,7 @@ "/container:v1/AdvancedDatapathObservabilityConfig/enableRelay": enable_relay "/container:v1/AdvancedDatapathObservabilityConfig/relayMode": relay_mode "/container:v1/AdvancedMachineFeatures": advanced_machine_features +"/container:v1/AdvancedMachineFeatures/enableNestedVirtualization": enable_nested_virtualization "/container:v1/AdvancedMachineFeatures/threadsPerCore": threads_per_core "/container:v1/AuthenticatorGroupsConfig": authenticator_groups_config "/container:v1/AuthenticatorGroupsConfig/enabled": enabled diff --git a/generated/google-apis-container_v1/CHANGELOG.md b/generated/google-apis-container_v1/CHANGELOG.md index cc60ccac3bc..4a179dd4958 100644 --- a/generated/google-apis-container_v1/CHANGELOG.md +++ b/generated/google-apis-container_v1/CHANGELOG.md @@ -1,5 +1,9 @@ # Release history for google-apis-container_v1 +### v0.71.0 (2024-04-28) + +* Regenerated from discovery document revision 20240409 + ### v0.70.0 (2024-04-14) * Regenerated from discovery document revision 20240327 diff --git a/generated/google-apis-container_v1/lib/google/apis/container_v1/classes.rb b/generated/google-apis-container_v1/lib/google/apis/container_v1/classes.rb index f3468df2d85..8562a7ab284 100644 --- a/generated/google-apis-container_v1/lib/google/apis/container_v1/classes.rb +++ b/generated/google-apis-container_v1/lib/google/apis/container_v1/classes.rb @@ -284,6 +284,12 @@ def update!(**args) class AdvancedMachineFeatures include Google::Apis::Core::Hashable + # Whether or not to enable nested virtualization (defaults to false). + # Corresponds to the JSON property `enableNestedVirtualization` + # @return [Boolean] + attr_accessor :enable_nested_virtualization + alias_method :enable_nested_virtualization?, :enable_nested_virtualization + # The number of threads per physical core. To disable simultaneous # multithreading (SMT) set this to 1. If unset, the maximum number of threads # supported per core by the underlying processor is assumed. @@ -297,6 +303,7 @@ def initialize(**args) # Update properties of this object def update!(**args) + @enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization) @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core) end end @@ -3791,7 +3798,8 @@ class NetworkConfig # @return [Google::Apis::ContainerV1::GatewayApiConfig] attr_accessor :gateway_api_config - # Specify the details of in-transit encryption. + # Specify the details of in-transit encryption. Now named inter-node transparent + # encryption. # Corresponds to the JSON property `inTransitEncryptionConfig` # @return [String] attr_accessor :in_transit_encryption_config diff --git a/generated/google-apis-container_v1/lib/google/apis/container_v1/gem_version.rb b/generated/google-apis-container_v1/lib/google/apis/container_v1/gem_version.rb index 671d1fd7682..52a274e9125 100644 --- a/generated/google-apis-container_v1/lib/google/apis/container_v1/gem_version.rb +++ b/generated/google-apis-container_v1/lib/google/apis/container_v1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module ContainerV1 # Version of the google-apis-container_v1 gem - GEM_VERSION = "0.70.0" + GEM_VERSION = "0.71.0" # Version of the code generator used to generate this client GENERATOR_VERSION = "0.14.0" # Revision of the discovery document this client was generated from - REVISION = "20240327" + REVISION = "20240409" end end end diff --git a/generated/google-apis-container_v1/lib/google/apis/container_v1/representations.rb b/generated/google-apis-container_v1/lib/google/apis/container_v1/representations.rb index a6f06bd07a8..e8567c33669 100644 --- a/generated/google-apis-container_v1/lib/google/apis/container_v1/representations.rb +++ b/generated/google-apis-container_v1/lib/google/apis/container_v1/representations.rb @@ -1148,6 +1148,7 @@ class Representation < Google::Apis::Core::JsonRepresentation class AdvancedMachineFeatures # @private class Representation < Google::Apis::Core::JsonRepresentation + property :enable_nested_virtualization, as: 'enableNestedVirtualization' property :threads_per_core, :numeric_string => true, as: 'threadsPerCore' end end