102
102
# pylint: disable=too-many-statements
103
103
def load_build_commands (self , _ ):
104
104
with self .command_group ('pipelines' , command_type = pipelineCreateOps ) as g :
105
- g .command ('create' , 'pipeline_create' , table_transformer = transform_pipeline_or_run_table_output ,
106
- is_preview = True )
107
- g .command ('update' , 'pipeline_update' , table_transformer = transform_pipeline_table_output , is_preview = True )
105
+ g .command ('create' , 'pipeline_create' , table_transformer = transform_pipeline_or_run_table_output )
106
+ g .command ('update' , 'pipeline_update' , table_transformer = transform_pipeline_table_output )
108
107
109
108
with self .command_group ('pipelines' , command_type = pipelinesOps ) as g :
110
- g .command ('list' , 'pipeline_list' , table_transformer = transform_pipelines_table_output , is_preview = True )
111
- g .show_command ('show' , 'pipeline_show' , table_transformer = transform_pipeline_table_output , is_preview = True )
112
- g .command ('delete' , 'pipeline_delete' , confirmation = 'Are you sure you want to delete this pipeline?' ,
113
- is_preview = True )
114
- g .command ('run' , 'pipeline_run' , table_transformer = transform_pipeline_run_table_output , is_preview = True )
109
+ g .command ('list' , 'pipeline_list' , table_transformer = transform_pipelines_table_output )
110
+ g .show_command ('show' , 'pipeline_show' , table_transformer = transform_pipeline_table_output )
111
+ g .command ('delete' , 'pipeline_delete' , confirmation = 'Are you sure you want to delete this pipeline?' )
112
+ g .command ('run' , 'pipeline_run' , table_transformer = transform_pipeline_run_table_output )
115
113
116
114
with self .command_group ('pipelines build' , command_type = buildOps ) as g :
117
115
# basic build commands
@@ -141,33 +139,33 @@ def load_build_commands(self, _):
141
139
g .command ('list' , 'release_definition_list' , table_transformer = transform_release_definitions_table_output )
142
140
g .show_command ('show' , 'release_definition_show' , table_transformer = transform_release_definition_table_output )
143
141
144
- with self .command_group ('pipelines runs artifact' , command_type = pipelineRunArtifactsOps , is_preview = True ) as g :
142
+ with self .command_group ('pipelines runs artifact' , command_type = pipelineRunArtifactsOps ) as g :
145
143
g .command ('download' , 'run_artifact_download' )
146
144
g .command ('list' , 'run_artifact_list' , table_transformer = transform_runs_artifact_table_output )
147
145
g .command ('upload' , 'run_artifact_upload' )
148
146
149
- with self .command_group ('pipelines runs tag' , command_type = pipelinesRunOps , is_preview = True ) as g :
147
+ with self .command_group ('pipelines runs tag' , command_type = pipelinesRunOps ) as g :
150
148
g .command ('add' , 'pipeline_run_add_tag' , table_transformer = transform_build_tags_output )
151
149
g .command ('list' , 'pipeline_run_get_tags' , table_transformer = transform_build_tags_output )
152
150
g .command ('delete' , 'pipeline_run_delete_tag' , table_transformer = transform_build_tags_output )
153
151
154
- with self .command_group ('pipelines runs' , command_type = pipelinesRunOps , is_preview = True ) as g :
152
+ with self .command_group ('pipelines runs' , command_type = pipelinesRunOps ) as g :
155
153
g .command ('list' , 'pipeline_run_list' , table_transformer = transform_pipeline_runs_table_output )
156
154
g .show_command ('show' , 'pipeline_run_show' , table_transformer = transform_pipeline_run_table_output )
157
155
158
- with self .command_group ('pipelines pool' , command_type = pipelineAgentPoolQueueOps , is_preview = True ) as g :
156
+ with self .command_group ('pipelines pool' , command_type = pipelineAgentPoolQueueOps ) as g :
159
157
g .command ('list' , 'list_pools' , table_transformer = transform_pipelines_pools_table_output )
160
158
g .show_command ('show' , 'show_pool' , table_transformer = transform_pipelines_pool_table_output )
161
159
162
- with self .command_group ('pipelines agent' , command_type = pipelineAgentPoolQueueOps , is_preview = True ) as g :
160
+ with self .command_group ('pipelines agent' , command_type = pipelineAgentPoolQueueOps ) as g :
163
161
g .command ('list' , 'list_agents' , table_transformer = transform_pipelines_agents_table_output )
164
162
g .show_command ('show' , 'show_agent' , table_transformer = transform_pipelines_agent_table_output )
165
163
166
- with self .command_group ('pipelines queue' , command_type = pipelineAgentPoolQueueOps , is_preview = True ) as g :
164
+ with self .command_group ('pipelines queue' , command_type = pipelineAgentPoolQueueOps ) as g :
167
165
g .command ('list' , 'list_queues' , table_transformer = transform_pipelines_queues_table_output )
168
166
g .show_command ('show' , 'show_queue' , table_transformer = transform_pipelines_queue_table_output )
169
167
170
- with self .command_group ('pipelines variable-group' , command_type = pipelineVariableGroupOps , is_preview = True ) as g :
168
+ with self .command_group ('pipelines variable-group' , command_type = pipelineVariableGroupOps ) as g :
171
169
g .command ('create' , 'variable_group_create' , table_transformer = transform_pipelines_variable_group_table_output )
172
170
g .show_command ('show' , 'variable_group_show' , table_transformer = transform_pipelines_variable_group_table_output )
173
171
g .command ('list' , 'variable_group_list' , table_transformer = transform_pipelines_variable_groups_table_output )
@@ -185,14 +183,14 @@ def load_build_commands(self, _):
185
183
g .command ('delete' , 'variable_group_variable_delete' ,
186
184
confirmation = 'Are you sure you want to delete this variable?' )
187
185
188
- with self .command_group ('pipelines variable' , command_type = pipelineVariablesOps , is_preview = True ) as g :
186
+ with self .command_group ('pipelines variable' , command_type = pipelineVariablesOps ) as g :
189
187
g .command ('create' , 'pipeline_variable_add' , table_transformer = transform_pipelines_variables_table_output )
190
188
g .command ('update' , 'pipeline_variable_update' , table_transformer = transform_pipelines_variables_table_output )
191
189
g .command ('list' , 'pipeline_variable_list' , table_transformer = transform_pipelines_variables_table_output )
192
190
g .command ('delete' , 'pipeline_variable_delete' ,
193
191
confirmation = 'Are you sure you want to delete this variable?' )
194
192
195
- with self .command_group ('pipelines folder' , command_type = pipelineFoldersOps , is_preview = True ) as g :
193
+ with self .command_group ('pipelines folder' , command_type = pipelineFoldersOps ) as g :
196
194
g .command ('create' , 'pipeline_folder_create' , table_transformer = transform_pipelines_folder_table_output )
197
195
g .command ('delete' , 'pipeline_folder_delete' , table_transformer = transform_pipelines_folder_table_output ,
198
196
confirmation = 'This will delete all pipelines in this folder. '
0 commit comments