Skip to content

Commit 57925f2

Browse files
feat: Automated regeneration of container v1 client (googleapis#20253)
Auto-created at 2024-09-22 09:37:46 +0000 using the toys pull request generator.
1 parent 9690400 commit 57925f2

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114567,6 +114567,7 @@
114567114567
"/container:v1/AdditionalNodeNetworkConfig/subnetwork": subnetwork
114568114568
"/container:v1/AdditionalPodNetworkConfig": additional_pod_network_config
114569114569
"/container:v1/AdditionalPodNetworkConfig/maxPodsPerNode": max_pods_per_node
114570+
"/container:v1/AdditionalPodNetworkConfig/networkAttachment": network_attachment
114570114571
"/container:v1/AdditionalPodNetworkConfig/secondaryPodRange": secondary_pod_range
114571114572
"/container:v1/AdditionalPodNetworkConfig/subnetwork": subnetwork
114572114573
"/container:v1/AdditionalPodRangesConfig": additional_pod_ranges_config

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.80.0 (2024-09-22)
4+
5+
* Regenerated from discovery document revision 20240905
6+
37
### v0.79.0 (2024-09-15)
48

59
* Regenerated from discovery document revision 20240814

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,12 @@ class AdditionalPodNetworkConfig
106106
# @return [Google::Apis::ContainerV1::MaxPodsConstraint]
107107
attr_accessor :max_pods_per_node
108108

109+
# The name of the network attachment for pods to communicate to; cannot be
110+
# specified along with subnetwork or secondary_pod_range.
111+
# Corresponds to the JSON property `networkAttachment`
112+
# @return [String]
113+
attr_accessor :network_attachment
114+
109115
# The name of the secondary range on the subnet which provides IP address for
110116
# this pod range.
111117
# Corresponds to the JSON property `secondaryPodRange`
@@ -124,6 +130,7 @@ def initialize(**args)
124130
# Update properties of this object
125131
def update!(**args)
126132
@max_pods_per_node = args[:max_pods_per_node] if args.key?(:max_pods_per_node)
133+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
127134
@secondary_pod_range = args[:secondary_pod_range] if args.key?(:secondary_pod_range)
128135
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
129136
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.79.0"
19+
GEM_VERSION = "0.80.0"
2020

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

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,6 +1134,7 @@ class AdditionalPodNetworkConfig
11341134
class Representation < Google::Apis::Core::JsonRepresentation
11351135
property :max_pods_per_node, as: 'maxPodsPerNode', class: Google::Apis::ContainerV1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1::MaxPodsConstraint::Representation
11361136

1137+
property :network_attachment, as: 'networkAttachment'
11371138
property :secondary_pod_range, as: 'secondaryPodRange'
11381139
property :subnetwork, as: 'subnetwork'
11391140
end

0 commit comments

Comments
 (0)