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

The following examples show how to use com.microsoft.azure.management.apigeneration.Beta.SinceVersion#V2_0_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: EventHubManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to manage EventHub namespaces
 */
@Beta(SinceVersion.V2_0_0)
public EventHubNamespaces namespaces() {
    if (this.namespaces == null) {
        this.namespaces = new EventHubNamespacesImpl(this);
    }
    return this.namespaces;
}
 
Example 2
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 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 hub consumer groups
 */
@Beta(SinceVersion.V2_0_0)
public EventHubConsumerGroups consumerGroups() {
    if (this.consumerGroups == null) {
        this.consumerGroups = new EventHubConsumerGroupsImpl(this);
    }
    return this.consumerGroups;
}
 
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: EventHubManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to manage event hub authorization rules.
 */
@Beta(SinceVersion.V2_0_0)
public EventHubAuthorizationRules eventHubAuthorizationRules() {
    if (this.eventHubAuthorizationRules == null) {
        this.eventHubAuthorizationRules = new EventHubAuthorizationRulesImpl(this);
    }
    return this.eventHubAuthorizationRules;
}
 
Example 6
Source File: EventHubManager.java    From azure-libraries-for-java with MIT License 5 votes vote down vote up
/**
 * @return entry point to manage event hub namespace authorization rules.
 */
@Beta(SinceVersion.V2_0_0)
public EventHubNamespaceAuthorizationRules namespaceAuthorizationRules() {
    if (this.namespaceAuthorizationRules == null) {
        this.namespaceAuthorizationRules = new EventHubNamespaceAuthorizationRulesImpl(this);
    }
    return this.namespaceAuthorizationRules;
}
 
Example 7
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 authorization rules.
 */
@Beta(SinceVersion.V2_0_0)
public DisasterRecoveryPairingAuthorizationRules disasterRecoveryPairingAuthorizationRules() {
    if (this.disasterRecoveryPairingAuthorizationRules == null) {
        this.disasterRecoveryPairingAuthorizationRules = new DisasterRecoveryPairingAuthorizationRulesImpl(this);
    }
    return this.disasterRecoveryPairingAuthorizationRules;
}