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.LogicApp XML Comments #18447

Merged
merged 1 commit into from
Jun 9, 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 @@ -141,6 +141,7 @@ public IList<QualifiedIntegrationAccountControlNumber> ListIntegrationAccountGen
/// </summary>
/// <param name="sessionContent">The session content.</param>
/// <param name="integrationAccountAgreementName">The integration account agreement name.</param>
/// <param name="controlNumber"></param>
/// <returns>The <see cref="IntegrationAccountControlNumber"/>.</returns>
/// <exception cref="PSInvalidOperationException">If the session content is not in the expected format.</exception>
private static IntegrationAccountControlNumber SessionContentToIntegrationAccountControlNumber(object sessionContent, string integrationAccountAgreementName, string controlNumber = null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public void CancelWorkflowRun(string resourceGroupName, string workflowName,
/// </summary>
/// <param name="resourceGroupName">Name of the resource group</param>
/// <param name="workflowName">Name of the workflow</param>
/// <param name="nextPageLink"></param>
/// <returns>List of workflow runs</returns>
public Page<WorkflowRun> GetWorkflowRuns(string resourceGroupName, string workflowName, string nextPageLink = "")
{
Expand Down Expand Up @@ -81,6 +82,7 @@ public WorkflowRunAction GetWorkflowRunAction(string resourceGroupName, string w
/// <param name="resourceGroupName">Name of the resource group</param>
/// <param name="workflowName">Name of the workflow</param>
/// <param name="runName">Name of the workflow run</param>
/// <param name="nextPageLink"></param>
/// <returns>Actions of the specified workflow run</returns>
public Page<WorkflowRunAction> GetWorkflowRunActions(string resourceGroupName, string workflowName, string runName, string nextPageLink = "")
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public WorkflowTriggerCallbackUrl GetWorkflowTriggerCallbackUrl(string resourceG
/// <param name="resourceGroupName">Name of the resource group</param>
/// <param name="workflowName">Name of the workflow</param>
/// <param name="triggerName">Name of the trigger</param>
/// <param name="nextPageLink"></param>
/// <returns>List of trigger histories</returns>
public Page<WorkflowTriggerHistory> GetWorkflowTriggerHistories(string resourceGroupName, string workflowName,
string triggerName, string nextPageLink = "")
Expand Down