com.microsoft.azure.management.apigeneration.Beta Java Examples

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta. 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: MonitorManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return the Azure Diagnostic Settings API entry point
 */
@Beta(SinceVersion.V1_8_0)
public DiagnosticSettings diagnosticSettings() {
    if (this.diagnosticSettings == null) {
        this.diagnosticSettings = new DiagnosticSettingsImpl(this);
    }
    return this.diagnosticSettings;
}
 
Example #2
Source File: NetworkManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to virtual network gateways management
 */
@Beta(SinceVersion.V1_3_0)
public VirtualNetworkGateways virtualNetworkGateways() {
    if (this.virtualNetworkGateways == null) {
        this.virtualNetworkGateways = new VirtualNetworkGatewaysImpl(this);
    }
    return this.virtualNetworkGateways;
}
 
Example #3
Source File: EventHubManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to manage event hubs
 */
@Beta(SinceVersion.V2_0_0)
public EventHubs eventHubs() {
    if (this.eventHubs == null) {
        this.eventHubs = new EventHubsImpl(this, this.storageManager);
    }
    return this.eventHubs;
}
 
Example #4
Source File: EventHubManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to manage disaster recovery pairing of event hub namespaces.
 */
@Beta(SinceVersion.V2_0_0)
public EventHubDisasterRecoveryPairings eventHubDisasterRecoveryPairings() {
    if (this.eventHubDisasterRecoveryPairings == null) {
        this.eventHubDisasterRecoveryPairings = new EventHubDisasterRecoveryPairingsImpl(this);
    }
    return this.eventHubDisasterRecoveryPairings;
}
 
Example #5
Source File: ComputeManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return the compute service gallery image management entry point
 */
@Beta(Beta.SinceVersion.V1_15_0)
public GalleryImages galleryImages() {
    if (galleryImages == null) {
        galleryImages = new GalleryImagesImpl(this);
    }
    return galleryImages;
}
 
Example #6
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return an Observable streaming trace logs
 */
@Beta(SinceVersion.V1_18_0)
@Method
Observable<String> streamTraceLogsAsync();
 
Example #7
Source File: ContainerGroup.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * Restarts all containers in a container group in place. If container image has updates, new image will be downloaded.
 */
@Beta(Beta.SinceVersion.V1_15_0)
@Method
void restart();
 
Example #8
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return a open stream to the trace logs
 */
@Beta(SinceVersion.V1_18_0)
@Method
InputStream streamTraceLogs();
 
Example #9
Source File: Azure.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return entry point to listing metric definitions in Azure
 */
@Beta(SinceVersion.V1_6_0)
public MetricDefinitions metricDefinitions() {
    return this.monitorManager.metricDefinitions();
}
 
Example #10
Source File: EventHubDisasterRecoveryPairing.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * Perform fail over so that the secondary namespace becomes the primary.
 */
@Method
@Beta(Beta.SinceVersion.V1_7_0)
void failOver();
 
Example #11
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return a open stream to the HTTP logs
 */
@Beta(SinceVersion.V1_18_0)
@Method
InputStream streamHttpLogs();
 
Example #12
Source File: ElasticPoolActivity.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the geo-location where the resource lives.
 */
@Beta(Beta.SinceVersion.V1_7_0)
String location();
 
Example #13
Source File: ElasticPoolActivity.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return he requested per database DTU guarantee.
 */
@Beta(Beta.SinceVersion.V1_7_0)
int requestedDatabaseDtuGuarantee();
 
Example #14
Source File: ApplicationGatewayBackendHttpConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies HTTPS as the protocol.
 * @return the next stage of the update
 */
@Method
@Beta(SinceVersion.V1_4_0)
Update withHttps();
 
Example #15
Source File: BatchAIJob.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @param id The name for the output directory
 * @return the nest stage of the definition for output directory settings
 */
@Method
@Beta(Beta.SinceVersion.V1_8_0)
OutputDirectorySettings.DefinitionStages.Blank<WithCreate> defineOutputDirectory(String id);
 
Example #16
Source File: NicIPConfiguration.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the application gateway backend to associate this IP configuration with.
 * @param appGateway an existing application gateway
 * @param backendName the name of an existing backend on the application gateway
 * @return the next stage of the update
 */
