Skip to content

Commit 6b4a84a

Browse files
feat: Automated regeneration of container v1 client (googleapis#24652)
Auto-created at 2025-10-19 09:25:57 +0000 using the toys pull request generator.
1 parent b5e5fe8 commit 6b4a84a

File tree

5 files changed

+51
-3
lines changed

5 files changed

+51
-3
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133316,6 +133316,7 @@
133316133316
"/container:v1/ConsumptionMeteringConfig/enabled": enabled
133317133317
"/container:v1/ContainerdConfig": containerd_config
133318133318
"/container:v1/ContainerdConfig/privateRegistryAccessConfig": private_registry_access_config
133319+
"/container:v1/ContainerdConfig/writableCgroups": writable_cgroups
133319133320
"/container:v1/ControlPlaneEndpointsConfig": control_plane_endpoints_config
133320133321
"/container:v1/ControlPlaneEndpointsConfig/dnsEndpointConfig": dns_endpoint_config
133321133322
"/container:v1/ControlPlaneEndpointsConfig/ipEndpointsConfig": ip_endpoints_config
@@ -134195,6 +134196,8 @@
134195134196
"/container:v1/WorkloadPolicyConfig": workload_policy_config
134196134197
"/container:v1/WorkloadPolicyConfig/allowNetAdmin": allow_net_admin
134197134198
"/container:v1/WorkloadPolicyConfig/autopilotCompatibilityAuditingEnabled": autopilot_compatibility_auditing_enabled
134199+
"/container:v1/WritableCgroups": writable_cgroups
134200+
"/container:v1/WritableCgroups/enabled": enabled
134198134201
"/container:v1/container.projects.aggregated.usableSubnetworks.list": list_project_aggregated_usable_subnetworks
134199134202
"/container:v1/container.projects.aggregated.usableSubnetworks.list/filter": filter
134200134203
"/container:v1/container.projects.aggregated.usableSubnetworks.list/pageSize": page_size

generated/google-apis-container_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-container_v1
22

3+
### v0.105.0 (2025-10-19)
4+
5+
* Regenerated from discovery document revision 20250930
6+
37
### v0.104.0 (2025-10-05)
48

59
* Regenerated from discovery document revision 20250923

generated/google-apis-container_v1/lib/google/apis/container_v1/classes.rb

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2561,13 +2561,19 @@ class ContainerdConfig
25612561
# @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
25622562
attr_accessor :private_registry_access_config
25632563

2564+
# Defines writable cgroups configuration.
2565+
# Corresponds to the JSON property `writableCgroups`
2566+
# @return [Google::Apis::ContainerV1::WritableCgroups]
2567+
attr_accessor :writable_cgroups
2568+
25642569
def initialize(**args)
25652570
update!(**args)
25662571
end
25672572

25682573
# Update properties of this object
25692574
def update!(**args)
25702575
@private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
2576+
@writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
25712577
end
25722578
end
25732579

@@ -5625,7 +5631,7 @@ class NodeKubeletConfig
56255631
# Set the CPU CFS quota period value 'cpu.cfs_period_us'. The string must be a
56265632
# sequence of decimal numbers, each with optional fraction and a unit suffix,
56275633
# such as "300ms". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
5628-
# . The value must be a positive duration.
5634+
# . The value must be a positive duration between 1ms and 1 second, inclusive.
56295635
# Corresponds to the JSON property `cpuCfsQuotaPeriod`
56305636
# @return [String]
56315637
attr_accessor :cpu_cfs_quota_period
@@ -9703,6 +9709,26 @@ def update!(**args)
97039709
@autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
97049710
end
97059711
end
9712+
9713+
# Defines writable cgroups configuration.
9714+
class WritableCgroups
9715+
include Google::Apis::Core::Hashable
9716+
9717+
# Optional. Whether writable cgroups is enabled.
9718+
# Corresponds to the JSON property `enabled`
9719+
# @return [Boolean]
9720+
attr_accessor :enabled
9721+
alias_method :enabled?, :enabled
9722+
9723+
def initialize(**args)
9724+
update!(**args)
9725+
end
9726+
9727+
# Update properties of this object
9728+
def update!(**args)
9729+
@enabled = args[:enabled] if args.key?(:enabled)
9730+
end
9731+
end
97069732
end
97079733
end
97089734
end

generated/google-apis-container_v1/lib/google/apis/container_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ContainerV1
1818
# Version of the google-apis-container_v1 gem
19-
GEM_VERSION = "0.104.0"
19+
GEM_VERSION = "0.105.0"
2020

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

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250923"
25+
REVISION = "20250930"
2626
end
2727
end
2828
end

generated/google-apis-container_v1/lib/google/apis/container_v1/representations.rb

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,6 +1294,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
12941294
include Google::Apis::Core::JsonObjectSupport
12951295
end
12961296

1297+
class WritableCgroups
1298+
class Representation < Google::Apis::Core::JsonRepresentation; end
1299+
1300+
include Google::Apis::Core::JsonObjectSupport
1301+
end
1302+
12971303
class AcceleratorConfig
12981304
# @private
12991305
class Representation < Google::Apis::Core::JsonRepresentation
@@ -1958,6 +1964,8 @@ class ContainerdConfig
19581964
class Representation < Google::Apis::Core::JsonRepresentation
19591965
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation
19601966

1967+
property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1::WritableCgroups, decorator: Google::Apis::ContainerV1::WritableCgroups::Representation
1968+
19611969
end
19621970
end
19631971

@@ -3753,6 +3761,13 @@ class Representation < Google::Apis::Core::JsonRepresentation
37533761
property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
37543762
end
37553763
end
3764+
3765+
class WritableCgroups
3766+
# @private
3767+
class Representation < Google::Apis::Core::JsonRepresentation
3768+
property :enabled, as: 'enabled'
3769+
end
3770+
end
37563771
end
37573772
end
37583773
end

0 commit comments

Comments
 (0)