From d75face3131b2bbbe1cc16853fdffc415d32e5b4 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot Date: Mon, 2 Dec 2019 03:30:33 +0000 Subject: [PATCH] Generated from f89b3577784d34e4da75467c09dc8dc036d959a8 update swagger for public ip --- .../azure/mgmt/datafactory/models/_models.py | 5 +++++ .../azure/mgmt/datafactory/models/_models_py3.py | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models.py index ed2695eb54a8..d6dfe0c02f39 100644 --- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models.py +++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models.py @@ -17392,12 +17392,16 @@ class IntegrationRuntimeVNetProperties(Model): :type v_net_id: str :param subnet: The name of the subnet this integration runtime will join. :type subnet: str + :param public_ips: Resource IDs of the public IP addresses that this + integration runtime will use. + :type public_ips: list[str] """ _attribute_map = { 'additional_properties': {'key': '', 'type': '{object}'}, 'v_net_id': {'key': 'vNetId', 'type': 'str'}, 'subnet': {'key': 'subnet', 'type': 'str'}, + 'public_ips': {'key': 'publicIPs', 'type': '[str]'}, } def __init__(self, **kwargs): @@ -17405,6 +17409,7 @@ def __init__(self, **kwargs): self.additional_properties = kwargs.get('additional_properties', None) self.v_net_id = kwargs.get('v_net_id', None) self.subnet = kwargs.get('subnet', None) + self.public_ips = kwargs.get('public_ips', None) class JiraLinkedService(LinkedService): diff --git a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models_py3.py b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models_py3.py index 169609785f9d..6117aa02eef3 100644 --- a/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models_py3.py +++ b/sdk/datafactory/azure-mgmt-datafactory/azure/mgmt/datafactory/models/_models_py3.py @@ -17392,19 +17392,24 @@ class IntegrationRuntimeVNetProperties(Model): :type v_net_id: str :param subnet: The name of the subnet this integration runtime will join. :type subnet: str + :param public_ips: Resource IDs of the public IP addresses that this + integration runtime will use. + :type public_ips: list[str] """ _attribute_map = { 'additional_properties': {'key': '', 'type': '{object}'}, 'v_net_id': {'key': 'vNetId', 'type': 'str'}, 'subnet': {'key': 'subnet', 'type': 'str'}, + 'public_ips': {'key': 'publicIPs', 'type': '[str]'}, } - def __init__(self, *, additional_properties=None, v_net_id: str=None, subnet: str=None, **kwargs) -> None: + def __init__(self, *, additional_properties=None, v_net_id: str=None, subnet: str=None, public_ips=None, **kwargs) -> None: super(IntegrationRuntimeVNetProperties, self).__init__(**kwargs) self.additional_properties = additional_properties self.v_net_id = v_net_id self.subnet = subnet + self.public_ips = public_ips class JiraLinkedService(LinkedService):