@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api NetworkManagementClient
@base https://management.azure.com
@version 2019-08-01
@auth OAuth2
@endpoints 7
@toc subscriptions(7)

@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}
@desc Deletes the specified private endpoint.
@required {resourceGroupName: any # The name of the resource group., privateEndpointName: any # The name of the private endpoint.}
@returns(200) Delete successful.
@returns(202) Accepted and the operation will complete asynchronously.
@returns(204) Delete successful.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}
@desc Gets the specified private endpoint by resource group.
@required {resourceGroupName: any # The name of the resource group., privateEndpointName: any # The name of the private endpoint.}
@optional {$expand: any # Expands referenced resources.}
@returns(200) Request successful. The operation returns the resulting private endpoint resource.

@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints/{privateEndpointName}
@desc Creates or updates an private endpoint in the specified resource group.
@required {resourceGroupName: any # The name of the resource group., privateEndpointName: any # The name of the private endpoint., parameters: any # Parameters supplied to the create or update private endpoint operation.}
@returns(200) Update successful. The operation returns the resulting private endpoint resource.
@returns(201) Create successful. The operation returns the resulting private endpoint resource.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/privateEndpoints
@desc Gets all private endpoints in a resource group.
@required {resourceGroupName: any # The name of the resource group.}
@returns(200) Request successful. The operation returns a list of private endpoint resources.

@endpoint GET /subscriptions/{subscriptionId}/providers/Microsoft.Network/privateEndpoints
@desc Gets all private endpoints in a subscription.
@returns(200) Request successful. The operation returns a list of private endpoint resources.

@endpoint GET /subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes
@desc Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
@required {location: any # The location of the domain name.}
@returns(200) Request successful. Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/locations/{location}/availablePrivateEndpointTypes
@desc Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
@required {location: any # The location of the domain name., resourceGroupName: any # The name of the resource group.}
@returns(200) Request successful. Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.

@end
