Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Commit cb840d0

Browse files
fix!: revert bad publishing (#184)
- [ ] Regenerate this pull request now. This RPC is not supposed to be published at this moment because Java generator cannot support this path template. It will be re-published when the generator is fixed. PiperOrigin-RevId: 423936238 Source-Link: googleapis/googleapis@b0a8651 Source-Link: https://github.com/googleapis/googleapis-gen/commit/1cdff21dad874feaa132a38e5e33f080fd2eb64c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMWNkZmYyMWRhZDg3NGZlYWExMzJhMzhlNWUzM2YwODBmZDJlYjY0YyJ9
1 parent e755a9a commit cb840d0

File tree

17 files changed

+1909
-239
lines changed

17 files changed

+1909
-239
lines changed

google/cloud/container/__init__.py

+58-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323

2424
from google.cloud.container_v1.types.cluster_service import AcceleratorConfig
2525
from google.cloud.container_v1.types.cluster_service import AddonsConfig
26+
from google.cloud.container_v1.types.cluster_service import AdvancedMachineFeatures
2627
from google.cloud.container_v1.types.cluster_service import AuthenticatorGroupsConfig
28+
from google.cloud.container_v1.types.cluster_service import Autopilot
2729
from google.cloud.container_v1.types.cluster_service import (
2830
AutoprovisioningNodePoolDefaults,
2931
)
@@ -36,6 +38,7 @@
3638
from google.cloud.container_v1.types.cluster_service import ClusterAutoscaling
3739
from google.cloud.container_v1.types.cluster_service import ClusterUpdate
3840
from google.cloud.container_v1.types.cluster_service import CompleteIPRotationRequest
41+
from google.cloud.container_v1.types.cluster_service import ConfidentialNodes
3942
from google.cloud.container_v1.types.cluster_service import ConfigConnectorConfig
4043
from google.cloud.container_v1.types.cluster_service import CreateClusterRequest
4144
from google.cloud.container_v1.types.cluster_service import CreateNodePoolRequest
@@ -45,21 +48,27 @@
4548
from google.cloud.container_v1.types.cluster_service import DeleteClusterRequest
4649
from google.cloud.container_v1.types.cluster_service import DeleteNodePoolRequest
4750
from google.cloud.container_v1.types.cluster_service import DnsCacheConfig
51+
from google.cloud.container_v1.types.cluster_service import DNSConfig
52+
from google.cloud.container_v1.types.cluster_service import (
53+
GcePersistentDiskCsiDriverConfig,
54+
)
55+
from google.cloud.container_v1.types.cluster_service import GcfsConfig
56+
from google.cloud.container_v1.types.cluster_service import GcpFilestoreCsiDriverConfig
4857
from google.cloud.container_v1.types.cluster_service import GetClusterRequest
4958
from google.cloud.container_v1.types.cluster_service import GetJSONWebKeysRequest
5059
from google.cloud.container_v1.types.cluster_service import GetJSONWebKeysResponse
5160
from google.cloud.container_v1.types.cluster_service import GetNodePoolRequest
52-
from google.cloud.container_v1.types.cluster_service import GetOpenIDConfigRequest
53-
from google.cloud.container_v1.types.cluster_service import GetOpenIDConfigResponse
5461
from google.cloud.container_v1.types.cluster_service import GetOperationRequest
5562
from google.cloud.container_v1.types.cluster_service import GetServerConfigRequest
5663
from google.cloud.container_v1.types.cluster_service import HorizontalPodAutoscaling
5764
from google.cloud.container_v1.types.cluster_service import HttpLoadBalancing
65+
from google.cloud.container_v1.types.cluster_service import ILBSubsettingConfig
5866
from google.cloud.container_v1.types.cluster_service import IntraNodeVisibilityConfig
5967
from google.cloud.container_v1.types.cluster_service import IPAllocationPolicy
6068
from google.cloud.container_v1.types.cluster_service import Jwk
6169
from google.cloud.container_v1.types.cluster_service import KubernetesDashboard
6270
from google.cloud.container_v1.types.cluster_service import LegacyAbac
71+
from google.cloud.container_v1.types.cluster_service import LinuxNodeConfig
6372
from google.cloud.container_v1.types.cluster_service import ListClustersRequest
6473
from google.cloud.container_v1.types.cluster_service import ListClustersResponse
6574
from google.cloud.container_v1.types.cluster_service import ListNodePoolsRequest
@@ -70,21 +79,32 @@
7079
from google.cloud.container_v1.types.cluster_service import (
7180
ListUsableSubnetworksResponse,
7281
)
82+
from google.cloud.container_v1.types.cluster_service import LoggingComponentConfig
83+
from google.cloud.container_v1.types.cluster_service import LoggingConfig
84+
from google.cloud.container_v1.types.cluster_service import MaintenanceExclusionOptions
7385
from google.cloud.container_v1.types.cluster_service import MaintenancePolicy
7486
from google.cloud.container_v1.types.cluster_service import MaintenanceWindow
7587
from google.cloud.container_v1.types.cluster_service import MasterAuth
7688
from google.cloud.container_v1.types.cluster_service import (
7789
MasterAuthorizedNetworksConfig,
7890
)
7991
from google.cloud.container_v1.types.cluster_service import MaxPodsConstraint
92+
from google.cloud.container_v1.types.cluster_service import MeshCertificates
93+
from google.cloud.container_v1.types.cluster_service import MonitoringComponentConfig
94+
from google.cloud.container_v1.types.cluster_service import MonitoringConfig
8095
from google.cloud.container_v1.types.cluster_service import NetworkConfig
8196
from google.cloud.container_v1.types.cluster_service import NetworkPolicy
8297
from google.cloud.container_v1.types.cluster_service import NetworkPolicyConfig
8398
from google.cloud.container_v1.types.cluster_service import NodeConfig
99+
from google.cloud.container_v1.types.cluster_service import NodeConfigDefaults
100+
from google.cloud.container_v1.types.cluster_service import NodeKubeletConfig
84101
from google.cloud.container_v1.types.cluster_service import NodeManagement
102+
from google.cloud.container_v1.types.cluster_service import NodeNetworkConfig
85103
from google.cloud.container_v1.types.cluster_service import NodePool
86104
from google.cloud.container_v1.types.cluster_service import NodePoolAutoscaling
105+
from google.cloud.container_v1.types.cluster_service import NodePoolDefaults
87106
from google.cloud.container_v1.types.cluster_service import NodeTaint
107+
from google.cloud.container_v1.types.cluster_service import NotificationConfig
88108
from google.cloud.container_v1.types.cluster_service import Operation
89109
from google.cloud.container_v1.types.cluster_service import OperationProgress
90110
from google.cloud.container_v1.types.cluster_service import PrivateClusterConfig
@@ -100,7 +120,9 @@
100120
RollbackNodePoolUpgradeRequest,
101121
)
102122
from google.cloud.container_v1.types.cluster_service import SandboxConfig
123+
from google.cloud.container_v1.types.cluster_service import SecurityBulletinEvent
103124
from google.cloud.container_v1.types.cluster_service import ServerConfig
125+
from google.cloud.container_v1.types.cluster_service import ServiceExternalIPsConfig
104126
from google.cloud.container_v1.types.cluster_service import SetAddonsConfigRequest
105127
from google.cloud.container_v1.types.cluster_service import SetLabelsRequest
106128
from google.cloud.container_v1.types.cluster_service import SetLegacyAbacRequest
@@ -123,20 +145,28 @@
123145
from google.cloud.container_v1.types.cluster_service import UpdateClusterRequest
124146
from google.cloud.container_v1.types.cluster_service import UpdateMasterRequest
125147
from google.cloud.container_v1.types.cluster_service import UpdateNodePoolRequest
148+
from google.cloud.container_v1.types.cluster_service import UpgradeAvailableEvent
149+
from google.cloud.container_v1.types.cluster_service import UpgradeEvent
126150
from google.cloud.container_v1.types.cluster_service import UsableSubnetwork
127151
from google.cloud.container_v1.types.cluster_service import (
128152
UsableSubnetworkSecondaryRange,
129153
)
130154
from google.cloud.container_v1.types.cluster_service import VerticalPodAutoscaling
155+
from google.cloud.container_v1.types.cluster_service import VirtualNIC
131156
from google.cloud.container_v1.types.cluster_service import WorkloadIdentityConfig
132157
from google.cloud.container_v1.types.cluster_service import WorkloadMetadataConfig
158+
from google.cloud.container_v1.types.cluster_service import DatapathProvider
159+
from google.cloud.container_v1.types.cluster_service import PrivateIPv6GoogleAccess
160+
from google.cloud.container_v1.types.cluster_service import UpgradeResourceType
133161

