Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Generated from f3e85bf537e973832fd8b630394c4b951badce66 (#7322)
Fix eligibility typo
  • Loading branch information
AutorestCI authored Sep 19, 2019
commit acf05028d9e8e0d5fdfff69a281db8e3695dd108
Original file line number Diff line number Diff line change
Expand Up @@ -8441,27 +8441,27 @@ class MigrationEligibilityInfo(Model):
Variables are only populated by the server, and will be ignored when
sending a request.

:ivar is_eligibile_for_migration: Whether object is eligible for migration
:ivar is_eligible_for_migration: Whether object is eligible for migration
or not.
:vartype is_eligibile_for_migration: bool
:vartype is_eligible_for_migration: bool
:ivar validation_messages: Information about eligibility failure for the
server object.
:vartype validation_messages: list[str]
"""

_validation = {
'is_eligibile_for_migration': {'readonly': True},
'is_eligible_for_migration': {'readonly': True},
'validation_messages': {'readonly': True},
}

_attribute_map = {
'is_eligibile_for_migration': {'key': 'isEligibileForMigration', 'type': 'bool'},
'is_eligible_for_migration': {'key': 'isEligibleForMigration', 'type': 'bool'},
'validation_messages': {'key': 'validationMessages', 'type': '[str]'},
}

def __init__(self, **kwargs):
super(MigrationEligibilityInfo, self).__init__(**kwargs)
self.is_eligibile_for_migration = None
self.is_eligible_for_migration = None
self.validation_messages = None


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8441,27 +8441,27 @@ class MigrationEligibilityInfo(Model):
Variables are only populated by the server, and will be ignored when
sending a request.

:ivar is_eligibile_for_migration: Whether object is eligible for migration
:ivar is_eligible_for_migration: Whether object is eligible for migration
or not.
:vartype is_eligibile_for_migration: bool
:vartype is_eligible_for_migration: bool
:ivar validation_messages: Information about eligibility failure for the
server object.
:vartype validation_messages: list[str]
"""

_validation = {
'is_eligibile_for_migration': {'readonly': True},
'is_eligible_for_migration': {'readonly': True},
'validation_messages': {'readonly': True},
}

_attribute_map = {
'is_eligibile_for_migration': {'key': 'isEligibileForMigration', 'type': 'bool'},
'is_eligible_for_migration': {'key': 'isEligibleForMigration', 'type': 'bool'},
'validation_messages': {'key': 'validationMessages', 'type': '[str]'},
}

def __init__(self, **kwargs) -> None:
super(MigrationEligibilityInfo, self).__init__(**kwargs)
self.is_eligibile_for_migration = None
self.is_eligible_for_migration = None
self.validation_messages = None


Expand Down