Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_5_0
The following examples show how to use
com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_5_0 .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return the last lines of docker logs for a Linux web app */ @Beta(SinceVersion.V1_5_0) @Method byte[] getContainerLogs();
Example 2
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return the last lines of docker logs for a Linux web app */ @Beta(SinceVersion.V1_5_0) @Method Observable<byte[]> getContainerLogsAsync();
Example 3
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return the zipped archive of docker logs for a Linux web app */ @Beta(SinceVersion.V1_5_0) @Method byte[] getContainerLogsZip();
Example 4
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return the zipped archive of docker logs for a Linux web app */ @Beta(SinceVersion.V1_5_0) @Method Observable<byte[]> getContainerLogsZipAsync();