Skip to content

Commit

Permalink
feat: Automated regeneration of container v1 client (#18881)
Browse files Browse the repository at this point in the history
Auto-created at 2024-04-28 10:10:27 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot committed Apr 28, 2024
1 parent 281e9c1 commit 07ea756
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions api_names_out.yaml
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions 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
Expand Down
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
Expand Up @@ -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
Expand Up @@ -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
Expand Down

0 comments on commit 07ea756

Please sign in to comment.