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

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_11_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: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to express route cross connections management
 */
@Beta(SinceVersion.V1_11_0)
public ExpressRouteCrossConnections expressRouteCrossConnections() {
    if (this.expressRouteCrossConnections == null) {
        this.expressRouteCrossConnections = new ExpressRouteCrossConnectionsImpl(this);
    }
    return this.expressRouteCrossConnections;
}
 
Example 2
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Gets the deleted Azure key vault.
 *
 * @param vaultName
 *            The name of the vault.
 * @param location
 *            The location of the deleted vault.
 * @throws IllegalArgumentException
 *             thrown if parameters fail the validation
 * @throws CloudException
 *             thrown if the request is rejected by server
 * @throws RuntimeException
 *             all other wrapped checked exceptions if the request fails to be
 *             sent
 * @return the DeletedVault object if successful.
 */
@Beta(SinceVersion.V1_11_0)
DeletedVault getDeleted(String vaultName, String location);
 
Example 3
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * It brings online the specified region for the current Azure Cosmos DB database account.
 *
 * @param region Cosmos DB region
 */
@Beta(SinceVersion.V1_11_0)
void onlineRegion(Region region);
 
Example 4
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return whether soft delete is enabled for this key vault.
 */
@Beta(SinceVersion.V1_11_0)
boolean softDeleteEnabled();
 
Example 5
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Recovers a soft deleted vault.
 * 
 * @param resourceGroupName The name of the Resource Group to which the server belongs.
 * @param vaultName Name of the vault
 * @param location The location of the deleted vault.
 * @return the recovered Vault object if successful
 */
@Beta(SinceVersion.V1_11_0)
Observable<Vault> recoverSoftDeletedVaultAsync(String resourceGroupName, String vaultName, String location);
 
Example 6
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Recovers a soft deleted vault.
 * 
 * @param resourceGroupName The name of the Resource Group to which the server belongs.
 * @param vaultName Name of the vault
 * @param location The location of the deleted vault.
 * @return the recovered Vault object if successful
 */
@Beta(SinceVersion.V1_11_0)
Vault recoverSoftDeletedVault(String resourceGroupName, String vaultName, String location);
 
Example 7
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Checks that the vault name is valid and is not already in use.
 *
 * @param name
 *            The vault name.
 * @throws IllegalArgumentException
 *             thrown if parameters fail the validation
 * @return the observable to the CheckNameAvailabilityResult object
 */
@Beta(SinceVersion.V1_11_0)
Observable<CheckNameAvailabilityResult> checkNameAvailabilityAsync(String name);
 
Example 8
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Checks that the vault name is valid and is not already in use.
 *
 * @param name
 *            The vault name.
 * @throws IllegalArgumentException
 *             thrown if parameters fail the validation
 * @throws CloudException
 *             thrown if the request is rejected by server
 * @throws RuntimeException
 *             all other wrapped checked exceptions if the request fails to be
 *             sent
 * @return the CheckNameAvailabilityResult object if successful.
 */
@Beta(SinceVersion.V1_11_0)
CheckNameAvailabilityResult checkNameAvailability(String name);
 
Example 9
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Permanently deletes the specified vault. aka Purges the deleted Azure key
 * vault.
 *
 * @param vaultName
 *            The name of the soft-deleted vault.
 * @param location
 *            The location of the soft-deleted vault.
 * @throws IllegalArgumentException
 *             thrown if parameters fail the validation
 * @return the observable for the request
 */
@Beta(SinceVersion.V1_11_0)
Completable purgeDeletedAsync(String vaultName, String location);
 
Example 10
Source File: Vaults.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Permanently deletes the specified vault. aka Purges the deleted Azure key
 * vault.
 *
 * @param vaultName
 *            The name of the soft-deleted vault.
 * @param location
 *            The location of the soft-deleted vault.
 * @throws IllegalArgumentException
 *             thrown if parameters fail the validation
 * @throws CloudException
 *             thrown if the request is rejected by server
 * @throws RuntimeException
 *             all other wrapped checked exceptions if the request fails to be
 *             sent
 */
@Beta(SinceVersion.V1_11_0)
void purgeDeleted(String vaultName, String location);
 
Example 11
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Asynchronously it brings online the specified region for the current Azure Cosmos DB database account.
 *
 * @param region Cosmos DB region
 * @return a representation of the deferred computation of this call
 */
@Beta(SinceVersion.V1_11_0)
Completable onlineRegionAsync(Region region);
 
Example 12
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Enable purge protection for the key vault; valid only if soft delete is also enabled.
 * 
 * @return the next stage of key vault definition.
 */
@Beta(SinceVersion.V1_11_0)
WithCreate withPurgeProtectionEnabled();
 
Example 13
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * It takes offline the specified region for the current Azure Cosmos DB database account.
 *
 * @param region Cosmos DB region
 */
@Beta(SinceVersion.V1_11_0)
void offlineRegion(Region region);
 
Example 14
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Get the createMode value.
 * 
 * @return the createMode value
 */
@Beta(SinceVersion.V1_11_0)
CreateMode createMode();
 
Example 15
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Enable purge protection for the key vault; valid only if soft delete is also enabled.
 * 
 * @return the next stage of key vault definition.
 */
@Beta(SinceVersion.V1_11_0)
Update withPurgeProtectionEnabled();
 
Example 16
Source File: ApplicationGateway.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Begins the definition of a new application gateway path-based request routing rule and URL path map to be attached to the gateway.
 * Note: both will be created with the same name and attached to the gateway.
 * @param name a unique name for the URL path map
 * @return the first stage of the URL path map definition
 */
@Beta(SinceVersion.V1_11_0)
ApplicationGatewayUrlPathMap.UpdateDefinitionStages.Blank<Update> definePathBasedRoutingRule(String name);
 
Example 17
Source File: ApplicationGateway.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Begins the update of a URL path map.
 * @param name the name of an existing redirect configuration to update (case sensitive)
 * @return the next stage of the definition or null if the requested URL path map does not exist
 */
@Beta(SinceVersion.V1_11_0)
ApplicationGatewayUrlPathMap.Update updateUrlPathMap(String name);
 
Example 18
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Removes a Virtual Network ACL Rule for the CosmosDB account.
 *
 * @param virtualNetworkId the ID of a virtual network
 * @param subnetName the name of the subnet within the virtual network; the subnet must have the service
 *                   endpoints enabled for 'Microsoft.AzureCosmosDB'.
 * @return the next stage of the update definition
 */
@Beta(SinceVersion.V1_11_0)
WithOptionals withoutVirtualNetwork(String virtualNetworkId, String subnetName);
 
Example 19
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the list of Virtual Network ACL Rules for the CosmosDB account.
 *
 * @param virtualNetworkRules the list of Virtual Network ACL Rules.
 * @return the next stage
 */
@Beta(SinceVersion.V1_11_0)
WithCreate withVirtualNetworkRules(List<VirtualNetworkRule> virtualNetworkRules);
 
Example 20
Source File: ApplicationGateway.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return URL path maps, indexed by name (case sensitive)
 */
@Beta(SinceVersion.V1_11_0)
Map<String, ApplicationGatewayUrlPathMap> urlPathMaps();