@Beta(SinceVersion.V1_4_0)
Update withExistingApplicationGatewayBackend(ApplicationGateway appGateway, String backendName);
 
Example #17
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * 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 #18
Source File: SqlServers.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Lists the Azure SQL server usages for a given Azure region.
 *
 * @param region the location to get the Azure SQL server usages for
 * @return the SQL usage object
 */
@Beta(Beta.SinceVersion.V1_8_0)
List<SqlSubscriptionUsageMetric> listUsageByRegion(Region region);
 
Example #19
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 #20
Source File: Registries.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Checks if container registry name is valid and is not in use asynchronously.
 *
 * @param name the container registry name to check
 * @return a representation of the future computation of this call, returning whether the name is available or other info if not
 */
@Beta(SinceVersion.V1_4_0)
Observable<CheckNameAvailabilityResult> checkNameAvailabilityAsync(String name);
 
Example #21
Source File: EventHubConsumerGroups.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Lists the consumer groups of an event hub in a namespace under a resource group.
 *
 * @param resourceGroupName namespace resource group name
 * @param namespaceName event hub parent namespace name
 * @param eventHubName event hub name
 * @return observable that emits the consumer groups
 */
@Beta(Beta.SinceVersion.V1_7_0)
Observable<EventHubConsumerGroup> listByEventHubAsync(String resourceGroupName, String namespaceName, String eventHubName);
 
Example #22
Source File: CdnProfile.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Starts the definition of a new endpoint to be attached to this Premium Verizon CDN profile.
 *
 * @param name a name for the endpoint
 * @param endpointOriginHostname the endpoint origin hostname.
 * @return the first stage of an endpoint definition
 */
@Beta // TODO: why is this taking more than just the name?
CdnEndpoint.UpdateDefinitionStages.WithPremiumAttach<Update> defineNewPremiumEndpoint(String name, String endpointOriginHostname);
 
Example #23
Source File: SqlServers.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the SQL Sync Group entry point
 */
@Beta(Beta.SinceVersion.V1_9_0)
SqlSyncMemberOperations syncMembers();
 
Example #24
Source File: EventHubDisasterRecoveryPairing.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies that the given namespace should be used as secondary namespace in disaster recovery pairing.
 *
 * @param namespaceId the secondary namespace
 * @return next stage of the disaster recovery pairing update
 */
@Beta(Beta.SinceVersion.V1_7_0)
Update withExistingSecondaryNamespaceId(String namespaceId);
 
Example #25
Source File: EventHubNamespaceAuthorizationRules.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Deletes an authorization rule under a namespace in a resource group.
 *
 * @param resourceGroupName resource group name
 * @param namespaceName namespace name
 * @param name authorization rule name
 */
@Beta(Beta.SinceVersion.V1_7_0)
void deleteByName(String resourceGroupName, String namespaceName, String name);
 
Example #26
Source File: SqlDatabase.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Creates a new database from a restore point.
 *
 * @param restorePoint the restore point
 * @return The next stage of the definition.
 */
@Beta(Beta.SinceVersion.V1_7_0)
SqlDatabase.DefinitionStages.WithAttachAllOptions<ParentT> fromRestorePoint(RestorePoint restorePoint);
 
Example #27
Source File: EventHubConsumerGroup.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the event hub for which consumer group needs to be created.
 *
 * @param eventHub event hub
 * @return next stage of the consumer group definition
 */
@Beta(Beta.SinceVersion.V1_7_0)
WithCreate withExistingEventHub(EventHub eventHub);
 
Example #28
Source File: EventHubConsumerGroup.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies the event hub for which consumer group needs to be created.
 *
 * @param eventHubId ARM resource id of event hub
 * @return next stage of the consumer group definition
 */
@Beta(Beta.SinceVersion.V1_7_0)
WithCreate withExistingEventHubId(String eventHubId);
 
Example #29
Source File: SqlElasticPool.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Lists the database metrics for this SQL Elastic Pool.
 *
 * @param filter an OData filter expression that describes a subset of metrics to return
 * @return the elastic pool's database metrics
 */
@Method
@Beta(Beta.SinceVersion.V1_7_0)
List<SqlDatabaseMetric> listDatabaseMetrics(String filter);
 
Example #30
Source File: EventHubNamespace.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return namespace sku
 */
@Beta(Beta.SinceVersion.V1_7_0)
EventHubNamespaceSkuType sku();