Skip to content

Commit

Permalink
Generated from cbc3675d0627d07b36dceb73ab730cdf3a416246 (#2554)
Browse files Browse the repository at this point in the history
Fix error in the possible values for an enum
  • Loading branch information
AutorestCI authored May 9, 2018
1 parent 44f2316 commit 12b8258
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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"

0 comments on commit 12b8258

Please sign in to comment.