Skip to content

Commit

Permalink
Generated from b69bef4a563923aa5276278af9dfe78f5a125598 (#387)
Browse files Browse the repository at this point in the history
Correct spellCheck errors
  • Loading branch information
openapi-sdkautomation[bot] authored and SDK Automation committed Oct 29, 2019
1 parent edc8707 commit 7d9ec29
Show file tree
Hide file tree
Showing 32 changed files with 4,611 additions and 116 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ public partial class CdnManagementClient : ServiceClient<CdnManagementClient>, I
/// </summary>
public virtual IOriginsOperations Origins { get; private set; }

/// <summary>
/// Gets the IOriginGroupsOperations.
/// </summary>
public virtual IOriginGroupsOperations OriginGroups { get; private set; }

/// <summary>
/// Gets the ICustomDomainsOperations.
/// </summary>
Expand Down Expand Up @@ -356,12 +361,13 @@ private void Initialize()
Profiles = new ProfilesOperations(this);
Endpoints = new EndpointsOperations(this);
Origins = new OriginsOperations(this);
OriginGroups = new OriginGroupsOperations(this);
CustomDomains = new CustomDomainsOperations(this);
ResourceUsage = new ResourceUsageOperations(this);
Operations = new Operations(this);
EdgeNodes = new EdgeNodesOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
ApiVersion = "2019-04-15";
ApiVersion = "2019-12-31";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,10 +503,11 @@ internal EndpointsOperations(CdnManagementClient client)

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
Expand Down Expand Up @@ -1390,10 +1391,11 @@ internal EndpointsOperations(CdnManagementClient client)

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,11 @@ public static Endpoint Create(this IEndpointsOperations operations, string resou

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -194,10 +195,11 @@ public static Endpoint Update(this IEndpointsOperations operations, string resou

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down Expand Up @@ -622,10 +624,11 @@ public static Endpoint BeginCreate(this IEndpointsOperations operations, string

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand All @@ -649,10 +652,11 @@ public static Endpoint BeginUpdate(this IEndpointsOperations operations, string

/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name under the
/// specified subscription, resource group and profile. Only tags and Origin
/// HostHeader can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update custom domains, use the Update
/// Custom Domain operation.
/// specified subscription, resource group and profile. Only tags can be
/// updated after creating an endpoint. To update origins, use the Update
/// Origin operation. To update origin groups, use the Update Origin group
/// operation. To update custom domains, use the Update Custom Domain
/// operation.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ public partial interface ICdnManagementClient : System.IDisposable
/// </summary>
IOriginsOperations Origins { get; }

/// <summary>
/// Gets the IOriginGroupsOperations.
/// </summary>
IOriginGroupsOperations OriginGroups { get; }

/// <summary>
/// Gets the ICustomDomainsOperations.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,10 @@ public partial interface IEndpointsOperations
/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name
/// under the specified subscription, resource group and profile. Only
/// tags and Origin HostHeader can be updated after creating an
/// endpoint. To update origins, use the Update Origin operation. To
/// update custom domains, use the Update Custom Domain operation.
/// tags can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update origin groups, use the
/// Update Origin group operation. To update custom domains, use the
/// Update Custom Domain operation.
/// </summary>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
Expand Down Expand Up @@ -380,9 +381,10 @@ public partial interface IEndpointsOperations
/// <summary>
/// Updates an existing CDN endpoint with the specified endpoint name
/// under the specified subscription, resource group and profile. Only
/// tags and Origin HostHeader can be updated after creating an
/// endpoint. To update origins, use the Update Origin operation. To
/// update custom domains, use the Update Custom Domain operation.
/// tags can be updated after creating an endpoint. To update origins,
/// use the Update Origin operation. To update origin groups, use the
/// Update Origin group operation. To update custom domains, use the
/// Update Custom Domain operation.
/// </summary>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
Expand Down
Loading

0 comments on commit 7d9ec29

Please sign in to comment.