@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 6
@toc subscriptions(6)

@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}
@desc Deletes the specified network profile.
@required {resourceGroupName: any # The name of the resource group., networkProfileName: any # The name of the NetworkProfile.}
@returns(200) Delete successful.
@returns(202) Accepted and the operation will complete asynchronously.
@returns(204) Request successful. Resource does not exist.

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}
@desc Gets the specified network profile in a specified resource group.
@required {resourceGroupName: any # The name of the resource group., networkProfileName: any # The name of the public IP prefix.}
@optional {$expand: any # Expands referenced resources.}
@returns(200) Request successful. The operation returns the resulting NetworkProfile resource.

@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}
@desc Creates or updates a network profile.
@required {resourceGroupName: any # The name of the resource group., networkProfileName: any # The name of the network profile., parameters: any # Parameters supplied to the create or update network profile operation.}
@returns(200) Update successful. The operation returns the resulting NetworkProfile resource.
@returns(201) Create successful. The operation returns the resulting NetworkProfile resource.

@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/networkProfiles/{networkProfileName}
@desc Updates network profile tags.
@required {resourceGroupName: any # The name of the resource group., networkProfileName: any # The name of the network profile., parameters: any # Parameters supplied to update network profile tags.}
@returns(200) Update successful. The operation returns the resulting NetworkProfile resource.

@endpoint GET /subscriptions/{subscriptionId}/providers/Microsoft.Network/networkProfiles
@desc Gets all the network profiles in a subscription.
@returns(200) Request successful. The operation returns a list of NetworkProfile resources.

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

@end
