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
8 changes: 4 additions & 4 deletions eng/mgmt/mgmtmetadata/frontdoor_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ AutoRest installed successfully.
Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/frontdoor/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\AFD\azure-sdk-for-net\sdk
2019-08-19 23:03:22 UTC
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/frontdoor/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=C:\Sources\OSS\azure-sdk-for-net\sdk
2019-11-07 17:58:14 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 59c5761efb6dae1a0cfb624bc1a054e902a855cf
Commit: 5e95a31678db88b8405e189df4aad8f9e9a24c45
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4283
Bootstrapper version: autorest@2.0.4407
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file-->
<PropertyGroup>
<AzureApiTag>Network_2019-05-01;Network_2019-04-01;Network_2019-03-01;</AzureApiTag>
<AzureApiTag>Network_2019-05-01;Network_2019-11-01;Network_2019-10-01;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -74,29 +74,29 @@ public partial class FrontDoorManagementClient : ServiceClient<FrontDoorManageme
public bool? GenerateClientRequestId { get; set; }

/// <summary>
/// Gets the IFrontDoorsOperations.
/// Gets the INetworkExperimentProfilesOperations.
/// </summary>
public virtual IFrontDoorsOperations FrontDoors { get; private set; }
public virtual INetworkExperimentProfilesOperations NetworkExperimentProfiles { get; private set; }

/// <summary>
/// Gets the IRoutingRulesOperations.
/// Gets the IPreconfiguredEndpointsOperations.
/// </summary>
public virtual IRoutingRulesOperations RoutingRules { get; private set; }
public virtual IPreconfiguredEndpointsOperations PreconfiguredEndpoints { get; private set; }

/// <summary>
/// Gets the IHealthProbeSettingsOperations.
/// Gets the IExperimentsOperations.
/// </summary>
public virtual IHealthProbeSettingsOperations HealthProbeSettings { get; private set; }
public virtual IExperimentsOperations Experiments { get; private set; }

/// <summary>
/// Gets the ILoadBalancingSettingsOperations.
/// Gets the IReportsOperations.
/// </summary>
public virtual ILoadBalancingSettingsOperations LoadBalancingSettings { get; private set; }
public virtual IReportsOperations Reports { get; private set; }

/// <summary>
/// Gets the IBackendPoolsOperations.
/// Gets the IFrontDoorsOperations.
/// </summary>
public virtual IBackendPoolsOperations BackendPools { get; private set; }
public virtual IFrontDoorsOperations FrontDoors { get; private set; }

/// <summary>
/// Gets the IFrontendEndpointsOperations.
Expand Down Expand Up @@ -359,11 +359,11 @@ public FrontDoorManagementClient(System.Uri baseUri, ServiceClientCredentials cr
/// </summary>
private void Initialize()
{
NetworkExperimentProfiles = new NetworkExperimentProfilesOperations(this);
PreconfiguredEndpoints = new PreconfiguredEndpointsOperations(this);
Experiments = new ExperimentsOperations(this);
Reports = new ReportsOperations(this);
FrontDoors = new FrontDoorsOperations(this);
RoutingRules = new RoutingRulesOperations(this);
HealthProbeSettings = new HealthProbeSettingsOperations(this);
LoadBalancingSettings = new LoadBalancingSettingsOperations(this);
BackendPools = new BackendPoolsOperations(this);
FrontendEndpoints = new FrontendEndpointsOperations(this);
Endpoints = new EndpointsOperations(this);
Policies = new PoliciesOperations(this);
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -109,103 +109,6 @@ public static FrontendEndpoint Get(this IFrontendEndpointsOperations operations,
}
}

/// <summary>
/// Creates a new frontend endpoint with the specified host name within the
/// specified Front Door.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='frontendEndpointParameters'>
/// Frontend endpoint properties needed to create a new endpoint.
/// </param>
public static FrontendEndpoint CreateOrUpdate(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, FrontendEndpoint frontendEndpointParameters)
{
return operations.CreateOrUpdateAsync(resourceGroupName, frontDoorName, frontendEndpointName, frontendEndpointParameters).GetAwaiter().GetResult();
}

/// <summary>
/// Creates a new frontend endpoint with the specified host name within the
/// specified Front Door.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='frontendEndpointParameters'>
/// Frontend endpoint properties needed to create a new endpoint.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<FrontendEndpoint> CreateOrUpdateAsync(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, FrontendEndpoint frontendEndpointParameters, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, frontDoorName, frontendEndpointName, frontendEndpointParameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}

/// <summary>
/// Deletes an existing frontend endpoint with the specified parameters.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
public static void Delete(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName)
{
operations.DeleteAsync(resourceGroupName, frontDoorName, frontendEndpointName).GetAwaiter().GetResult();
}

/// <summary>
/// Deletes an existing frontend endpoint with the specified parameters.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task DeleteAsync(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, CancellationToken cancellationToken = default(CancellationToken))
{
(await operations.DeleteWithHttpMessagesAsync(resourceGroupName, frontDoorName, frontendEndpointName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}

/// <summary>
/// Enables a frontendEndpoint for HTTPS traffic
/// </summary>
Expand Down Expand Up @@ -298,103 +201,6 @@ public static void DisableHttps(this IFrontendEndpointsOperations operations, st
(await operations.DisableHttpsWithHttpMessagesAsync(resourceGroupName, frontDoorName, frontendEndpointName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}

/// <summary>
/// Creates a new frontend endpoint with the specified host name within the
/// specified Front Door.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='frontendEndpointParameters'>
/// Frontend endpoint properties needed to create a new endpoint.
/// </param>
public static FrontendEndpoint BeginCreateOrUpdate(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, FrontendEndpoint frontendEndpointParameters)
{
return operations.BeginCreateOrUpdateAsync(resourceGroupName, frontDoorName, frontendEndpointName, frontendEndpointParameters).GetAwaiter().GetResult();
}

/// <summary>
/// Creates a new frontend endpoint with the specified host name within the
/// specified Front Door.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='frontendEndpointParameters'>
/// Frontend endpoint properties needed to create a new endpoint.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<FrontendEndpoint> BeginCreateOrUpdateAsync(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, FrontendEndpoint frontendEndpointParameters, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, frontDoorName, frontendEndpointName, frontendEndpointParameters, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}

/// <summary>
/// Deletes an existing frontend endpoint with the specified parameters.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
public static void BeginDelete(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName)
{
operations.BeginDeleteAsync(resourceGroupName, frontDoorName, frontendEndpointName).GetAwaiter().GetResult();
}

/// <summary>
/// Deletes an existing frontend endpoint with the specified parameters.
/// </summary>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='resourceGroupName'>
/// Name of the Resource group within the Azure subscription.
/// </param>
/// <param name='frontDoorName'>
/// Name of the Front Door which is globally unique.
/// </param>
/// <param name='frontendEndpointName'>
/// Name of the Frontend endpoint which is unique within the Front Door.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task BeginDeleteAsync(this IFrontendEndpointsOperations operations, string resourceGroupName, string frontDoorName, string frontendEndpointName, CancellationToken cancellationToken = default(CancellationToken))
{
(await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, frontDoorName, frontendEndpointName, null, cancellationToken).ConfigureAwait(false)).Dispose();
}

/// <summary>
/// Enables a frontendEndpoint for HTTPS traffic
/// </summary>
Expand Down
Loading