Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.eventhub; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.eventhub.implementation.AccessKeysInner; import com.microsoft.azure.management.resources.fluentcore.model.HasInner;
Type representing access key of DisasterRecoveryPairingAuthorizationRule.
/** * Type representing access key of {@link DisasterRecoveryPairingAuthorizationRule}. */
@Fluent @Beta(Beta.SinceVersion.V1_7_0) public interface DisasterRecoveryPairingAuthorizationKey extends HasInner<AccessKeysInner> {
Returns:primary access key
/** * @return primary access key */
@Beta(Beta.SinceVersion.V1_7_0) String primaryKey();
Returns:secondary access key
/** * @return secondary access key */
@Beta(Beta.SinceVersion.V1_7_0) String secondaryKey();
Returns:primary connection string
/** * @return primary connection string */
@Beta(Beta.SinceVersion.V1_7_0) String primaryConnectionString();
Returns:secondary connection string
/** * @return secondary connection string */
@Beta(Beta.SinceVersion.V1_7_0) String secondaryConnectionString();
Returns:alias primary connection string
/** * @return alias primary connection string */
@Beta(Beta.SinceVersion.V1_7_0) String aliasPrimaryConnectionString();
Returns:alias secondary connection string
/** * @return alias secondary connection string */
@Beta(Beta.SinceVersion.V1_7_0) String aliasSecondaryConnectionString(); }