Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_18_0
The following examples show how to use
com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_18_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 a open stream to the HTTP logs */ @Beta(SinceVersion.V1_18_0) @Method InputStream streamHttpLogs();
Example 2
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return a open stream to the trace logs */ @Beta(SinceVersion.V1_18_0) @Method InputStream streamTraceLogs();
Example 3
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return a open stream to the deployment logs */ @Beta(SinceVersion.V1_18_0) @Method InputStream streamDeploymentLogs();
Example 4
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return a open stream to all logs */ @Beta(SinceVersion.V1_18_0) @Method InputStream streamAllLogs();
Example 5
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return an Observable streaming HTTP logs */ @Beta(SinceVersion.V1_18_0) @Method Observable<String> streamHttpLogsAsync();
Example 6
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return an Observable streaming trace logs */ @Beta(SinceVersion.V1_18_0) @Method Observable<String> streamTraceLogsAsync();
Example 7
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return an Observable streaming deployment logs */ @Beta(SinceVersion.V1_18_0) @Method Observable<String> streamDeploymentLogsAsync();
Example 8
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 4 votes |
/** * @return an Observable streaming all logs */ @Beta(SinceVersion.V1_18_0) @Method Observable<String> streamAllLogsAsync();
Example 9
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * @return the diagnostic logs configuration */ @Beta(SinceVersion.V1_18_0) WebAppDiagnosticLogs diagnosticLogsConfig();
Example 10
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Specifies the definition of a new diagnostic logs configuration. * @return the first stage of an diagnostic logs definition */ @Beta(SinceVersion.V1_18_0) WebAppDiagnosticLogs.DefinitionStages.Blank<WithCreate<FluentT>> defineDiagnosticLogsConfiguration();
Example 11
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Specifies the update of an existing diagnostic logs configuration. * @return the first stage of an diagnostic logs update */ @Beta(SinceVersion.V1_18_0) WebAppDiagnosticLogs.UpdateStages.Blank<Update<FluentT>> updateDiagnosticLogsConfiguration();