diff --git a/riocli/build/create.py b/riocli/build/create.py index 65a8459c..5da74e90 100644 --- a/riocli/build/create.py +++ b/riocli/build/create.py @@ -18,7 +18,7 @@ from riocli.config import new_client -@click.command('create') +@click.command('create', hidden=True) @click.option('--strategy', type=click.Choice(['Source', 'Docker']), default='Docker', help='Strategy for building the Source') @click.option('--branch', default='', help='Git Repository branch') diff --git a/riocli/device/create.py b/riocli/device/create.py index 9013a0de..146e8a26 100644 --- a/riocli/device/create.py +++ b/riocli/device/create.py @@ -19,7 +19,7 @@ from riocli.config import new_client -@click.command('create') +@click.command('create', hidden=True) @click.option('--description', type=str, help='Description of the device', default='') @click.option('--runtime', help='Runtime of the Device', multiple=True, type=click.Choice(['preinstalled', 'dockercompose'], case_sensitive=False)) diff --git a/riocli/network/create.py b/riocli/network/create.py index 4967d1cc..0e67774a 100644 --- a/riocli/network/create.py +++ b/riocli/network/create.py @@ -20,7 +20,7 @@ from riocli.network.routed_network import create_routed_network -@click.command('create') +@click.command('create', hidden=True) @click.argument('name', type=str) @click.option('--network', help='Type of Network', type=click.Choice(['routed', 'native']), default='routed') diff --git a/riocli/package/create.py b/riocli/package/create.py index f97fb2f6..07be2e50 100644 --- a/riocli/package/create.py +++ b/riocli/package/create.py @@ -20,7 +20,7 @@ from riocli.config import new_client -@click.command('create') +@click.command('create', hidden=True) @click.option('--manifest', type=click.File(mode='r', lazy=True), help='Path for the manifest file') @click.option('--format', 'format_type', default='json', diff --git a/riocli/secret/create.py b/riocli/secret/create.py index e1b9502c..3f5713e4 100644 --- a/riocli/secret/create.py +++ b/riocli/secret/create.py @@ -18,7 +18,7 @@ from riocli.secret.source_secret import create_source_secret -@click.command('create') +@click.command('create', hidden=True) @click.option('--secret-type', '-t', help='Type of Secret', type=click.Choice(['docker', 'source'])) @click.option('--username', type=str, help='Docker registry username for docker secret, Git username for source secret')