Skip to content

Commit e5653ef

Browse files
committed
fix htmltag lint
1 parent 63fda5c commit e5653ef

File tree

11 files changed

+14
-7
lines changed

11 files changed

+14
-7
lines changed

src/support/azext_support/aaz/latest/support/in_subscription/communication/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support in-subscription communication list",
1616
)
1717
class List(AAZCommand):
18-
"""List all communications (attachments not included) for a support ticket. <br/></br> You can also filter support ticket communications by _CreatedDate_ or _CommunicationType_ using the $filter parameter. The only type of communication supported today is _Web_. Output will be a paged result with _nextLink_, using which you can retrieve the next set of Communication results. <br/><br/>Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
18+
"""List all communications (attachments not included) for a support ticket. You can also filter support ticket communications by CreatedDate or CommunicationType using the --filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results. Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
1919
2020
:example: List web communication created on or after a specific date for a subscription support ticket.
2121
az support in-subscription communication list --ticket-name "TestTicketName" --filter "CreatedDate ge 2024-01-01"

src/support/azext_support/aaz/latest/support/in_subscription/communication/_show.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,13 @@ def _build_arguments_schema(cls, *args, **kwargs):
4848
options=["--communication-name"],
4949
help="Communication name.",
5050
required=True,
51+
id_part="child_name_1",
5152
)
5253
_args_schema.ticket_name = AAZStrArg(
5354
options=["--ticket-name"],
5455
help="Support ticket name.",
5556
required=True,
57+
id_part="name",
5658
)
5759
return cls._args_schema
5860

src/support/azext_support/aaz/latest/support/in_subscription/communication/_update.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@ def _build_arguments_schema(cls, *args, **kwargs):
4545
options=["-n", "--name", "--communication-name"],
4646
help="Communication name.",
4747
required=True,
48+
id_part="child_name_1",
4849
)
4950
_args_schema.ticket_name = AAZStrArg(
5051
options=["--ticket-name"],
5152
help="Support ticket name.",
5253
required=True,
54+
id_part="name",
5355
)
5456
_args_schema.communication_body = AAZStrArg(
5557
options=["--communication-body"],

src/support/azext_support/aaz/latest/support/in_subscription/tickets/_check_name_availability.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4242
options=["--support-ticket-name"],
4343
help="Support ticket name.",
4444
required=True,
45+
id_part="name",
4546
)
4647

4748
# define Arg Group "CheckNameAvailabilityInput"

src/support/azext_support/aaz/latest/support/in_subscription/tickets/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support in-subscription tickets list",
1616
)
1717
class List(AAZCommand):
18-
"""Lists all the support tickets for an Azure subscription. You can also filter the support tickets by _Status_, _CreatedDate_, _ServiceId_, and _ProblemClassificationId_ using the $filter parameter. Output will be a paged result with _nextLink_, using which you can retrieve the next set of support tickets. <br/><br/>Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error. Default is CreatedDate >= one week.
18+
"""Lists all the support tickets for an Azure subscription. You can also filter the support tickets by Status, CreatedDate, ServiceId, and ProblemClassificationId using the --filter parameter. Output will be a paged result with nextLink, using which you can retrieve the next set of support tickets. Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error. Default is CreatedDate >= one week.
1919
2020
:example: List support tickets for a subscription
2121
az support in-subscription tickets list

src/support/azext_support/aaz/latest/support/in_subscription/tickets/_show.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
4848
options=["--ticket-name"],
4949
help="Support ticket name.",
5050
required=True,
51+
id_part="name",
5152
)
5253
return cls._args_schema
5354

src/support/azext_support/aaz/latest/support/in_subscription/tickets/_update.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support in-subscription tickets update",
1616
)
1717
class Update(AAZCommand):
18-
"""Update API allows you to update the severity level, ticket status, advanced diagnostic consent, secondary consent, and your contact information in the support ticket.<br/><br/>Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
18+
"""Update API allows you to update the severity level, ticket status, advanced diagnostic consent, secondary consent, and your contact information in the support ticket. Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
1919
2020
:example: Update support ticket severity.
2121
az support in-subscription tickets update --ticket-name "TestTicketName" --severity "moderate"
@@ -62,6 +62,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
6262
options=["--ticket-name"],
6363
help="Support ticket name.",
6464
required=True,
65+
id_part="name",
6566
)
6667
_args_schema.advanced_diagnostic_consent = AAZStrArg(
6768
options=["--advanced-diagnostic-consent"],

src/support/azext_support/aaz/latest/support/no_subscription/communication/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support no-subscription communication list",
1616
)
1717
class List(AAZCommand):
18-
"""List all communications (attachments not included) for a support ticket. <br/></br> You can also filter support ticket communications by _CreatedDate_ or _CommunicationType_ using the $filter parameter. The only type of communication supported today is _Web_. Output will be a paged result with _nextLink_, using which you can retrieve the next set of Communication results. <br/><br/>Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
18+
"""List all communications (attachments not included) for a support ticket. You can also filter support ticket communications by CreatedDate or CommunicationType using the --filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results. Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
1919
2020
:example: List web communication created on or after a specific date for a no subscription support ticket.
2121
az support no-subscription communication list --ticket-name "TestTicketName" --filter "CreatedDate ge 2024-01-01"

src/support/azext_support/aaz/latest/support/no_subscription/tickets/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support no-subscription tickets list",
1616
)
1717
class List(AAZCommand):
18-
"""List all the support tickets. <br/><br/>You can also filter the support tickets by <i>Status</i>, <i>CreatedDate</i>, <i>ServiceId</i>, and <i>ProblemClassificationId</i> using the $filter parameter. Output will be a paged result with <i>nextLink</i>, using which you can retrieve the next set of support tickets. <br/><br/>Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error. Default is CreatedDate >= one week.
18+
"""List all the support tickets. You can also filter the support tickets by Status, CreatedDate, ServiceId, and ProblemClassificationId using the --filter parameter. Output will be a paged result with nextLink, using which you can retrieve the next set of support tickets. Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error. Default is CreatedDate >= one week.
1919
2020
:example: List support tickets for a no subscription
2121
az support no-subscription tickets list

src/support/azext_support/aaz/latest/support/no_subscription/tickets/_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"support no-subscription tickets update",
1616
)
1717
class Update(AAZCommand):
18-
"""Update API allows you to update the severity level, ticket status, advanced diagnostic consent, secondary consent, and your contact information in the support ticket.<br/><br/>Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
18+
"""Update API allows you to update the severity level, ticket status, advanced diagnostic consent, secondary consent, and your contact information in the support ticket. Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
1919
2020
:example: Update support ticket severity.
2121
az support no-subscription tickets update --ticket-name "TestTicketName" --severity "moderate"

0 commit comments

Comments
 (0)