From 2ccafd2d25e44bd970e2c19aa64564d834a5d804 Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Thu, 30 May 2019 03:28:44 +0000 Subject: [PATCH] Generated from ac743f1dd8f0e67de1c5132910705c7cf2c49268 support subdomainsuffix --- .../models/application_get_https_endpoint.py | 10 ++++++++++ .../models/application_get_https_endpoint_py3.py | 12 +++++++++++- .../azure/mgmt/hdinsight/version.py | 3 ++- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint.py index b4536fc4f42d..eb2ad6b92447 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint.py @@ -23,6 +23,12 @@ class ApplicationGetHttpsEndpoint(Model): :type destination_port: int :param public_port: The public port to connect to. :type public_port: int + :param sub_domain_suffix: The subDomainSuffix of the application and can + not greater than 3 characters. + :type sub_domain_suffix: str + :param disable_gateway_auth: The value indicates whether to disable + GatewayAuth. + :type disable_gateway_auth: bool """ _attribute_map = { @@ -30,6 +36,8 @@ class ApplicationGetHttpsEndpoint(Model): 'location': {'key': 'location', 'type': 'str'}, 'destination_port': {'key': 'destinationPort', 'type': 'int'}, 'public_port': {'key': 'publicPort', 'type': 'int'}, + 'sub_domain_suffix': {'key': 'subDomainSuffix', 'type': 'str'}, + 'disable_gateway_auth': {'key': 'disableGatewayAuth', 'type': 'bool'}, } def __init__(self, **kwargs): @@ -38,3 +46,5 @@ def __init__(self, **kwargs): self.location = kwargs.get('location', None) self.destination_port = kwargs.get('destination_port', None) self.public_port = kwargs.get('public_port', None) + self.sub_domain_suffix = kwargs.get('sub_domain_suffix', None) + self.disable_gateway_auth = kwargs.get('disable_gateway_auth', None) diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint_py3.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint_py3.py index e23d24ac3368..f2794c5385e4 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint_py3.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/application_get_https_endpoint_py3.py @@ -23,6 +23,12 @@ class ApplicationGetHttpsEndpoint(Model): :type destination_port: int :param public_port: The public port to connect to. :type public_port: int + :param sub_domain_suffix: The subDomainSuffix of the application and can + not greater than 3 characters. + :type sub_domain_suffix: str + :param disable_gateway_auth: The value indicates whether to disable + GatewayAuth. + :type disable_gateway_auth: bool """ _attribute_map = { @@ -30,11 +36,15 @@ class ApplicationGetHttpsEndpoint(Model): 'location': {'key': 'location', 'type': 'str'}, 'destination_port': {'key': 'destinationPort', 'type': 'int'}, 'public_port': {'key': 'publicPort', 'type': 'int'}, + 'sub_domain_suffix': {'key': 'subDomainSuffix', 'type': 'str'}, + 'disable_gateway_auth': {'key': 'disableGatewayAuth', 'type': 'bool'}, } - def __init__(self, *, access_modes=None, location: str=None, destination_port: int=None, public_port: int=None, **kwargs) -> None: + def __init__(self, *, access_modes=None, location: str=None, destination_port: int=None, public_port: int=None, sub_domain_suffix: str=None, disable_gateway_auth: bool=None, **kwargs) -> None: super(ApplicationGetHttpsEndpoint, self).__init__(**kwargs) self.access_modes = access_modes self.location = location self.destination_port = destination_port self.public_port = public_port + self.sub_domain_suffix = sub_domain_suffix + self.disable_gateway_auth = disable_gateway_auth diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py index 9ed7b1240a1c..e0ec669828cb 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py @@ -9,4 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0" +VERSION = "0.1.0" +