Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
.NET SDK Resource Provider:'NetApp'
REST Spec PR 'Azure/azure-rest-api-specs#5370'
REST Spec PR Author 'leonardbf'
REST Spec PR Last commit
  • Loading branch information
adxsdknet committed Mar 13, 2019
commit 0bf4c9b2636d205926d863d44933064ace22add2
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ public ActiveDirectories()
/// <summary>
/// Initializes a new instance of the ActiveDirectories class.
/// </summary>
/// <param name="activeDirectoryId">Id of the active drectory</param>
/// <param name="activeDirectoryId">Id of the Active Directory</param>
/// <param name="username">Username of Active Directory domain
/// administrator</param>
/// <param name="password">Plain text password of Active Directory
/// domain administrator</param>
/// <param name="domain">Name of the Active Directory domain</param>
/// <param name="dNS">Comma separated list of DNS server IP addresses
/// for the Active Directory domain</param>
/// <param name="status">Status of the active drectory</param>
/// <param name="status">Status of the Active Directory</param>
/// <param name="sMBServerName">NetBIOS name of the SMB server. This
/// name will be registered as a computer account in the AD and used to
/// mount volumes</param>
Expand All @@ -62,7 +62,7 @@ public ActiveDirectories()
partial void CustomInit();

/// <summary>
/// Gets or sets id of the active drectory
/// Gets or sets id of the Active Directory
/// </summary>
[JsonProperty(PropertyName = "activeDirectoryId")]
public string ActiveDirectoryId { get; set; }
Expand Down Expand Up @@ -94,7 +94,7 @@ public ActiveDirectories()
public string DNS { get; set; }

/// <summary>
/// Gets or sets status of the active drectory
/// Gets or sets status of the Active Directory
/// </summary>
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public ExportPolicyRule()
/// <param name="nfsv3">Allows NFSv3 protocol</param>
/// <param name="nfsv4">Allows NFSv4 protocol</param>
/// <param name="allowedClients">Client ingress specification as comma
/// seperated string with IPv4 CIDRs, IPv4 host addresses and host
/// separated string with IPv4 CIDRs, IPv4 host addresses and host
/// names</param>
public ExportPolicyRule(int? ruleIndex = default(int?), bool? unixReadOnly = default(bool?), bool? unixReadWrite = default(bool?), bool? cifs = default(bool?), bool? nfsv3 = default(bool?), bool? nfsv4 = default(bool?), string allowedClients = default(string))
{
Expand Down Expand Up @@ -92,7 +92,7 @@ public ExportPolicyRule()
public bool? Nfsv4 { get; set; }

/// <summary>
/// Gets or sets client ingress specification as comma seperated string
/// Gets or sets client ingress specification as comma separated string
/// with IPv4 CIDRs, IPv4 host addresses and host names
/// </summary>
[JsonProperty(PropertyName = "allowedClients")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public MountTarget()
/// Gets or sets smbServerFQDN
/// </summary>
/// <remarks>
/// The SMB server's Fully Qualified Doman Name, FQDN
/// The SMB server's Fully Qualified Domain Name, FQDN
/// </remarks>
[JsonProperty(PropertyName = "properties.smbServerFqdn")]
public string SmbServerFqdn { get; set; }
Expand Down