com.azure.resourcemanager.sql.models.ReplicationLink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.sql.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasId;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasName;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasResourceGroup;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
import com.azure.resourcemanager.resources.fluentcore.model.Refreshable;
import com.azure.resourcemanager.sql.fluent.models.ReplicationLinkInner;
import reactor.core.publisher.Mono;
import java.time.OffsetDateTime;
/** An immutable client-side representation of an Azure SQL Replication link. */
@Fluent
public interface ReplicationLink
extends Refreshable, HasInnerModel, HasResourceGroup, HasName, HasId {
/** @return name of the SQL Server to which this replication belongs */
String sqlServerName();
/** @return name of the SQL Database to which this replication belongs */
String databaseName();
/** @return the name of the Azure SQL Server hosting the partner Azure SQL Database. */
String partnerServer();
/** @return the name of the partner Azure SQL Database */
String partnerDatabase();
/** @return the Azure Region of the partner Azure SQL Database */
String partnerLocation();
/** @return the role of the SQL Database in the replication link */
ReplicationRole role();
/** @return the role of the partner SQL Database in the replication link */
ReplicationRole partnerRole();
/** @return start time for the replication link (ISO8601 format) */
OffsetDateTime startTime();
/** @return the percentage of the seeding completed for the replication link */
int percentComplete();
/** @return the replication state for the replication link */
ReplicationState replicationState();
/** @return the legacy value indicating whether termination is allowed (currently always returns true) */
boolean isTerminationAllowed();
/** @return the replication mode of this replication link */
String replicationMode();
/** Deletes the replication link. */
void delete();
/** Fails over the Azure SQL Database Replication Link. */
void failover();
/**
* Fails over the Azure SQL Database Replication Link.
*
* @return a representation of the deferred computation of this call
*/
Mono failoverAsync();
/** Forces fail over the Azure SQL Database Replication Link which may result in data loss. */
void forceFailoverAllowDataLoss();
/**
* Forces fail over the Azure SQL Database Replication Link which may result in data loss.
*
* @return a representation of the deferred computation of this call
*/
Mono forceFailoverAllowDataLossAsync();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy