Skip to content

Commit

Permalink
fix: correct property location for create command
Browse files Browse the repository at this point in the history
  • Loading branch information
blackchoey committed Mar 12, 2024
1 parent 5b31278 commit 25331e1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,6 @@ def _build_schema_on_200_201(cls):
)

_element = cls._schema_on_200_201.identity.user_assigned_identities.Element
properties.data_api_hostname = AAZStrType(
serialized_name="dataApiHostname",
flags={"read_only": True},
)
_element.client_id = AAZStrType(
serialized_name="clientId",
flags={"read_only": True},
Expand All @@ -288,6 +284,10 @@ def _build_schema_on_200_201(cls):
)

properties = cls._schema_on_200_201.properties
properties.data_api_hostname = AAZStrType(
serialized_name="dataApiHostname",
flags={"read_only": True},
)
properties.provisioning_state = AAZStrType(
serialized_name="provisioningState",
flags={"read_only": True},
Expand Down

0 comments on commit 25331e1

Please sign in to comment.