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

Remove useless snippets #256

Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command_group(
"relay",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Relay Service namespaces, WCF relays, hybrid connections, and rules.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command_group(
"relay hyco",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Relay Service Hybrid Connection and Authorization Rule.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command(
"relay hyco create",
)
class Create(AAZCommand):
"""Create the Relay Service Hybrid Connection.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command(
"relay hyco show",
)
class Show(AAZCommand):
"""Shows the Relay Service Hybrid Connection Details.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command_group(
"relay hyco authorization-rule",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Relay Service Hybrid Connection Authorization Rule.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command(
"relay hyco authorization-rule create",
)
class Create(AAZCommand):
"""Create Authorization Rule for given Relay Service Hybrid Connection.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command_group(
"relay hyco authorization-rule keys",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Authorization Rule keys for Relay Service Hybrid Connection.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command(
"relay hyco authorization-rule keys list",
)
class List(AAZCommand):
"""List the keys and connection strings of Authorization Rule for Relay Service Hybrid Connection.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command_group(
"relay namespace",
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Relay Service Namespace.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@
from azure.cli.core.aaz import *


@register_command(
"relay namespace create",
)
class Create(AAZCommand):
"""Create a Relay Service Namespace.

Expand Down
Loading