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

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V1_6_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 listing activity log events in Azure
 */
@Beta(SinceVersion.V1_6_0)
public ActivityLogs activityLogs() {
    return this.monitorManager.activityLogs();
}
 
Example 2
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 3
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return a open stream to the application logs
 */
@Beta(SinceVersion.V1_6_0)
@Method
InputStream streamApplicationLogs();
 
Example 4
Source File: WebAppBase.java    From azure-libraries-for-java with MIT License 4 votes vote down vote up
/**
 * @return an Observable streaming application logs
 */
@Beta(SinceVersion.V1_6_0)
@Method
Observable<String> streamApplicationLogsAsync();
 
Example 5
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the services that has access to the subnet.
 */
@Beta(SinceVersion.V1_6_0)
Map<ServiceEndpointType, List<Region>> servicesWithAccess();
 
Example 6
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies a service endpoint to enable access from.
 * @param service the service type
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_6_0)
WithAttach<ParentT> withAccessFromService(ServiceEndpointType service);
 
Example 7
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies a service endpoint to enable access from.
 * @param service the service type
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_6_0)
Update withAccessFromService(ServiceEndpointType service);
 
Example 8
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies that existing access from a service endpoint should be removed.
 * @param service the service type
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_6_0)
Update withoutAccessFromService(ServiceEndpointType service);
 
Example 9
Source File: Subnet.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * Specifies a service endpoint to enable access from.
 * @param service the service type
 * @return the next stage of the definition
 */
@Beta(SinceVersion.V1_6_0)
WithAttach<ParentT> withAccessFromService(ServiceEndpointType service);
 
Example 10
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return an authenticated Key Vault data client
 */
@Beta(SinceVersion.V1_6_0)
KeyVaultClient client();
 
Example 11
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the Key Vault key API entry point
 */
@Beta(SinceVersion.V1_6_0)
Keys keys();
 
Example 12
Source File: Vault.java    From azure-libraries-for-java with MIT License 2 votes vote down vote up
/**
 * @return the Key Vault secret API entry point
 */
@Beta(SinceVersion.V1_6_0)
Secrets secrets();