Skip to content

Commit fae83e3

Browse files
authored
Fix typo in availability schema property name
Typo in the schema property, in the final output. cli output sample: { "id": "[cut]", "isAvailiable": true, "name": "[cut]", "type": "Microsoft.NotificationHubs/namespaces/checkNamespaceAvailability" }
1 parent 4c81161 commit fae83e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/notification-hub/azext_notification_hub/aaz/latest/notification_hub/_check_availability.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ def _build_schema_on_200(cls):
181181
_schema_on_200.id = AAZStrType(
182182
flags={"read_only": True},
183183
)
184-
_schema_on_200.is_availiable = AAZBoolType(
185-
serialized_name="isAvailiable",
184+
_schema_on_200.is_available = AAZBoolType(
185+
serialized_name="isAvailable",
186186
)
187187
_schema_on_200.location = AAZStrType()
188188
_schema_on_200.name = AAZStrType(

0 commit comments

Comments
 (0)