Skip to content

Commit

Permalink
Generated from 4451d56c3fa30d4071f6653619fcada13726c42f (#4757)
Browse files Browse the repository at this point in the history
Fix model type regression
  • Loading branch information
AutorestCI authored Apr 3, 2019
1 parent ce3fad4 commit 774cf23
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Blueprint(AzureResourceBase):
'display_name': {'key': 'properties.displayName', 'type': 'str'},
'description': {'key': 'properties.description', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'BlueprintStatus'},
'target_scope': {'key': 'properties.targetScope', 'type': 'BlueprintTargetScope'},
'target_scope': {'key': 'properties.targetScope', 'type': 'str'},
'parameters': {'key': 'properties.parameters', 'type': '{ParameterDefinition}'},
'resource_groups': {'key': 'properties.resourceGroups', 'type': '{ResourceGroupDefinition}'},
'versions': {'key': 'properties.versions', 'type': 'object'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Blueprint(AzureResourceBase):
'display_name': {'key': 'properties.displayName', 'type': 'str'},
'description': {'key': 'properties.description', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'BlueprintStatus'},
'target_scope': {'key': 'properties.targetScope', 'type': 'BlueprintTargetScope'},
'target_scope': {'key': 'properties.targetScope', 'type': 'str'},
'parameters': {'key': 'properties.parameters', 'type': '{ParameterDefinition}'},
'resource_groups': {'key': 'properties.resourceGroups', 'type': '{ResourceGroupDefinition}'},
'versions': {'key': 'properties.versions', 'type': 'object'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PublishedBlueprint(AzureResourceBase):
'display_name': {'key': 'properties.displayName', 'type': 'str'},
'description': {'key': 'properties.description', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'BlueprintStatus'},
'target_scope': {'key': 'properties.targetScope', 'type': 'BlueprintTargetScope'},
'target_scope': {'key': 'properties.targetScope', 'type': 'str'},
'parameters': {'key': 'properties.parameters', 'type': '{ParameterDefinition}'},
'resource_groups': {'key': 'properties.resourceGroups', 'type': '{ResourceGroupDefinition}'},
'blueprint_name': {'key': 'properties.blueprintName', 'type': 'str'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class PublishedBlueprint(AzureResourceBase):
'display_name': {'key': 'properties.displayName', 'type': 'str'},
'description': {'key': 'properties.description', 'type': 'str'},
'status': {'key': 'properties.status', 'type': 'BlueprintStatus'},
'target_scope': {'key': 'properties.targetScope', 'type': 'BlueprintTargetScope'},
'target_scope': {'key': 'properties.targetScope', 'type': 'str'},
'parameters': {'key': 'properties.parameters', 'type': '{ParameterDefinition}'},
'resource_groups': {'key': 'properties.resourceGroups', 'type': '{ResourceGroupDefinition}'},
'blueprint_name': {'key': 'properties.blueprintName', 'type': 'str'},
Expand Down

0 comments on commit 774cf23

Please sign in to comment.