File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,6 @@ def describe_uhost_instance(
346346
347347 - **ProjectId** (str) - (Config) 项目ID。不填写为默认项目,子帐号必须填写。 请参考 `GetProjectList接口 <https://docs.ucloud.cn/api/summary/get_project_list>`_
348348 - **Region** (str) - (Config) 地域。 参见 `地域和可用区列表 <https://docs.ucloud.cn/api/summary/regionlist>`_
349- - **Zone** (str) - (Required) 可用区。参见 `可用区列表 <https://docs.ucloud.cn/api/summary/regionlist>`_
350349 - **IsolationGroup** (str) - 硬件隔离组id。通过硬件隔离组筛选主机。
351350 - **Limit** (int) - 返回数据长度,默认为20,最大100
352351 - **Offset** (int) - 列表起始位置偏移量,默认为0
@@ -355,6 +354,7 @@ def describe_uhost_instance(
355354 - **UDiskIdForAttachment** (str) - 要挂载的云盘id,过滤返回能被UDiskId挂载的云主机。目前主要针对rssd云盘使用
356355 - **UHostIds** (list) - 【数组】UHost主机的资源ID,例如UHostIds.0代表希望获取信息 的主机1,UHostIds.1代表主机2。 如果不传入,则返回当前Region 所有符合条件的UHost实例。
357356 - **VPCId** (str) - vpc id。通过VPC筛选主机。北京一地域无效。
357+ - **Zone** (str) - 可用区。参见 `可用区列表 <https://docs.ucloud.cn/api/summary/regionlist>`_
358358
359359 **Response**
360360
Original file line number Diff line number Diff line change @@ -401,7 +401,7 @@ class DescribeUHostInstanceRequestSchema(schema.RequestSchema):
401401 ),
402402 "UHostIds" : fields .List (fields .Str ()),
403403 "VPCId" : fields .Str (required = False , dump_to = "VPCId" ),
404- "Zone" : fields .Str (required = True , dump_to = "Zone" ),
404+ "Zone" : fields .Str (required = False , dump_to = "Zone" ),
405405 }
406406
407407
You can’t perform that action at this time.
0 commit comments