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

[AutoPR network/resource-manager] Fixed operationIds for non-CRUD operations in ExpressRouteCrossConnections #366

Merged
merged 1 commit into from
Mar 22, 2018
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 @@ -384,7 +384,7 @@ private ServiceResponse<Void> beginDeleteDelegate(Response<ResponseBody> respons
}

/**
* Gets the specified peering for the ExpressrouteCrossConnection.
* Gets the specified peering for the ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -399,7 +399,7 @@ public ExpressRouteCrossConnectionPeeringInner get(String resourceGroupName, Str
}

/**
* Gets the specified peering for the ExpressrouteCrossConnection.
* Gets the specified peering for the ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -413,7 +413,7 @@ public ServiceFuture<ExpressRouteCrossConnectionPeeringInner> getAsync(String re
}

/**
* Gets the specified peering for the ExpressrouteCrossConnection.
* Gets the specified peering for the ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -431,7 +431,7 @@ public ExpressRouteCrossConnectionPeeringInner call(ServiceResponse<ExpressRoute
}

/**
* Gets the specified peering for the ExpressrouteCrossConnection.
* Gets the specified peering for the ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand Down Expand Up @@ -477,7 +477,7 @@ private ServiceResponse<ExpressRouteCrossConnectionPeeringInner> getDelegate(Res
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -493,7 +493,7 @@ public ExpressRouteCrossConnectionPeeringInner createOrUpdate(String resourceGro
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -508,7 +508,7 @@ public ServiceFuture<ExpressRouteCrossConnectionPeeringInner> createOrUpdateAsyn
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -527,7 +527,7 @@ public ExpressRouteCrossConnectionPeeringInner call(ServiceResponse<ExpressRoute
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand Down Expand Up @@ -561,7 +561,7 @@ public Observable<ServiceResponse<ExpressRouteCrossConnectionPeeringInner>> crea
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -577,7 +577,7 @@ public ExpressRouteCrossConnectionPeeringInner beginCreateOrUpdate(String resour
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -592,7 +592,7 @@ public ServiceFuture<ExpressRouteCrossConnectionPeeringInner> beginCreateOrUpdat
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand All @@ -611,7 +611,7 @@ public ExpressRouteCrossConnectionPeeringInner call(ServiceResponse<ExpressRoute
}

/**
* Creates or updates a peering in the specified ExpressrouteCrossConnection.
* Creates or updates a peering in the specified ExpressRouteCrossConnection.
*
* @param resourceGroupName The name of the resource group.
* @param crossConnectionName The name of the ExpressRouteCrossConnection.
Expand Down
Loading