Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133233,6 +133233,7 @@
"/container:v1/ConsumptionMeteringConfig/enabled": enabled
"/container:v1/ContainerdConfig": containerd_config
"/container:v1/ContainerdConfig/privateRegistryAccessConfig": private_registry_access_config
"/container:v1/ContainerdConfig/writableCgroups": writable_cgroups
"/container:v1/ControlPlaneEndpointsConfig": control_plane_endpoints_config
"/container:v1/ControlPlaneEndpointsConfig/dnsEndpointConfig": dns_endpoint_config
"/container:v1/ControlPlaneEndpointsConfig/ipEndpointsConfig": ip_endpoints_config
Expand Down Expand Up @@ -134112,6 +134113,8 @@
"/container:v1/WorkloadPolicyConfig": workload_policy_config
"/container:v1/WorkloadPolicyConfig/allowNetAdmin": allow_net_admin
"/container:v1/WorkloadPolicyConfig/autopilotCompatibilityAuditingEnabled": autopilot_compatibility_auditing_enabled
"/container:v1/WritableCgroups": writable_cgroups
"/container:v1/WritableCgroups/enabled": enabled
"/container:v1/container.projects.aggregated.usableSubnetworks.list": list_project_aggregated_usable_subnetworks
"/container:v1/container.projects.aggregated.usableSubnetworks.list/filter": filter
"/container:v1/container.projects.aggregated.usableSubnetworks.list/pageSize": page_size
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-container_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-container_v1

### v0.105.0 (2025-10-19)

* Regenerated from discovery document revision 20250930

### v0.104.0 (2025-10-05)

* Regenerated from discovery document revision 20250923
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2561,13 +2561,19 @@ class ContainerdConfig
# @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
attr_accessor :private_registry_access_config

# Defines writable cgroups configuration.
# Corresponds to the JSON property `writableCgroups`
# @return [Google::Apis::ContainerV1::WritableCgroups]
attr_accessor :writable_cgroups

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
@writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
end
end

Expand Down Expand Up @@ -5625,7 +5631,7 @@ class NodeKubeletConfig
# Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a
# sequence of decimal numbers, each with optional fraction and a unit suffix,
# such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
# . The value must be a positive duration.
# . The value must be a positive duration between 1ms and 1 second, inclusive.
# Corresponds to the JSON property `cpuCfsQuotaPeriod`
# @return [String]
attr_accessor :cpu_cfs_quota_period
Expand Down Expand Up @@ -9703,6 +9709,26 @@ def update!(**args)
@autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
end
end

# Defines writable cgroups configuration.
class WritableCgroups
include Google::Apis::Core::Hashable

# Optional. Whether writable cgroups is enabled.
# Corresponds to the JSON property `enabled`
# @return [Boolean]
attr_accessor :enabled
alias_method :enabled?, :enabled

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@enabled = args[:enabled] if args.key?(:enabled)
end
end
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ContainerV1
# Version of the google-apis-container_v1 gem
GEM_VERSION = "0.104.0"
GEM_VERSION = "0.105.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250923"
REVISION = "20250930"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class WritableCgroups
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class AcceleratorConfig
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -1958,6 +1964,8 @@ class ContainerdConfig
class Representation < Google::Apis::Core::JsonRepresentation
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation

property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1::WritableCgroups, decorator: Google::Apis::ContainerV1::WritableCgroups::Representation

end
end

Expand Down Expand Up @@ -3753,6 +3761,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
end
end

class WritableCgroups
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :enabled, as: 'enabled'
end
end
end
end
end