@@ -105,12 +105,12 @@ def load_team_commands(self, _):
105
105
with self .command_group ('devops project' , command_type = projectOps ) as g :
106
106
g .command ('create' , 'create_project' , table_transformer = transform_project_table_output )
107
107
g .command ('delete' , 'delete_project' , confirmation = 'Are you sure you want to delete this project?' )
108
- g .command ('show' , 'show_project' , table_transformer = transform_project_table_output )
108
+ g .show_command ('show' , 'show_project' , table_transformer = transform_project_table_output )
109
109
g .command ('list' , 'list_projects' , table_transformer = transform_projects_table_output )
110
110
111
111
with self .command_group ('devops service-endpoint' , command_type = service_endpointOps ) as g :
112
112
g .command ('list' , 'list_service_endpoints' , table_transformer = transform_service_endpoints_table_output )
113
- g .command ('show' , 'show_service_endpoint' ) # no table transform because type is not well defined
113
+ g .show_command ('show' , 'show_service_endpoint' ) # no table transform because type is not well defined
114
114
g .command ('create' , 'create_service_endpoint' , is_preview = True )
115
115
g .command ('update' , 'update_service_endpoint' , is_preview = True ,
116
116
table_transformer = transform_authorized_service_endpoint_table_output )
@@ -122,7 +122,7 @@ def load_team_commands(self, _):
122
122
with self .command_group ('devops team' , command_type = teamOps ) as g :
123
123
g .command ('create' , 'create_team' , table_transformer = transform_team_table_output )
124
124
g .command ('delete' , 'delete_team' , confirmation = 'Are you sure you want to delete this team?' )
125
- g .command ('show' , 'get_team' , table_transformer = transform_team_table_output )
125
+ g .show_command ('show' , 'get_team' , table_transformer = transform_team_table_output )
126
126
g .command ('list' , 'get_teams' , table_transformer = transform_teams_table_output )
127
127
g .command ('list-member' , 'get_team_members' , table_transformer = transform_team_members_table_output )
128
128
g .command ('update' , 'update_team' , table_transformer = transform_team_table_output )
@@ -132,7 +132,7 @@ def load_team_commands(self, _):
132
132
133
133
with self .command_group ('devops user' , command_type = userOps ) as g :
134
134
g .command ('list' , 'get_user_entitlements' , table_transformer = transform_users_table_output )
135
- g .command ('show' , 'get_user_entitlement' , table_transformer = transform_user_table_output )
135
+ g .show_command ('show' , 'get_user_entitlement' , table_transformer = transform_user_table_output )
136
136
g .command ('remove' , 'delete_user_entitlement' , confirmation = 'Are you sure you want to remove this user?' )
137
137
g .command ('update' , 'update_user_entitlement' , table_transformer = transform_user_table_output )
138
138
g .command ('add' , 'add_user_entitlement' , table_transformer = transform_user_table_output )
@@ -141,14 +141,14 @@ def load_team_commands(self, _):
141
141
g .command ('list' , 'list_extensions' , table_transformer = transform_extensions_table_output )
142
142
g .command ('uninstall' , 'uninstall_extension' , confirmation = 'Are you sure you want to uninstall this extension?' )
143
143
g .command ('install' , 'install_extension' , table_transformer = transform_extension_table_output )
144
- g .command ('show' , 'get_extension' , table_transformer = transform_extension_table_output )
144
+ g .show_command ('show' , 'get_extension' , table_transformer = transform_extension_table_output )
145
145
g .command ('enable' , 'enable_extension' , table_transformer = transform_extension_table_output )
146
146
g .command ('disable' , 'disable_extension' , table_transformer = transform_extension_table_output )
147
147
g .command ('search' , 'search_extensions' , table_transformer = transform_extension_search_results_table_output )
148
148
149
149
with self .command_group ('devops security group' , command_type = security_groupOps ) as g :
150
150
g .command ('list' , 'list_groups' , table_transformer = transform_groups_table_output )
151
- g .command ('show' , 'get_group' , table_transformer = transform_group_table_output )
151
+ g .show_command ('show' , 'get_group' , table_transformer = transform_group_table_output )
152
152
g .command ('update' , 'update_group' , table_transformer = transform_group_table_output )
153
153
g .command ('create' , 'create_group' , table_transformer = transform_group_table_output )
154
154
g .command ('delete' , 'delete_group' , confirmation = 'Are you sure you want to delete this group?' )
@@ -164,22 +164,22 @@ def load_team_commands(self, _):
164
164
g .command ('reset-all' , 'reset_all_permissions' ,
165
165
confirmation = 'Are you sure you want to reset all explicit permissions for this user/group and token?' )
166
166
g .command ('reset' , 'reset_permissions' , table_transformer = transform_resolve_permission_bits )
167
- g .command ('show' , 'show_permissions' , table_transformer = transform_resolve_permission_bits )
167
+ g .show_command ('show' , 'show_permissions' , table_transformer = transform_resolve_permission_bits )
168
168
169
169
with self .command_group ('devops security permission namespace' , command_type = security_permissionOps ) as g :
170
170
g .command ('list' , 'list_namespaces' , table_transformer = transform_namespaces_table_output )
171
- g .command ('show' , 'show_namespace' , table_transformer = transform_namespace_table_output )
171
+ g .show_command ('show' , 'show_namespace' , table_transformer = transform_namespace_table_output )
172
172
173
173
with self .command_group ('devops wiki' , command_type = wikiOps ) as g :
174
174
g .command ('create' , 'create_wiki' , table_transformer = transform_wiki_table_output )
175
175
g .command ('list' , 'list_wiki' , table_transformer = transform_wikis_table_output )
176
- g .command ('show' , 'show_wiki' , table_transformer = transform_wiki_table_output )
176
+ g .show_command ('show' , 'show_wiki' , table_transformer = transform_wiki_table_output )
177
177
g .command ('delete' , 'delete_wiki' , table_transformer = transform_wiki_table_output ,
178
178
confirmation = 'Are you sure you want to delete this wiki?' )
179
179
180
180
with self .command_group ('devops wiki page' , command_type = wikiOps ) as g :
181
181
g .command ('create' , 'add_page' , table_transformer = transform_wiki_page_table_output )
182
182
g .command ('update' , 'update_page' , table_transformer = transform_wiki_page_table_output )
183
- g .command ('show' , 'get_page' , table_transformer = transform_wiki_page_table_output )
183
+ g .show_command ('show' , 'get_page' , table_transformer = transform_wiki_page_table_output )
184
184
g .command ('delete' , 'delete_page' ,
185
185
confirmation = 'Are you sure you want to delete this wiki page?' )
0 commit comments