Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Breadth Coverage] Support Databox in Azure CLI cmdlets #1344

Merged
merged 8 commits into from
Apr 7, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add experimental tag
  • Loading branch information
jsntcy committed Apr 7, 2020
commit bf59f7770c3a800e8eabbd50d7d995eaa3527c35
4 changes: 2 additions & 2 deletions src/databox/azext_databox/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.0.67"
"azext.isExperimental": true,
"azext.minCliCoreVersion": "2.3.1"
}
2 changes: 1 addition & 1 deletion src/databox/azext_databox/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def load_command_table(self, _):
databox_jobs = CliCommandType(
operations_tmpl='azext_databox.vendored_sdks.databox.operations._jobs_operations#JobsOperations.{}',
client_factory=cf_jobs)
with self.command_group('databox job', databox_jobs, client_factory=cf_jobs) as g:
with self.command_group('databox job', databox_jobs, client_factory=cf_jobs, is_experimental=True) as g:
g.custom_command('create', 'create_databox_job', validator=validate_create_input_parameters)
g.custom_command('update', 'update_databox_job')
g.custom_command('delete', 'delete_databox_job', confirmation=True)
Expand Down