Skip to content
Merged
Show file tree
Hide file tree
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 @@ -15,7 +15,7 @@
*/
public class CidrIpAddress {
/**
* Ip adress itself.
* Ip address itself.
*/
@JsonProperty(value = "baseIpAddress")
private String baseIpAddress;
Expand All @@ -27,7 +27,7 @@ public class CidrIpAddress {
private Integer prefixLength;

/**
* Get ip adress itself.
* Get ip address itself.
*
* @return the baseIpAddress value
*/
Expand All @@ -36,7 +36,7 @@ public String baseIpAddress() {
}

/**
* Set ip adress itself.
* Set ip address itself.
*
* @param baseIpAddress the baseIpAddress value to set
* @return the CidrIpAddress object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/**
* Friendly domain name mapping to the endpoint hostname that the customer
* provides for branding purposes, e.g. www.consoto.com.
* provides for branding purposes, e.g. www.contoso.com.
*/
@JsonFlatten
public class CustomDomainInner extends ProxyResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public class EndpointInner extends Resource {

/**
* The host name of the endpoint structured as {endpointName}.{DNSZone},
* e.g. consoto.azureedge.net.
* e.g. contoso.azureedge.net.
*/
@JsonProperty(value = "properties.hostName", access = JsonProperty.Access.WRITE_ONLY)
private String hostName;
Expand Down Expand Up @@ -363,7 +363,7 @@ public EndpointInner withDeliveryPolicy(EndpointPropertiesUpdateParametersDelive
}

/**
* Get the host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. consoto.azureedge.net.
* Get the host name of the endpoint structured as {endpointName}.{DNSZone}, e.g. contoso.azureedge.net.
*
* @return the hostName value
*/
Expand Down