Skip to content

Commit d0439ed

Browse files
committed
docs: remove optional
1 parent 7d19674 commit d0439ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/openstack_mcp_server/tools/compute_tools.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ def update_server(
185185
Update a Compute server's name, hostname, or description.
186186
187187
:param id: The UUID of the server.
188-
:param accessIPv4: (Optional) IPv4 address that should be used to access this server.
189-
:param accessIPv6: (Optional) IPv6 address that should be used to access this server.
190-
:param name: (Optional) The server name.
191-
:param hostname: (Optional) The hostname to configure for the instance in the metadata service.
192-
:param description: (Optional) A free form description of the server.
188+
:param accessIPv4: IPv4 address that should be used to access this server.
189+
:param accessIPv6: IPv6 address that should be used to access this server.
190+
:param name: The server name.
191+
:param hostname: The hostname to configure for the instance in the metadata service.
192+
:param description: A free form description of the server.
193193
:return: The updated Server object.
194194
"""
195195
conn = get_openstack_conn()

0 commit comments

Comments
 (0)