diff --git a/azure-mgmt-automation/azure/mgmt/automation/models/linux_properties.py b/azure-mgmt-automation/azure/mgmt/automation/models/linux_properties.py index 0157b1d3bcd9..9a29e1ea585f 100644 --- a/azure-mgmt-automation/azure/mgmt/automation/models/linux_properties.py +++ b/azure-mgmt-automation/azure/mgmt/automation/models/linux_properties.py @@ -23,14 +23,19 @@ class LinuxProperties(Model): :param excluded_package_name_masks: packages excluded from the software update configuration. :type excluded_package_name_masks: list[str] + :param included_package_name_masks: packages included from the software + update configuration. + :type included_package_name_masks: list[str] """ _attribute_map = { 'included_package_classifications': {'key': 'includedPackageClassifications', 'type': 'str'}, 'excluded_package_name_masks': {'key': 'excludedPackageNameMasks', 'type': '[str]'}, + 'included_package_name_masks': {'key': 'includedPackageNameMasks', 'type': '[str]'}, } - def __init__(self, included_package_classifications=None, excluded_package_name_masks=None): + def __init__(self, included_package_classifications=None, excluded_package_name_masks=None, included_package_name_masks=None): super(LinuxProperties, self).__init__() self.included_package_classifications = included_package_classifications self.excluded_package_name_masks = excluded_package_name_masks + self.included_package_name_masks = included_package_name_masks diff --git a/azure-mgmt-automation/azure/mgmt/automation/models/windows_properties.py b/azure-mgmt-automation/azure/mgmt/automation/models/windows_properties.py index 8c357abac2a7..260828de4aa9 100644 --- a/azure-mgmt-automation/azure/mgmt/automation/models/windows_properties.py +++ b/azure-mgmt-automation/azure/mgmt/automation/models/windows_properties.py @@ -25,14 +25,19 @@ class WindowsProperties(Model): :param excluded_kb_numbers: KB numbers excluded from the software update configuration. :type excluded_kb_numbers: list[str] + :param included_kb_numbers: KB numbers included from the software update + configuration. + :type included_kb_numbers: list[str] """ _attribute_map = { 'included_update_classifications': {'key': 'includedUpdateClassifications', 'type': 'str'}, 'excluded_kb_numbers': {'key': 'excludedKbNumbers', 'type': '[str]'}, + 'included_kb_numbers': {'key': 'includedKbNumbers', 'type': '[str]'}, } - def __init__(self, included_update_classifications=None, excluded_kb_numbers=None): + def __init__(self, included_update_classifications=None, excluded_kb_numbers=None, included_kb_numbers=None): super(WindowsProperties, self).__init__() self.included_update_classifications = included_update_classifications self.excluded_kb_numbers = excluded_kb_numbers + self.included_kb_numbers = included_kb_numbers