Interface WebAppDiagnosticLogs.UpdateStages.WithStorageLocationForWebServer<ParentT>
-
- Type Parameters:
ParentT- the stage of the parent update to return to after attaching this update
- All Known Subinterfaces:
WebAppDiagnosticLogs.UpdateDefinition<ParentT>
- Enclosing interface:
- WebAppDiagnosticLogs.UpdateStages
public static interface WebAppDiagnosticLogs.UpdateStages.WithStorageLocationForWebServer<ParentT>A web app diagnostic log update allowing web server log storage location to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAppDiagnosticLogs.UpdateStages.Update<ParentT>withoutWebServerLogsStoredOnFileSystem()Stops web server logs to be stored on the file system.WebAppDiagnosticLogs.UpdateStages.Update<ParentT>withoutWebServerLogsStoredOnStorageBlob()Stops web server logs to be stored on in a Storage blob.WebAppDiagnosticLogs.UpdateStages.WithAttachForWebServerFileSystem<ParentT>withWebServerLogsStoredOnFileSystem()Specifies the storage location of web server logs to be on the file system.WebAppDiagnosticLogs.UpdateStages.WithAttachForWebServerStorage<ParentT>withWebServerLogsStoredOnStorageBlob(String containerSasUrl)Specifies the storage location of web server logs to be on in a Storage blob.
-
-
-
Method Detail
-
withWebServerLogsStoredOnFileSystem
WebAppDiagnosticLogs.UpdateStages.WithAttachForWebServerFileSystem<ParentT> withWebServerLogsStoredOnFileSystem()
Specifies the storage location of web server logs to be on the file system.- Returns:
- the next stage of the definition
-
withWebServerLogsStoredOnStorageBlob
WebAppDiagnosticLogs.UpdateStages.WithAttachForWebServerStorage<ParentT> withWebServerLogsStoredOnStorageBlob(String containerSasUrl)
Specifies the storage location of web server logs to be on in a Storage blob.- Parameters:
containerSasUrl- the URL to the container including the SAS token- Returns:
- the next stage of the update
-
withoutWebServerLogsStoredOnFileSystem
WebAppDiagnosticLogs.UpdateStages.Update<ParentT> withoutWebServerLogsStoredOnFileSystem()
Stops web server logs to be stored on the file system.- Returns:
- the next stage of the update
-
withoutWebServerLogsStoredOnStorageBlob
WebAppDiagnosticLogs.UpdateStages.Update<ParentT> withoutWebServerLogsStoredOnStorageBlob()
Stops web server logs to be stored on in a Storage blob.- Returns:
- the next stage of the update
-
-