Skip to content

Consistent Formatting for Comment Summaries #27959

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Commands.ApiManagement.ServiceManagement.Models
{
public class PsApiManagementApi : PsApiManagementArmResource
{
/// <summary>
/// Gets or sets the API identifier
/// </summary>
public string ApiId { get; set; }

public string Name { get; set; }
Expand All @@ -36,6 +39,9 @@ public class PsApiManagementApi : PsApiManagementArmResource
/// </summary>
public string Path { get; set; }

/// <summary>
/// Gets or sets Type of API
/// </summary>
public string ApiType { get; set; }

/// <summary>
Expand All @@ -44,10 +50,16 @@ public class PsApiManagementApi : PsApiManagementArmResource
/// </summary>
public PsApiManagementSchema[] Protocols { get; set; }

/// <summary>
// Gets or sets the authorization server identifier
// map from AuthenticationSettings.OAuth2.AuthorizationServerId
/// </summary>
public string AuthorizationServerId { get; set; }

/// <summary>
// Gets or sets the authorization scope
// map from AuthenticationSettings.OAuth2.Scope
/// </summary>
public string AuthorizationScope { get; set; }

/// <summary>
Expand All @@ -62,10 +74,16 @@ public class PsApiManagementApi : PsApiManagementArmResource
/// </summary>
public string[] BearerTokenSendingMethod { get; set; }

/// <summary>
// Gets or sets the subscription key header name
// map from SubscriptionKeyParameterNames.Header
/// </summary>
public string SubscriptionKeyHeaderName { get; set; }

/// <summary>
// Gets or sets the subscription key query parameter name
// map from SubscriptionKeyParameterNames.Query
/// </summary>
public string SubscriptionKeyQueryParamName { get; set; }

/// <summary>
Expand Down Expand Up @@ -141,4 +159,4 @@ public class PsApiManagementApi : PsApiManagementArmResource
/// </summary>
public string TermsOfServiceUrl { get; set; }
}
}
}