Skip to content

Commit bc382da

Browse files
committed
Generated from 6b4f8a041355f71703ff968f9a7209ab27d93605 (#2090)
Add missing type specifier to enum definition.
1 parent 4d58ae7 commit bc382da

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

azure-mgmt-web/azure/mgmt/web/models/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@
268268
CertificateOrderStatus,
269269
CertificateOrderActionType,
270270
RouteType,
271+
ManagedServiceIdentityType,
271272
AutoHealActionType,
272273
ConnectionStringType,
273274
ScmType,
@@ -580,6 +581,7 @@
580581
'CertificateOrderStatus',
581582
'CertificateOrderActionType',
582583
'RouteType',
584+
'ManagedServiceIdentityType',
583585
'AutoHealActionType',
584586
'ConnectionStringType',
585587
'ScmType',

azure-mgmt-web/azure/mgmt/web/models/managed_service_identity.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ class ManagedServiceIdentity(Model):
1818
Variables are only populated by the server, and will be ignored when
1919
sending a request.
2020
21-
:param type: Type of managed service identity.
22-
:type type: object
21+
:param type: Type of managed service identity. Possible values include:
22+
'SystemAssigned'
23+
:type type: str or ~azure.mgmt.web.models.ManagedServiceIdentityType
2324
:ivar tenant_id: Tenant of managed service identity.
2425
:vartype tenant_id: str
2526
:ivar principal_id: Principal Id of managed service identity.
@@ -32,7 +33,7 @@ class ManagedServiceIdentity(Model):
3233
}
3334

3435
_attribute_map = {
35-
'type': {'key': 'type', 'type': 'object'},
36+
'type': {'key': 'type', 'type': 'str'},
3637
'tenant_id': {'key': 'tenantId', 'type': 'str'},
3738
'principal_id': {'key': 'principalId', 'type': 'str'},
3839
}

azure-mgmt-web/azure/mgmt/web/models/web_site_management_client_enums.py

+5
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,11 @@ class RouteType(Enum):
8181
static = "STATIC"
8282

8383

84+
class ManagedServiceIdentityType(Enum):
85+
86+
system_assigned = "SystemAssigned"
87+
88+
8489
class AutoHealActionType(Enum):
8590

8691
recycle = "Recycle"

azure-mgmt-web/azure/mgmt/web/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = ""
12+
VERSION = "0.36.0"
1313

0 commit comments

Comments
 (0)