Skip to content
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
10 changes: 5 additions & 5 deletions src/azure-cli/azure/cli/command_modules/network/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,11 @@ def load_arguments(self, _):
with self.argument_context('network dns record-set soa') as c:
c.argument('host', options_list=['--host', '-t'], help='Host name.')
c.argument('email', options_list=['--email', '-e'], help='Email address.')
c.argument('expire_time', options_list=['--expire-time', '-x'], help='Expire time (seconds).')
c.argument('minimum_ttl', options_list=['--minimum-ttl', '-m'], help='Minimum TTL (time-to-live, seconds).')
c.argument('refresh_time', options_list=['--refresh-time', '-f'], help='Refresh value (seconds).')
c.argument('retry_time', options_list=['--retry-time', '-r'], help='Retry time (seconds).')
c.argument('serial_number', options_list=['--serial-number', '-s'], help='Serial number.')
c.argument('expire_time', options_list=['--expire-time', '-x'], type=int, help='Expire time (seconds).')
c.argument('minimum_ttl', options_list=['--minimum-ttl', '-m'], type=int, help='Minimum TTL (time-to-live, seconds).')
c.argument('refresh_time', options_list=['--refresh-time', '-f'], type=int, help='Refresh value (seconds).')
c.argument('retry_time', options_list=['--retry-time', '-r'], type=int, help='Retry time (seconds).')
c.argument('serial_number', options_list=['--serial-number', '-s'], type=int, help='Serial number.')

with self.argument_context('network dns record-set srv') as c:
c.argument('priority', type=int, options_list=['--priority', '-p'], help='Priority metric.')
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"network dns",
)
class __CMDGroup(AAZCommandGroup):
"""Manage DNS domains in Azure.
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from azure.cli.core.aaz import *


@register_command_group(
"network dns record-set",
)
class __CMDGroup(AAZCommandGroup):
"""Manage DNS records and record sets.
"""
pass


__all__ = ["__CMDGroup"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
#
# Code generated by aaz-dev-tools
# --------------------------------------------------------------------------------------------

# pylint: skip-file
# flake8: noqa

from .__cmd_group import *
from ._create import *
from ._delete import *
from ._list import *
from ._list_by_type import *
from ._show import *
from ._update import *
Loading