Java Code Examples for com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_7_0

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_7_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: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing event hubs.
 */
@Beta(SinceVersion.V1_7_0)
public EventHubs eventHubs() {
    return this.eventHubManager.eventHubs();
}
 
Example 2
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing event hub namespace geo disaster recovery.
 */
@Beta(SinceVersion.V1_7_0)
public EventHubDisasterRecoveryPairings eventHubDisasterRecoveryPairings() {
    return this.eventHubManager.eventHubDisasterRecoveryPairings();
}
 
Example 3
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing event hub namespaces.
 */
@Beta(SinceVersion.V1_7_0)
public EventHubNamespaces eventHubNamespaces() {
    return this.eventHubManager.namespaces();
}
 
Example 4
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(InputStream warFile, String appName);
 
Example 5
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(InputStream warFile, String appName);
 
Example 6
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(File warFile, String appName);
 
Example 7
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(File warFile, String appName);
 
Example 8
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(InputStream warFile);
 
Example 9
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(InputStream warFile);
 
Example 10
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(File warFile);
 
Example 11
Source File: DeploymentSlot.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(File warFile);
 
Example 12
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(InputStream warFile, String appName);
 
Example 13
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(InputStream warFile, String appName);
 
Example 14
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(File warFile, String appName);
 
Example 15
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @param appName the name of the app, default to "ROOT" when not provided
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(File warFile, String appName);
 
Example 16
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(InputStream warFile);
 
Example 17
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(InputStream warFile);
 
Example 18
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 * @return a completable of the operation
 */
@Beta(SinceVersion.V1_7_0)
Completable warDeployAsync(File warFile);
 
Example 19
Source File: WebApp.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deploys a WAR file onto the Azure specialized Tomcat on this web app.
 * @param warFile the WAR file to upload
 */
@Beta(SinceVersion.V1_7_0)
void warDeploy(File warFile);