134162
__all__ = (
135163
"ClusterManagerClient",
136164
"ClusterManagerAsyncClient",
137165
"AcceleratorConfig",
138166
"AddonsConfig",
167+
"AdvancedMachineFeatures",
139168
"AuthenticatorGroupsConfig",
169+
"Autopilot",
140170
"AutoprovisioningNodePoolDefaults",
141171
"AutoUpgradeOptions",
142172
"BinaryAuthorization",
@@ -147,6 +177,7 @@
147177
"ClusterAutoscaling",
148178
"ClusterUpdate",
149179
"CompleteIPRotationRequest",
180+
"ConfidentialNodes",
150181
"ConfigConnectorConfig",
151182
"CreateClusterRequest",
152183
"CreateNodePoolRequest",
@@ -156,21 +187,25 @@
156187
"DeleteClusterRequest",
157188
"DeleteNodePoolRequest",
158189
"DnsCacheConfig",
190+
"DNSConfig",
191+
"GcePersistentDiskCsiDriverConfig",
192+
"GcfsConfig",
193+
"GcpFilestoreCsiDriverConfig",
159194
"GetClusterRequest",
160195
"GetJSONWebKeysRequest",
161196
"GetJSONWebKeysResponse",
162197
"GetNodePoolRequest",
163-
"GetOpenIDConfigRequest",
164-
"GetOpenIDConfigResponse",
165198
"GetOperationRequest",
166199
"GetServerConfigRequest",
167200
"HorizontalPodAutoscaling",
168201
"HttpLoadBalancing",
202+
"ILBSubsettingConfig",
169203
"IntraNodeVisibilityConfig",
170204
"IPAllocationPolicy",
171205
"Jwk",
172206
"KubernetesDashboard",
173207
"LegacyAbac",
208+
"LinuxNodeConfig",
174209
"ListClustersRequest",
175210
"ListClustersResponse",
176211
"ListNodePoolsRequest",
@@ -179,19 +214,30 @@
179214
"ListOperationsResponse",
180215
"ListUsableSubnetworksRequest",
181216
"ListUsableSubnetworksResponse",
217+
"LoggingComponentConfig",
218+
"LoggingConfig",
219+
"MaintenanceExclusionOptions",
182220
"MaintenancePolicy",
183221
"MaintenanceWindow",
184222
"MasterAuth",
185223
"MasterAuthorizedNetworksConfig",
186224
"MaxPodsConstraint",
225+
"MeshCertificates",
226+
"MonitoringComponentConfig",
227+
"MonitoringConfig",
187228
"NetworkConfig",
188229
"NetworkPolicy",
189230
"NetworkPolicyConfig",
190231
"NodeConfig",
232+
"NodeConfigDefaults",
233+
"NodeKubeletConfig",
191234
"NodeManagement",
235+
"NodeNetworkConfig",
192236
"NodePool",
193237
"NodePoolAutoscaling",
238+
"NodePoolDefaults",
194239
"NodeTaint",
240+
"NotificationConfig",
195241
"Operation",
196242
"OperationProgress",
197243
"PrivateClusterConfig",
@@ -203,7 +249,9 @@
203249
"ResourceUsageExportConfig",
204250
"RollbackNodePoolUpgradeRequest",
205251
"SandboxConfig",
252+
"SecurityBulletinEvent",
206253
"ServerConfig",
254+
"ServiceExternalIPsConfig",
207255
"SetAddonsConfigRequest",
208256
"SetLabelsRequest",
209257
"SetLegacyAbacRequest",
@@ -224,9 +272,15 @@
224272
"UpdateClusterRequest",
225273
"UpdateMasterRequest",
226274
"UpdateNodePoolRequest",
275+
"UpgradeAvailableEvent",
276+
"UpgradeEvent",
227277
"UsableSubnetwork",
228278
"UsableSubnetworkSecondaryRange",
229279
"VerticalPodAutoscaling",
280+
"VirtualNIC",
230281
"WorkloadIdentityConfig",
231282
"WorkloadMetadataConfig",
283+
"DatapathProvider",
284+
"PrivateIPv6GoogleAccess",
285+
"UpgradeResourceType",
232286
)

0 commit comments

Comments
 (0)