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.Relay XML Comments #18485

Merged
merged 1 commit into from
Jun 21, 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
6 changes: 1 addition & 5 deletions src/Relay/Relay/Models/PSAuthorizationRuleAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,7 @@ public partial class PSAuthorizationRuleAttributes
/// <summary>
/// Initializes a new instance of the AuthorizationRule class.
/// </summary>
/// <param name="rights">The rights associated with the rule.</param>
/// <param name="id">Resource Id</param>
/// <param name="name">Resource name</param>
/// <param name="type">Resource type</param>

/// <param name="authorizationrule"></param>
public PSAuthorizationRuleAttributes(AuthorizationRule authorizationrule)
{
Id = authorizationrule.Id;
Expand Down
22 changes: 1 addition & 21 deletions src/Relay/Relay/Models/PSWcfRelayAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,7 @@ public PSWcfRelayAttributes() { }
/// <summary>
/// Initializes a new instance of the WcfRelay class.
/// </summary>
/// <param name="id">Resource Id</param>
/// <param name="name">Resource name</param>
/// <param name="type">Resource type</param>
/// <param name="relayType">WCFRelay Type. Possible values include:
/// 'NetTcp', 'Http'</param>
/// <param name="createdAt">The time the WCFRelay was created.</param>
/// <param name="updatedAt">The time the namespace was updated.</param>
/// <param name="listenerCount">The number of listeners for this relay.
/// min : 1 and max:25 supported</param>
/// <param name="requiresClientAuthorization">true if client
/// authorization is needed for this relay; otherwise, false.</param>
/// <param name="requiresTransportSecurity">true if transport security
/// is needed for this relay; otherwise, false.</param>
/// <param name="isDynamic">true if the relay is dynamic; otherwise,
/// false.</param>
/// <param name="userMetadata">usermetadata is a placeholder to store
/// user-defined string data for the HybridConnection endpoint.e.g. it
/// can be used to store descriptive data, such as list of teams and
/// their contact information also user-defined configuration settings
/// can be stored.</param>

/// <param name="wcfRelay"></param>
public PSWcfRelayAttributes(WcfRelay wcfRelay)
{
Id = wcfRelay.Id;
Expand Down