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
Generated from cbc3675d0627d07b36dceb73ab730cdf3a416246
Fix error in the possible values for an enum
  • Loading branch information
AutorestCI committed May 8, 2018
commit 82c77c2eb3d9be8fc522497f11b786a99ba5d1c8
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CheckNameAvailabilityRequest(Model):
:type name: str
:param type: fully qualified resource type which includes provider
namespace. Possible values include:
'/providers/Microsoft.Management/managementGroup'
'/providers/Microsoft.Management/managementGroups'
:type type: str or ~azure.mgmt.managementgroups.models.Type
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CheckNameAvailabilityRequest(Model):
:type name: str
:param type: fully qualified resource type which includes provider
namespace. Possible values include:
'/providers/Microsoft.Management/managementGroup'
'/providers/Microsoft.Management/managementGroups'
:type type: str or ~azure.mgmt.managementgroups.models.Type
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ class Reason(str, Enum):

class Type(str, Enum):

providers_microsoft_managementmanagement_group = "/providers/Microsoft.Management/managementGroup"
providers_microsoft_managementmanagement_groups = "/providers/Microsoft.Management/managementGroups"