diff --git a/hdinsight/resource-manager/v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ApplicationGetHttpsEndpoint.java b/hdinsight/resource-manager/v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ApplicationGetHttpsEndpoint.java index e1f56d61355a..bf7dd2218bd2 100644 --- a/hdinsight/resource-manager/v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ApplicationGetHttpsEndpoint.java +++ b/hdinsight/resource-manager/v2018_06_01_preview/src/main/java/com/microsoft/azure/management/hdinsight/v2018_06_01_preview/ApplicationGetHttpsEndpoint.java @@ -39,6 +39,18 @@ public class ApplicationGetHttpsEndpoint { @JsonProperty(value = "publicPort") private Integer publicPort; + /** + * The subDomainSuffix of the application. + */ + @JsonProperty(value = "subDomainSuffix") + private String subDomainSuffix; + + /** + * The value indicates whether to disable GatewayAuth. + */ + @JsonProperty(value = "disableGatewayAuth") + private Boolean disableGatewayAuth; + /** * Get the list of access modes for the application. * @@ -119,4 +131,44 @@ public ApplicationGetHttpsEndpoint withPublicPort(Integer publicPort) { return this; } + /** + * Get the subDomainSuffix of the application. + * + * @return the subDomainSuffix value + */ + public String subDomainSuffix() { + return this.subDomainSuffix; + } + + /** + * Set the subDomainSuffix of the application. + * + * @param subDomainSuffix the subDomainSuffix value to set + * @return the ApplicationGetHttpsEndpoint object itself. + */ + public ApplicationGetHttpsEndpoint withSubDomainSuffix(String subDomainSuffix) { + this.subDomainSuffix = subDomainSuffix; + return this; + } + + /** + * Get the value indicates whether to disable GatewayAuth. + * + * @return the disableGatewayAuth value + */ + public Boolean disableGatewayAuth() { + return this.disableGatewayAuth; + } + + /** + * Set the value indicates whether to disable GatewayAuth. + * + * @param disableGatewayAuth the disableGatewayAuth value to set + * @return the ApplicationGetHttpsEndpoint object itself. + */ + public ApplicationGetHttpsEndpoint withDisableGatewayAuth(Boolean disableGatewayAuth) { + this.disableGatewayAuth = disableGatewayAuth; + return this; + } + }