Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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
2 changes: 1 addition & 1 deletion lib/services/cdnManagement/lib/models/cidrIpAddress.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class CidrIpAddress {
/**
* Create a CidrIpAddress.
* @property {string} [baseIpAddress] Ip adress itself.
* @property {string} [baseIpAddress] Ip address itself.
* @property {number} [prefixLength] The length of the prefix of the ip
* address.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/services/cdnManagement/lib/models/customDomain.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const models = require('./index');

/**
* 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.
*
* @extends models['ProxyResource']
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/services/cdnManagement/lib/models/endpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Endpoint extends models['TrackedResource'] {
* of the policy.
* @property {array} [deliveryPolicy.rules] A list of the delivery rules.
* @property {string} [hostName] The host name of the endpoint structured as
* {endpointName}.{DNSZone}, e.g. consoto.azureedge.net
* {endpointName}.{DNSZone}, e.g. contoso.azureedge.net
* @property {array} origins The source of the content being delivered via
* CDN.
* @property {string} [resourceState] Resource status of the endpoint.
Expand Down
6 changes: 3 additions & 3 deletions lib/services/cdnManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export interface Endpoint extends TrackedResource {
deliveryPolicy?: EndpointPropertiesUpdateParametersDeliveryPolicy;
/**
* The host name of the endpoint structured as {endpointName}.{DNSZone}, e.g.
* consoto.azureedge.net
* contoso.azureedge.net
*/
readonly hostName?: string;
/**
Expand Down Expand Up @@ -505,7 +505,7 @@ export interface ProxyResource extends Resource {

/**
* Friendly domain name mapping to the endpoint hostname that the customer provides for branding
* purposes, e.g. www.consoto.com.
* purposes, e.g. www.contoso.com.
*/
export interface CustomDomain extends ProxyResource {
/**
Expand Down Expand Up @@ -696,7 +696,7 @@ export interface Operation {
*/
export interface CidrIpAddress {
/**
* Ip adress itself.
* Ip address itself.
*/
baseIpAddress?: string;
/**
Expand Down