Skip to content
Merged
Changes from all commits
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
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;
}

}