Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Az.StorageSync XML comments #18603

Merged
merged 1 commit into from
Jun 22, 2022
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 @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters

/// <summary>
/// Class BackgroundDataDownloadActivityConverter.
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}"
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}" />
/// </summary>
/// <seealso cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}" />
public class BackgroundDataDownloadActivityConverter : ConverterBase<PSBackgroundDataDownloadActivity, StorageSyncModels.ServerEndpointBackgroundDataDownloadActivity>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common
{
/// <summary>
/// Class StorageSyncClientWrapper.
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncClientWrapper" />
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncClientWrapper" />
/// </summary>
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncClientWrapper" />
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncClientWrapper" />
public class StorageSyncClientWrapper : IStorageSyncClientWrapper
{
/// <summary>
Expand Down Expand Up @@ -108,7 +106,7 @@ public class StorageSyncClientWrapper : IStorageSyncClientWrapper
/// Initializes a new instance of the <see cref="StorageSyncClientWrapper" /> class.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="activeDirectoryClient">The active directory client.</param>
/// <param name="microsoftGraphClient">The active directory client.</param>
public StorageSyncClientWrapper(IAzureContext context, MicrosoftGraphClient microsoftGraphClient)
: this(AzureSession.Instance.ClientFactory.CreateArmClient<StorageSyncManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager),
AzureSession.Instance.ClientFactory.CreateArmClient<AuthorizationManagementClient>(context, AzureEnvironment.Endpoint.ResourceManager),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common
{
/// <summary>
/// Class StorageSyncResourceManager.
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncResourceManager" />
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncResourceManager" />
/// </summary>
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Interfaces.IStorageSyncResourceManager" />
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.IStorageSyncResourceManager" />
public class StorageSyncResourceManager : IStorageSyncResourceManager
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ namespace Commands.StorageSync.Interop.Clients
{
/// <summary>
/// Function performs server certificate rollover
/// Implements the <see cref="StorageSync.Management.PowerShell.Cmdlets.CertificateRollover.ISyncServerCertificateRollover" />
/// Implements the <see cref="Commands.StorageSync.Interop.Interfaces.ISyncServerCertificateRollover" />
/// </summary>
/// <seealso cref="Commands.StorageSync.Interop.Interfaces.ISyncServerCertificateRollover" />
/// <seealso cref="StorageSync.Management.PowerShell.Cmdlets.CertificateRollover.ISyncServerCertificateRollover" />
public class SyncServerCertificateRolloverClient : ISyncServerCertificateRollover
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/StorageSync/StorageSync/Models/PSRegisteredServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class PSRegisteredServer : PSResourceBase
/// <value>The management endpoint URI.</value>
public string ManagementEndpointUri { get; set; }

// <summary>
/// <summary>
/// Gets or sets the monitoring endpoint URI.
/// </summary>
/// <value>The monitoring endpoint URI.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public class NewServerEndpointCommand : StorageSyncClientCmdletBase
HelpMessage = HelpMessages.TierFilesOlderThanDaysParameter)]
public int? TierFilesOlderThanDays { get; set; }

// <summary>
/// <summary>
/// Gets or sets a value indicating the policy to use for the initial download sync.
/// </summary>
/// <value>The initial download policy.</value>
Expand All @@ -197,7 +197,7 @@ public class NewServerEndpointCommand : StorageSyncClientCmdletBase
IgnoreCase = true)]
public string LocalCacheMode { get; set; }

// <summary>
/// <summary>
/// Gets or sets a value indicating the policy to use for the initial upload sync.
/// </summary>
/// <value>The initial upload policy.</value>
Expand Down