Skip to content

Commit

Permalink
[AutoPR web/resource-manager] Update managedserviceidentity type enum (
Browse files Browse the repository at this point in the history
…#4761)

* Generated from d605882bdcb7e402badbf4aeca8d66f20a9d197e

Update managedserviceidentity type enum

Enum is currently missing the ua + sa combination + "none" type. We do support those values in our API and as such need the swagger to reflect that.

* Packaging update of azure-mgmt-web
  • Loading branch information
AutorestCI authored Apr 2, 2019
1 parent 040ae80 commit 8b8b822
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions azure-mgmt-web/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the
`Issues <https://github.com/Azure/azure-sdk-for-python/issues>`__
section of the project.


.. image:: https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-web%2FREADME.png
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ManagedServiceIdentity(Model):
sending a request.
:param type: Type of managed service identity. Possible values include:
'SystemAssigned', 'UserAssigned'
'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'
:type type: str or ~azure.mgmt.web.models.ManagedServiceIdentityType
:ivar tenant_id: Tenant of managed service identity.
:vartype tenant_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ManagedServiceIdentity(Model):
sending a request.
:param type: Type of managed service identity. Possible values include:
'SystemAssigned', 'UserAssigned'
'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None'
:type type: str or ~azure.mgmt.web.models.ManagedServiceIdentityType
:ivar tenant_id: Tenant of managed service identity.
:vartype tenant_id: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ class ManagedServiceIdentityType(str, Enum):

system_assigned = "SystemAssigned"
user_assigned = "UserAssigned"
system_assigned_user_assigned = "SystemAssigned, UserAssigned"
none = "None"


class IpFilterTag(str, Enum):
Expand Down

0 comments on commit 8b8b822

Please sign in to comment.