4747 ExecutionMode ,
4848 Tag ,
4949 WorkspaceAddTagsOptions ,
50+ WorkspaceAssignSSHKeyOptions ,
5051 WorkspaceCreateOptions ,
5152 WorkspaceIncludeOpt ,
5253 WorkspaceListOptions ,
5657 WorkspaceRemoveTagsOptions ,
5758 WorkspaceTagListOptions ,
5859 WorkspaceUpdateOptions ,
59- WorkspaceAssignSSHKeyOptions ,
6060)
6161
6262
@@ -77,11 +77,15 @@ def main():
7777 parser .add_argument ("--workspace-id" , help = "Workspace ID for ID-based operations" )
7878
7979 # Core CRUD Operations
80- parser .add_argument ("--list" , action = "store_true" , help = "List workspaces in the organization" )
80+ parser .add_argument (
81+ "--list" , action = "store_true" , help = "List workspaces in the organization"
82+ )
8183 parser .add_argument ("--create" , action = "store_true" , help = "Create a new workspace" )
8284 parser .add_argument ("--delete" , action = "store_true" , help = "Delete the workspace" )
8385 parser .add_argument (
84- "--safe-delete" , action = "store_true" , help = "Safely delete the workspace, passed along with --delete"
86+ "--safe-delete" ,
87+ action = "store_true" ,
88+ help = "Safely delete the workspace, passed along with --delete" ,
8589 )
8690 parser .add_argument (
8791 "--update" , action = "store_true" , help = "Update workspace settings"
@@ -98,7 +102,7 @@ def main():
98102 parser .add_argument (
99103 "--remove-vcs" , action = "store_true" , help = "Remove VCS connection"
100104 )
101-
105+
102106 parser .add_argument ("--read" , action = "store_true" , help = "Read workspace details" )
103107 parser .add_argument (
104108 "--tag-ops" , action = "store_true" , help = "Test tag management operations"
0 commit comments