Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Generated from cee83a7e58509526a61ec26af886f6ef755576ae (#3929)
Modify the description of subDomainSuffix parameter
  • Loading branch information
AutorestCI authored Jun 15, 2019
commit 032c432c992f2ce1b85d2fa96a875fe8158e32cc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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;
}

}