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

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_10_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 DDoS protection plans management
 */
@Beta(SinceVersion.V1_10_0)
public DdosProtectionPlans ddosProtectionPlans() {
    if (this.ddosProtectionPlans == null) {
        this.ddosProtectionPlans = new DdosProtectionPlansImpl(this);
    }
    return this.ddosProtectionPlans;
}
 
Example 2
Source File: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to application security groups management
 */
@Beta(SinceVersion.V1_10_0)
public RouteFilters routeFilters() {
    if (this.routeFilters == null) {
        this.routeFilters = new RouteFiltersImpl(this);
    }
    return this.routeFilters;
}
 
Example 3
Source File: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to application security groups management
 */
@Beta(SinceVersion.V1_10_0)
public ApplicationSecurityGroups applicationSecurityGroups() {
    if (this.applicationSecurityGroups == null) {
        this.applicationSecurityGroups = new ApplicationSecurityGroupsImpl(this);
    }
    return this.applicationSecurityGroups;
}
 
Example 4
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing route filters
 */
@Beta(SinceVersion.V1_10_0)
public RouteFilters routeFilters() {
    return networkManager.routeFilters();
}
 
Example 5
Source File: NetworkWatcher.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to manage connection monitors associated with network watcher
 */
@Beta(SinceVersion.V1_10_0)
@Method
ConnectionMonitors connectionMonitors();
 
Example 6
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing DDoS protection plans
 */
@Beta(SinceVersion.V1_10_0)
public DdosProtectionPlans ddosProtectionPlans() {
    return networkManager.ddosProtectionPlans();
}
 
Example 7
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to managing express route circuits
 */
@Beta(SinceVersion.V1_10_0)
public ApplicationSecurityGroups applicationSecurityGroups() {
    return networkManager.applicationSecurityGroups();
}
 
Example 8
Source File: NetworkWatcher.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Lists all available internet service providers for a specified Azure region.
 * @return a stage to specify parameters for internet providers list
 */
@Beta(SinceVersion.V1_10_0)
@Method
AvailableProviders.DefinitionStages.WithExecute availableProviders();
 
Example 9
Source File: NetworkWatcher.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Gets the relative latency score for internet service providers from a specified location to Azure regions.
 * @return a stage to specify parameters for internet providers list
 */
@Beta(SinceVersion.V1_10_0)
@Method
AzureReachabilityReport.DefinitionStages.WithProviderLocation azureReachabilityReport();
 
Example 10
Source File: NetworkPeering.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the reference of the remote virtual network address space
 */
@Beta(SinceVersion.V1_10_0)
List<String> remoteAddressSpaces();
 
Example 11
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return a list that contains the Cosmos DB capabilities
 */
@Beta(SinceVersion.V1_10_0)
List<Capability> capabilities();
 
Example 12
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return a list that contains the Cosmos DB Virtual Network ACL Rules (empty list if none is set)
 */
@Beta(SinceVersion.V1_10_0)
List<VirtualNetworkRule> virtualNetworkRules();
 
Example 13
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * The database account kind for the CosmosDB account.
 *
 * @param kind the account kind
 * @param capabilities the list of Cosmos DB capabilities for the account
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withKind(DatabaseAccountKind kind, Capability... capabilities);
 
Example 14
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates a SQL CosmosDB account.
 *
 * @return the next stage of the definition
 */
@Method
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withDataModelSql();
 
Example 15
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates a MongoDB CosmosDB account.
 *
 * @return the next stage of the definition
 */
@Method
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withDataModelMongoDB();
 
Example 16
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates a Cassandra CosmosDB account.
 *
 * @return the next stage of the definition
 */
@Method
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withDataModelCassandra();
 
Example 17
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates an Azure Table CosmosDB account.
 *
 * @return the next stage of the definition
 */
@Method
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withDataModelAzureTable();
 
Example 18
Source File: CosmosDBAccount.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates a Gremlin CosmosDB account.
 *
 * @return the next stage of the definition
 */
@Method
@Beta(SinceVersion.V1_10_0)
WithConsistencyPolicy withDataModelGremlin();