Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_14_0
The following examples show how to use
com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_14_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: Registry.java From azure-libraries-for-java with MIT License | 2 votes |
/** * @return returns the upload location for the user to be able to upload the source. */ @Beta(SinceVersion.V1_14_0) SourceUploadDefinition getBuildSourceUploadUrl();
Example 2
Source File: Registry.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Gets the upload location for the user to be able to upload the source asynchronously. * * @return a representation of the future computation of this call */ @Beta(SinceVersion.V1_14_0) Observable<SourceUploadDefinition> getBuildSourceUploadUrlAsync();
Example 3
Source File: ApplicationGateway.java From azure-libraries-for-java with MIT License | 2 votes |
/** * @return whether HTTP2 enabled for the application gateway */ @Beta(SinceVersion.V1_14_0) boolean isHttp2Enabled();
Example 4
Source File: ApplicationGateway.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Enables HTTP2 for the application gateway. * @return the next stage of the definition */ @Beta(SinceVersion.V1_14_0) WithCreate withHttp2();
Example 5
Source File: ApplicationGateway.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Disables HTTP2 for the application gateway. * @return the next stage of the definition */ @Beta(SinceVersion.V1_14_0) WithCreate withoutHttp2();
Example 6
Source File: ApplicationGateway.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Enables HTTP2 for the application gateway. * @return the next stage of the update */ @Beta(SinceVersion.V1_14_0) Update withHttp2();
Example 7
Source File: ApplicationGateway.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Disables HTTP2 for the application gateway. * @return the next stage of the update */ @Beta(SinceVersion.V1_14_0) Update withoutHttp2();
Example 8
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Deploys a ZIP file onto the Azure specialized Java SE image on this web app. * @param zipFile the ZIP file to upload */ @Beta(SinceVersion.V1_14_0) void zipDeploy(File zipFile);
Example 9
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Deploys a ZIP file onto the Azure specialized Java SE image on this web app. * @param zipFile the ZIP file to upload * @return a completable of the operation */ @Beta(SinceVersion.V1_14_0) Completable zipDeployAsync(File zipFile);
Example 10
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Deploys a ZIP file onto the Azure specialized Java SE image on this web app. * @param zipFile the ZIP file to upload */ @Beta(SinceVersion.V1_14_0) void zipDeploy(InputStream zipFile);
Example 11
Source File: WebAppBase.java From azure-libraries-for-java with MIT License | 2 votes |
/** * Deploys a ZIP file onto the Azure specialized Java SE image on this web app. * @param zipFile the ZIP file to upload * @return a completable of the operation */ @Beta(SinceVersion.V1_14_0) Completable zipDeployAsync(InputStream zipFile);