Skip to content

Commit 4f84d6a

Browse files
committed
feat: update vke api
1 parent 6ddf6e8 commit 4f84d6a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

volcenginesdkvke/models/list_tags_for_resources_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def resource_type(self, resource_type):
158158
:param resource_type: The resource_type of this ListTagsForResourcesRequest. # noqa: E501
159159
:type: str
160160
"""
161-
allowed_values = ["Cluster", "NodePool"] # noqa: E501
161+
allowed_values = ["BareMachine", "Cluster", "NodePool"] # noqa: E501
162162
if (self._configuration.client_side_validation and
163163
resource_type not in allowed_values):
164164
raise ValueError(

volcenginesdkvke/models/log_setup_for_create_cluster_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def log_type(self, log_type):
122122
:param log_type: The log_type of this LogSetupForCreateClusterInput. # noqa: E501
123123
:type: str
124124
"""
125-
allowed_values = ["Audit"] # noqa: E501
125+
allowed_values = ["Audit", "CloudControllerManager", "Etcd", "KubeApiServer", "KubeControllerManager", "KubeScheduler"] # noqa: E501
126126
if (self._configuration.client_side_validation and
127127
log_type not in allowed_values):
128128
raise ValueError(

volcenginesdkvke/models/log_setup_for_update_cluster_config_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def log_type(self, log_type):
122122
:param log_type: The log_type of this LogSetupForUpdateClusterConfigInput. # noqa: E501
123123
:type: str
124124
"""
125-
allowed_values = ["Audit"] # noqa: E501
125+
allowed_values = ["Audit", "CloudControllerManager", "Etcd", "KubeApiServer", "KubeControllerManager", "KubeScheduler"] # noqa: E501
126126
if (self._configuration.client_side_validation and
127127
log_type not in allowed_values):
128128
raise ValueError(

volcenginesdkvke/models/tag_resources_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def resource_type(self, resource_type):
101101
:param resource_type: The resource_type of this TagResourcesRequest. # noqa: E501
102102
:type: str
103103
"""
104-
allowed_values = ["Cluster", "NodePool"] # noqa: E501
104+
allowed_values = ["BareMachine", "Cluster", "NodePool"] # noqa: E501
105105
if (self._configuration.client_side_validation and
106106
resource_type not in allowed_values):
107107
raise ValueError(

volcenginesdkvke/models/untag_resources_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def resource_type(self, resource_type):
101101
:param resource_type: The resource_type of this UntagResourcesRequest. # noqa: E501
102102
:type: str
103103
"""
104-
allowed_values = ["Cluster", "NodePool"] # noqa: E501
104+
allowed_values = ["BareMachine", "Cluster", "NodePool"] # noqa: E501
105105
if (self._configuration.client_side_validation and
106106
resource_type not in allowed_values):
107107
raise ValueError(

0 commit comments

Comments
 (0)