@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api MonitorManagementClient
@base https://management.azure.com
@version 2017-05-01-preview
@auth OAuth2
@endpoints 4
@toc {resourceUri}(4)

@endpoint GET /{resourceUri}/providers/Microsoft.Insights/diagnosticSettings/{name}
@desc Gets the active diagnostic settings for the specified resource.
@required {resourceUri: any # The identifier of the resource., name: any # The name of the diagnostic setting.}
@returns(200) Successful request to get more information about diagnostic setting

@endpoint PUT /{resourceUri}/providers/Microsoft.Insights/diagnosticSettings/{name}
@desc Creates or updates diagnostic settings for the specified resource.
@required {resourceUri: any # The identifier of the resource., parameters: map # Parameters supplied to the operation., name: any # The name of the diagnostic setting.}
@returns(200) Successful request to create a diagnostic setting

@endpoint DELETE /{resourceUri}/providers/Microsoft.Insights/diagnosticSettings/{name}
@desc Deletes existing diagnostic settings for the specified resource.
@required {resourceUri: any # The identifier of the resource., name: any # The name of the diagnostic setting.}
@returns(200) Successful request to remove a diagnostic setting
@returns(204) Successful request to remove a diagnostic setting

@endpoint GET /{resourceUri}/providers/Microsoft.Insights/diagnosticSettings
@desc Gets the active diagnostic settings list for the specified resource.
@required {resourceUri: any # The identifier of the resource.}
@returns(200) Successful request to get more information about diagnostic setting

@end
