Skip to content

Commit acf0502

Browse files
authored
Generated from f3e85bf537e973832fd8b630394c4b951badce66 (#7322)
Fix eligibility typo
1 parent e702db5 commit acf0502

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

sdk/datamigration/azure-mgmt-datamigration/azure/mgmt/datamigration/models/_models.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8441,27 +8441,27 @@ class MigrationEligibilityInfo(Model):
84418441
Variables are only populated by the server, and will be ignored when
84428442
sending a request.
84438443
8444-
:ivar is_eligibile_for_migration: Whether object is eligible for migration
8444+
:ivar is_eligible_for_migration: Whether object is eligible for migration
84458445
or not.
8446-
:vartype is_eligibile_for_migration: bool
8446+
:vartype is_eligible_for_migration: bool
84478447
:ivar validation_messages: Information about eligibility failure for the
84488448
server object.
84498449
:vartype validation_messages: list[str]
84508450
"""
84518451

84528452
_validation = {
8453-
'is_eligibile_for_migration': {'readonly': True},
8453+
'is_eligible_for_migration': {'readonly': True},
84548454
'validation_messages': {'readonly': True},
84558455
}
84568456

84578457
_attribute_map = {
8458-
'is_eligibile_for_migration': {'key': 'isEligibileForMigration', 'type': 'bool'},
8458+
'is_eligible_for_migration': {'key': 'isEligibleForMigration', 'type': 'bool'},
84598459
'validation_messages': {'key': 'validationMessages', 'type': '[str]'},
84608460
}
84618461

84628462
def __init__(self, **kwargs):
84638463
super(MigrationEligibilityInfo, self).__init__(**kwargs)
8464-
self.is_eligibile_for_migration = None
8464+
self.is_eligible_for_migration = None
84658465
self.validation_messages = None
84668466

84678467

sdk/datamigration/azure-mgmt-datamigration/azure/mgmt/datamigration/models/_models_py3.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8441,27 +8441,27 @@ class MigrationEligibilityInfo(Model):
84418441
Variables are only populated by the server, and will be ignored when
84428442
sending a request.
84438443
8444-
:ivar is_eligibile_for_migration: Whether object is eligible for migration
8444+
:ivar is_eligible_for_migration: Whether object is eligible for migration
84458445
or not.
8446-
:vartype is_eligibile_for_migration: bool
8446+
:vartype is_eligible_for_migration: bool
84478447
:ivar validation_messages: Information about eligibility failure for the
84488448
server object.
84498449
:vartype validation_messages: list[str]
84508450
"""
84518451

84528452
_validation = {
8453-
'is_eligibile_for_migration': {'readonly': True},
8453+
'is_eligible_for_migration': {'readonly': True},
84548454
'validation_messages': {'readonly': True},
84558455
}
84568456

84578457
_attribute_map = {
8458-
'is_eligibile_for_migration': {'key': 'isEligibileForMigration', 'type': 'bool'},
8458+
'is_eligible_for_migration': {'key': 'isEligibleForMigration', 'type': 'bool'},
84598459
'validation_messages': {'key': 'validationMessages', 'type': '[str]'},
84608460
}
84618461

84628462
def __init__(self, **kwargs) -> None:
84638463
super(MigrationEligibilityInfo, self).__init__(**kwargs)
8464-
self.is_eligibile_for_migration = None
8464+
self.is_eligible_for_migration = None
84658465
self.validation_messages = None
84668466

84678467

0 commit comments

Comments
 (0)