diff --git a/arrow/commands/cannedcomments/addComment.py b/arrow/commands/cannedcomments/addComment.py deleted file mode 100644 index e6c68768..00000000 --- a/arrow/commands/cannedcomments/addComment.py +++ /dev/null @@ -1,22 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('addComment') -@click.argument("comment") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, comment, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.addComment(comment, metadata=metadata) diff --git a/arrow/commands/cannedcomments/deleteComment.py b/arrow/commands/cannedcomments/deleteComment.py deleted file mode 100644 index 2bf3d8e1..00000000 --- a/arrow/commands/cannedcomments/deleteComment.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('deleteComment') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.deleteComment(id_number) diff --git a/arrow/commands/cannedcomments/findAllComments.py b/arrow/commands/cannedcomments/findAllComments.py deleted file mode 100644 index 2e8a82f6..00000000 --- a/arrow/commands/cannedcomments/findAllComments.py +++ /dev/null @@ -1,17 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findAllComments') -@pass_context -@custom_exception -@dict_output -def cli(ctx): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.findAllComments() diff --git a/arrow/commands/cannedcomments/findCommentById.py b/arrow/commands/cannedcomments/findCommentById.py deleted file mode 100644 index d37ac8d4..00000000 --- a/arrow/commands/cannedcomments/findCommentById.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findCommentById') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.findCommentById(id_number) diff --git a/arrow/commands/cannedcomments/findCommentByValue.py b/arrow/commands/cannedcomments/findCommentByValue.py deleted file mode 100644 index 2976ed1c..00000000 --- a/arrow/commands/cannedcomments/findCommentByValue.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findCommentByValue') -@click.argument("value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.findCommentByValue(value) diff --git a/arrow/commands/cannedcomments/updateComment.py b/arrow/commands/cannedcomments/updateComment.py deleted file mode 100644 index cb2773a4..00000000 --- a/arrow/commands/cannedcomments/updateComment.py +++ /dev/null @@ -1,23 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('updateComment') -@click.argument("id_number") -@click.argument("new_value") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number, new_value, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedcomments.updateComment(id_number, new_value, metadata=metadata) diff --git a/arrow/commands/cannedkeys/addKey.py b/arrow/commands/cannedkeys/addKey.py deleted file mode 100644 index 8d2844b1..00000000 --- a/arrow/commands/cannedkeys/addKey.py +++ /dev/null @@ -1,22 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('addKey') -@click.argument("key") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, key, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.addKey(key, metadata=metadata) diff --git a/arrow/commands/cannedkeys/deleteKey.py b/arrow/commands/cannedkeys/deleteKey.py deleted file mode 100644 index 71621f84..00000000 --- a/arrow/commands/cannedkeys/deleteKey.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('deleteKey') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.deleteKey(id_number) diff --git a/arrow/commands/cannedkeys/findAllKeys.py b/arrow/commands/cannedkeys/findAllKeys.py deleted file mode 100644 index 0c47a450..00000000 --- a/arrow/commands/cannedkeys/findAllKeys.py +++ /dev/null @@ -1,17 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findAllKeys') -@pass_context -@custom_exception -@dict_output -def cli(ctx): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.findAllKeys() diff --git a/arrow/commands/cannedkeys/findKeyById.py b/arrow/commands/cannedkeys/findKeyById.py deleted file mode 100644 index 6da71083..00000000 --- a/arrow/commands/cannedkeys/findKeyById.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findKeyById') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.findKeyById(id_number) diff --git a/arrow/commands/cannedkeys/findKeyByValue.py b/arrow/commands/cannedkeys/findKeyByValue.py deleted file mode 100644 index f69867a0..00000000 --- a/arrow/commands/cannedkeys/findKeyByValue.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findKeyByValue') -@click.argument("value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.findKeyByValue(value) diff --git a/arrow/commands/cannedkeys/updateKey.py b/arrow/commands/cannedkeys/updateKey.py deleted file mode 100644 index d12ff47e..00000000 --- a/arrow/commands/cannedkeys/updateKey.py +++ /dev/null @@ -1,23 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('updateKey') -@click.argument("id_number") -@click.argument("new_key") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number, new_key, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedkeys.updateKey(id_number, new_key, metadata=metadata) diff --git a/arrow/commands/cannedvalues/addValue.py b/arrow/commands/cannedvalues/addValue.py deleted file mode 100644 index 01229e81..00000000 --- a/arrow/commands/cannedvalues/addValue.py +++ /dev/null @@ -1,22 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('addValue') -@click.argument("value") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, value, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.addValue(value, metadata=metadata) diff --git a/arrow/commands/cannedvalues/deleteValue.py b/arrow/commands/cannedvalues/deleteValue.py deleted file mode 100644 index ee8b51f1..00000000 --- a/arrow/commands/cannedvalues/deleteValue.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('deleteValue') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.deleteValue(id_number) diff --git a/arrow/commands/cannedvalues/findAllValues.py b/arrow/commands/cannedvalues/findAllValues.py deleted file mode 100644 index f7119ee2..00000000 --- a/arrow/commands/cannedvalues/findAllValues.py +++ /dev/null @@ -1,17 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findAllValues') -@pass_context -@custom_exception -@dict_output -def cli(ctx): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.findAllValues() diff --git a/arrow/commands/cannedvalues/findValueById.py b/arrow/commands/cannedvalues/findValueById.py deleted file mode 100644 index baf03e01..00000000 --- a/arrow/commands/cannedvalues/findValueById.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findValueById') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.findValueById(id_number) diff --git a/arrow/commands/cannedvalues/findValueByValue.py b/arrow/commands/cannedvalues/findValueByValue.py deleted file mode 100644 index 26c45dbf..00000000 --- a/arrow/commands/cannedvalues/findValueByValue.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findValueByValue') -@click.argument("value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.findValueByValue(value) diff --git a/arrow/commands/cannedvalues/updateValue.py b/arrow/commands/cannedvalues/updateValue.py deleted file mode 100644 index f876da0b..00000000 --- a/arrow/commands/cannedvalues/updateValue.py +++ /dev/null @@ -1,23 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('updateValue') -@click.argument("id_number") -@click.argument("new_value") -@click.option( - "--metadata", - help="" -) -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number, new_value, metadata=""): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.cannedvalues.updateValue(id_number, new_value, metadata=metadata) diff --git a/arrow/commands/cmd_cannedcomments.py b/arrow/commands/cmd_cannedcomments.py index c3620b91..d1f43dcb 100644 --- a/arrow/commands/cmd_cannedcomments.py +++ b/arrow/commands/cmd_cannedcomments.py @@ -1,14 +1,8 @@ import click -from arrow.commands.cannedcomments.addComment import cli as addComment from arrow.commands.cannedcomments.add_comment import cli as add_comment -from arrow.commands.cannedcomments.deleteComment import cli as deleteComment from arrow.commands.cannedcomments.delete_comment import cli as delete_comment -from arrow.commands.cannedcomments.findAllComments import cli as findAllComments -from arrow.commands.cannedcomments.findCommentById import cli as findCommentById -from arrow.commands.cannedcomments.findCommentByValue import cli as findCommentByValue from arrow.commands.cannedcomments.get_comments import cli as get_comments from arrow.commands.cannedcomments.show_comment import cli as show_comment -from arrow.commands.cannedcomments.updateComment import cli as updateComment from arrow.commands.cannedcomments.update_comment import cli as update_comment @@ -17,14 +11,8 @@ def cli(): pass -cli.add_command(addComment) cli.add_command(add_comment) -cli.add_command(deleteComment) cli.add_command(delete_comment) -cli.add_command(findAllComments) -cli.add_command(findCommentById) -cli.add_command(findCommentByValue) cli.add_command(get_comments) cli.add_command(show_comment) -cli.add_command(updateComment) cli.add_command(update_comment) diff --git a/arrow/commands/cmd_cannedkeys.py b/arrow/commands/cmd_cannedkeys.py index 504580e5..f953b502 100644 --- a/arrow/commands/cmd_cannedkeys.py +++ b/arrow/commands/cmd_cannedkeys.py @@ -1,14 +1,8 @@ import click -from arrow.commands.cannedkeys.addKey import cli as addKey from arrow.commands.cannedkeys.add_key import cli as add_key -from arrow.commands.cannedkeys.deleteKey import cli as deleteKey from arrow.commands.cannedkeys.delete_key import cli as delete_key -from arrow.commands.cannedkeys.findAllKeys import cli as findAllKeys -from arrow.commands.cannedkeys.findKeyById import cli as findKeyById -from arrow.commands.cannedkeys.findKeyByValue import cli as findKeyByValue from arrow.commands.cannedkeys.get_keys import cli as get_keys from arrow.commands.cannedkeys.show_key import cli as show_key -from arrow.commands.cannedkeys.updateKey import cli as updateKey from arrow.commands.cannedkeys.update_key import cli as update_key @@ -17,14 +11,8 @@ def cli(): pass -cli.add_command(addKey) cli.add_command(add_key) -cli.add_command(deleteKey) cli.add_command(delete_key) -cli.add_command(findAllKeys) -cli.add_command(findKeyById) -cli.add_command(findKeyByValue) cli.add_command(get_keys) cli.add_command(show_key) -cli.add_command(updateKey) cli.add_command(update_key) diff --git a/arrow/commands/cmd_cannedvalues.py b/arrow/commands/cmd_cannedvalues.py index 1a04e919..5da36043 100644 --- a/arrow/commands/cmd_cannedvalues.py +++ b/arrow/commands/cmd_cannedvalues.py @@ -1,14 +1,8 @@ import click -from arrow.commands.cannedvalues.addValue import cli as addValue from arrow.commands.cannedvalues.add_value import cli as add_value -from arrow.commands.cannedvalues.deleteValue import cli as deleteValue from arrow.commands.cannedvalues.delete_value import cli as delete_value -from arrow.commands.cannedvalues.findAllValues import cli as findAllValues -from arrow.commands.cannedvalues.findValueById import cli as findValueById -from arrow.commands.cannedvalues.findValueByValue import cli as findValueByValue from arrow.commands.cannedvalues.get_values import cli as get_values from arrow.commands.cannedvalues.show_value import cli as show_value -from arrow.commands.cannedvalues.updateValue import cli as updateValue from arrow.commands.cannedvalues.update_value import cli as update_value @@ -17,14 +11,8 @@ def cli(): pass -cli.add_command(addValue) cli.add_command(add_value) -cli.add_command(deleteValue) cli.add_command(delete_value) -cli.add_command(findAllValues) -cli.add_command(findValueById) -cli.add_command(findValueByValue) cli.add_command(get_values) cli.add_command(show_value) -cli.add_command(updateValue) cli.add_command(update_value) diff --git a/arrow/commands/cmd_status.py b/arrow/commands/cmd_status.py index 9c0d7f7c..2a0a4e46 100644 --- a/arrow/commands/cmd_status.py +++ b/arrow/commands/cmd_status.py @@ -1,14 +1,8 @@ import click -from arrow.commands.status.addStatus import cli as addStatus from arrow.commands.status.add_status import cli as add_status -from arrow.commands.status.deleteStatus import cli as deleteStatus from arrow.commands.status.delete_status import cli as delete_status -from arrow.commands.status.findAllStatuses import cli as findAllStatuses -from arrow.commands.status.findStatusById import cli as findStatusById -from arrow.commands.status.findStatusByValue import cli as findStatusByValue from arrow.commands.status.get_statuses import cli as get_statuses from arrow.commands.status.show_status import cli as show_status -from arrow.commands.status.updateStatus import cli as updateStatus from arrow.commands.status.update_status import cli as update_status @@ -17,14 +11,8 @@ def cli(): pass -cli.add_command(addStatus) cli.add_command(add_status) -cli.add_command(deleteStatus) cli.add_command(delete_status) -cli.add_command(findAllStatuses) -cli.add_command(findStatusById) -cli.add_command(findStatusByValue) cli.add_command(get_statuses) cli.add_command(show_status) -cli.add_command(updateStatus) cli.add_command(update_status) diff --git a/arrow/commands/status/addStatus.py b/arrow/commands/status/addStatus.py deleted file mode 100644 index 04735f6f..00000000 --- a/arrow/commands/status/addStatus.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('addStatus') -@click.argument("value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.addStatus(value) diff --git a/arrow/commands/status/deleteStatus.py b/arrow/commands/status/deleteStatus.py deleted file mode 100644 index 11b5759b..00000000 --- a/arrow/commands/status/deleteStatus.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('deleteStatus') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.deleteStatus(id_number) diff --git a/arrow/commands/status/findAllStatuses.py b/arrow/commands/status/findAllStatuses.py deleted file mode 100644 index 2377f454..00000000 --- a/arrow/commands/status/findAllStatuses.py +++ /dev/null @@ -1,17 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findAllStatuses') -@pass_context -@custom_exception -@dict_output -def cli(ctx): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.findAllStatuses() diff --git a/arrow/commands/status/findStatusById.py b/arrow/commands/status/findStatusById.py deleted file mode 100644 index d5ac151a..00000000 --- a/arrow/commands/status/findStatusById.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findStatusById') -@click.argument("id_number") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.findStatusById(id_number) diff --git a/arrow/commands/status/findStatusByValue.py b/arrow/commands/status/findStatusByValue.py deleted file mode 100644 index 6c454a00..00000000 --- a/arrow/commands/status/findStatusByValue.py +++ /dev/null @@ -1,18 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('findStatusByValue') -@click.argument("value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.findStatusByValue(value) diff --git a/arrow/commands/status/updateStatus.py b/arrow/commands/status/updateStatus.py deleted file mode 100644 index 84dc49b1..00000000 --- a/arrow/commands/status/updateStatus.py +++ /dev/null @@ -1,19 +0,0 @@ -import click -from arrow.cli import pass_context -from arrow.decorators import custom_exception, dict_output - - -@click.command('updateStatus') -@click.argument("id_number") -@click.argument("new_value") -@pass_context -@custom_exception -@dict_output -def cli(ctx, id_number, new_value): - """TODO: Undocumented - -Output: - - ??? - """ - return ctx.gi.status.updateStatus(id_number, new_value) diff --git a/docs/commands/cannedcomments.rst b/docs/commands/cannedcomments.rst index 22961854..b4c27591 100644 --- a/docs/commands/cannedcomments.rst +++ b/docs/commands/cannedcomments.rst @@ -5,30 +5,6 @@ This section is auto-generated from the help text for the arrow command ``cannedcomments``. -``addComment`` command ----------------------- - -**Usage**:: - - arrow cannedcomments addComment [OPTIONS] COMMENT - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``add_comment`` command ----------------------- @@ -53,29 +29,6 @@ Add a canned comment -h, --help Show this message and exit. -``deleteComment`` command -------------------------- - -**Usage**:: - - arrow cannedcomments deleteComment [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``delete_comment`` command -------------------------- @@ -99,75 +52,6 @@ Update a canned comment -h, --help Show this message and exit. -``findAllComments`` command ---------------------------- - -**Usage**:: - - arrow cannedcomments findAllComments [OPTIONS] - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findCommentById`` command ---------------------------- - -**Usage**:: - - arrow cannedcomments findCommentById [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findCommentByValue`` command ------------------------------- - -**Usage**:: - - arrow cannedcomments findCommentByValue [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``get_comments`` command ------------------------ @@ -214,30 +98,6 @@ Get a specific canned comment -h, --help Show this message and exit. -``updateComment`` command -------------------------- - -**Usage**:: - - arrow cannedcomments updateComment [OPTIONS] ID_NUMBER NEW_VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``update_comment`` command -------------------------- diff --git a/docs/commands/cannedkeys.rst b/docs/commands/cannedkeys.rst index e8a7bef8..9c737313 100644 --- a/docs/commands/cannedkeys.rst +++ b/docs/commands/cannedkeys.rst @@ -5,30 +5,6 @@ This section is auto-generated from the help text for the arrow command ``cannedkeys``. -``addKey`` command ------------------- - -**Usage**:: - - arrow cannedkeys addKey [OPTIONS] KEY - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``add_key`` command ------------------- @@ -53,29 +29,6 @@ Add a canned key -h, --help Show this message and exit. -``deleteKey`` command ---------------------- - -**Usage**:: - - arrow cannedkeys deleteKey [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``delete_key`` command ---------------------- @@ -99,75 +52,6 @@ Update a canned key -h, --help Show this message and exit. -``findAllKeys`` command ------------------------ - -**Usage**:: - - arrow cannedkeys findAllKeys [OPTIONS] - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findKeyById`` command ------------------------ - -**Usage**:: - - arrow cannedkeys findKeyById [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findKeyByValue`` command --------------------------- - -**Usage**:: - - arrow cannedkeys findKeyByValue [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``get_keys`` command -------------------- @@ -214,30 +98,6 @@ Get a specific canned key -h, --help Show this message and exit. -``updateKey`` command ---------------------- - -**Usage**:: - - arrow cannedkeys updateKey [OPTIONS] ID_NUMBER NEW_KEY - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``update_key`` command ---------------------- diff --git a/docs/commands/cannedvalues.rst b/docs/commands/cannedvalues.rst index a69a6860..794dd3e1 100644 --- a/docs/commands/cannedvalues.rst +++ b/docs/commands/cannedvalues.rst @@ -5,30 +5,6 @@ This section is auto-generated from the help text for the arrow command ``cannedvalues``. -``addValue`` command --------------------- - -**Usage**:: - - arrow cannedvalues addValue [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``add_value`` command --------------------- @@ -53,29 +29,6 @@ Add a canned value -h, --help Show this message and exit. -``deleteValue`` command ------------------------ - -**Usage**:: - - arrow cannedvalues deleteValue [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``delete_value`` command ------------------------ @@ -99,75 +52,6 @@ Update a canned value -h, --help Show this message and exit. -``findAllValues`` command -------------------------- - -**Usage**:: - - arrow cannedvalues findAllValues [OPTIONS] - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findValueById`` command -------------------------- - -**Usage**:: - - arrow cannedvalues findValueById [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findValueByValue`` command ----------------------------- - -**Usage**:: - - arrow cannedvalues findValueByValue [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``get_values`` command ---------------------- @@ -214,30 +98,6 @@ Get a specific canned value -h, --help Show this message and exit. -``updateValue`` command ------------------------ - -**Usage**:: - - arrow cannedvalues updateValue [OPTIONS] ID_NUMBER NEW_VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - --metadata TEXT - -h, --help Show this message and exit. - - ``update_value`` command ------------------------ diff --git a/docs/commands/status.rst b/docs/commands/status.rst index 6395f188..6a0e5a56 100644 --- a/docs/commands/status.rst +++ b/docs/commands/status.rst @@ -5,29 +5,6 @@ This section is auto-generated from the help text for the arrow command ``status``. -``addStatus`` command ---------------------- - -**Usage**:: - - arrow status addStatus [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``add_status`` command ---------------------- @@ -51,29 +28,6 @@ Add a status value -h, --help Show this message and exit. -``deleteStatus`` command ------------------------- - -**Usage**:: - - arrow status deleteStatus [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``delete_status`` command ------------------------- @@ -97,75 +51,6 @@ Delete a status -h, --help Show this message and exit. -``findAllStatuses`` command ---------------------------- - -**Usage**:: - - arrow status findAllStatuses [OPTIONS] - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findStatusById`` command --------------------------- - -**Usage**:: - - arrow status findStatusById [OPTIONS] ID_NUMBER - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - -``findStatusByValue`` command ------------------------------ - -**Usage**:: - - arrow status findStatusByValue [OPTIONS] VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``get_statuses`` command ------------------------ @@ -212,29 +97,6 @@ Get a specific status -h, --help Show this message and exit. -``updateStatus`` command ------------------------- - -**Usage**:: - - arrow status updateStatus [OPTIONS] ID_NUMBER NEW_VALUE - -**Help** - -TODO: Undocumented - - -**Output** - - - ??? - -**Options**:: - - - -h, --help Show this message and exit. - - ``update_status`` command -------------------------