Skip to content

Commit 261d25d

Browse files
committed
regenerate client for release 32.3 (#355)
1 parent 8b42889 commit 261d25d

File tree

767 files changed

+826
-805
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

767 files changed

+826
-805
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# v32.3.0
2+
3+
* fix: Delete extra characters in URL ([#354](https://github.com/tomplus/kubernetes_asyncio/pull/354), [satayyeb](https://github.com/satayyeb))
4+
* feat: Add option to disable ssl.VERIFY_X509_STRICT ([#350](https://github.com/tomplus/kubernetes_asyncio/pull/350), [msw-kialo](https://github.com/msw-kialo))
5+
* doc: Update README example with asyncio.run ([#348](https://github.com/tomplus/kubernetes_asyncio/pull/348), [PaarthShah](https://github.com/PaarthShah))
6+
* feat: Add leaderelection module ([#347](https://github.com/tomplus/kubernetes_asyncio/pull/347), [@JacobHenner](https://github.com/JacobHenner))
7+
8+
### API Change
9+
10+
- DRA: CEL expressions using attribute strings exceeded the cost limit because their cost estimation was incomplete. Cost estimation was unnecessarily also computed in the scheduler. ([#129690](https://github.com/kubernetes/kubernetes/pull/129690), [@pohly](https://github.com/pohly)) [SIG Node]
11+
12+
- DRA API: the maximum number of pods which can use the same ResourceClaim is now 256 instead of 32. Beware that downgrading a cluster where this relaxed limit is in use to Kubernetes 1.32.0 is not supported because 1.32.0 would refuse to update ResourceClaims with more than 32 entries in the status.reservedFor field. ([#129544](https://github.com/kubernetes/kubernetes/pull/129544), [@pohly](https://github.com/pohly)) [SIG API Machinery, Node and Testing]
13+
114
# v32.0.0
215

316
### Breaking changes:
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29298b4c9e50970e488ebdcbee9bdfcc056779b8c2323cf4d67d1417d2f9737e
1+
1fc14c31659cd447ef6ea27b703f2e51e45f9e9f2a6bf9ae2e3e309dc6974623

kubernetes_asyncio/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ No description provided (generated by Openapi Generator https://github.com/opena
33

44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

6-
- API version: v1.32.0
7-
- Package version: 32.0.0
6+
- API version: v1.32.3
7+
- Package version: 32.3.0
88
- Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen
99

1010
## Requirements.
@@ -568,7 +568,7 @@ Class | Method | HTTP request | Description
568568
*CustomObjectsApi* | [**get_namespaced_custom_object_scale**](docs/CustomObjectsApi.md#get_namespaced_custom_object_scale) | **GET** /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/scale |
569569
*CustomObjectsApi* | [**get_namespaced_custom_object_status**](docs/CustomObjectsApi.md#get_namespaced_custom_object_status) | **GET** /apis/{group}/{version}/namespaces/{namespace}/{plural}/{name}/status |
570570
*CustomObjectsApi* | [**list_cluster_custom_object**](docs/CustomObjectsApi.md#list_cluster_custom_object) | **GET** /apis/{group}/{version}/{plural} |
571-
*CustomObjectsApi* | [**list_custom_object_for_all_namespaces**](docs/CustomObjectsApi.md#list_custom_object_for_all_namespaces) | **GET** /apis/{group}/{version}/{plural}#‎ |
571+
*CustomObjectsApi* | [**list_custom_object_for_all_namespaces**](docs/CustomObjectsApi.md#list_custom_object_for_all_namespaces) | **GET** /apis/{group}/{version}/{resource_plural} |
572572
*CustomObjectsApi* | [**list_namespaced_custom_object**](docs/CustomObjectsApi.md#list_namespaced_custom_object) | **GET** /apis/{group}/{version}/namespaces/{namespace}/{plural} |
573573
*CustomObjectsApi* | [**patch_cluster_custom_object**](docs/CustomObjectsApi.md#patch_cluster_custom_object) | **PATCH** /apis/{group}/{version}/{plural}/{name} |
574574
*CustomObjectsApi* | [**patch_cluster_custom_object_scale**](docs/CustomObjectsApi.md#patch_cluster_custom_object_scale) | **PATCH** /apis/{group}/{version}/{plural}/{name}/scale |

kubernetes_asyncio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__project__ = 'kubernetes_asyncio'
1616
# The version is auto-updated. Please do not edit.
17-
__version__ = "32.0.0"
17+
__version__ = "32.3.0"
1818

1919
import kubernetes_asyncio.client
2020
import kubernetes_asyncio.config

kubernetes_asyncio/client/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
88
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
99
10-
The version of the OpenAPI document: v1.32.0
10+
The version of the OpenAPI document: v1.32.3
1111
Generated by: https://openapi-generator.tech
1212
"""
1313

1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "32.0.0"
17+
__version__ = "32.3.0"
1818

1919
# import apis into sdk package
2020
from kubernetes_asyncio.client.api.well_known_api import WellKnownApi

kubernetes_asyncio/client/api/admissionregistration_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/admissionregistration_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/admissionregistration_v1alpha1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/admissionregistration_v1beta1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apiextensions_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apiextensions_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apiregistration_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apiregistration_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apis_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apps_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/apps_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/authentication_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/authentication_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/authentication_v1beta1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/authorization_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/authorization_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/autoscaling_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/autoscaling_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/autoscaling_v2_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/batch_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77
8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/batch_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/certificates_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/certificates_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/certificates_v1alpha1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/coordination_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/coordination_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/coordination_v1alpha2_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/core_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

kubernetes_asyncio/client/api/core_v1_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
77

8-
The version of the OpenAPI document: v1.32.0
8+
The version of the OpenAPI document: v1.32.3
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)