Skip to content

Commit

Permalink
Generated from 5269a33bc4e48e336b7eacdba01c999953f42013
Browse files Browse the repository at this point in the history
Fixes for:

Issue #1 : Azure/azure-rest-api-specs#4576 (comment)

Typo in the DeltaOperationType Enum.

Issue #2 : Azure/azure-rest-api-specs#4844 (comment)

GlobalAdmins list is marked as an object, while it's an array.
  • Loading branch information
AutorestCI committed Dec 11, 2018
1 parent 5af802b commit 2ac02c8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(


class ADHybridHealthService(SDKClient):
"""REST APIs for Azure Active Drectory Connect Health
"""REST APIs for Azure Active Directory Connect Health
:ivar config: Configuration for client.
:vartype config: ADHybridHealthServiceConfiguration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class DeltaOperationType(str, Enum):
update = "Update"
delete = "Delete"
obsolete = "Obsolete"
delet_add = "DeletAdd"
delete_add = "DeleteAdd"


class HealthStatus(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ChangeNotReimportedDelta(Model):
list[~azure.mgmt.adhybridhealthservice.models.AttributeDelta]
:param operation_type: The operation type. Possible values include:
'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete',
'DeletAdd'
'DeleteAdd'
:type operation_type: str or
~azure.mgmt.adhybridhealthservice.models.DeltaOperationType
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ChangeNotReimportedDelta(Model):
list[~azure.mgmt.adhybridhealthservice.models.AttributeDelta]
:param operation_type: The operation type. Possible values include:
'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete',
'DeletAdd'
'DeleteAdd'
:type operation_type: str or
~azure.mgmt.adhybridhealthservice.models.DeltaOperationType
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Tenant(Model):
:type disabled_reason: int
:param global_admins_email: The list of golbal administrators for the
tenant.
:type global_admins_email: object
:type global_admins_email: list[str]
:param initial_domain: The initial domain of the tenant.
:type initial_domain: str
:param last_disabled: The date and time, in UTC, when the tenant was last
Expand Down Expand Up @@ -89,7 +89,7 @@ class Tenant(Model):
'dev_ops_ttl': {'key': 'devOpsTtl', 'type': 'iso-8601'},
'disabled': {'key': 'disabled', 'type': 'bool'},
'disabled_reason': {'key': 'disabledReason', 'type': 'int'},
'global_admins_email': {'key': 'globalAdminsEmail', 'type': 'object'},
'global_admins_email': {'key': 'globalAdminsEmail', 'type': '[str]'},
'initial_domain': {'key': 'initialDomain', 'type': 'str'},
'last_disabled': {'key': 'lastDisabled', 'type': 'iso-8601'},
'last_verified': {'key': 'lastVerified', 'type': 'iso-8601'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Tenant(Model):
:type disabled_reason: int
:param global_admins_email: The list of golbal administrators for the
tenant.
:type global_admins_email: object
:type global_admins_email: list[str]
:param initial_domain: The initial domain of the tenant.
:type initial_domain: str
:param last_disabled: The date and time, in UTC, when the tenant was last
Expand Down Expand Up @@ -89,7 +89,7 @@ class Tenant(Model):
'dev_ops_ttl': {'key': 'devOpsTtl', 'type': 'iso-8601'},
'disabled': {'key': 'disabled', 'type': 'bool'},
'disabled_reason': {'key': 'disabledReason', 'type': 'int'},
'global_admins_email': {'key': 'globalAdminsEmail', 'type': 'object'},
'global_admins_email': {'key': 'globalAdminsEmail', 'type': '[str]'},
'initial_domain': {'key': 'initialDomain', 'type': 'str'},
'last_disabled': {'key': 'lastDisabled', 'type': 'iso-8601'},
'last_verified': {'key': 'lastVerified', 'type': 'iso-8601'},
Expand Down

0 comments on commit 2ac02c8

Please sign in to comment.