com.azure.resourcemanager.sql.implementation.SqlSyncGroupOperationsImpl 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.implementation;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.management.Region;
import com.azure.resourcemanager.resources.fluentcore.arm.ResourceId;
import com.azure.resourcemanager.resources.fluentcore.arm.models.implementation.ExternalChildResourceImpl;
import com.azure.resourcemanager.sql.SqlServerManager;
import com.azure.resourcemanager.sql.fluent.models.SyncDatabaseIdPropertiesInner;
import com.azure.resourcemanager.sql.fluent.models.SyncGroupInner;
import com.azure.resourcemanager.sql.models.SqlSyncGroup;
import com.azure.resourcemanager.sql.models.SqlSyncGroupOperations;
import reactor.core.publisher.Mono;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import com.azure.resourcemanager.resources.fluentcore.utils.PagedConverter;
/** Implementation for SQL Sync Group operations. */
public class SqlSyncGroupOperationsImpl
implements SqlSyncGroupOperations, SqlSyncGroupOperations.SqlSyncGroupActionsDefinition {
protected SqlServerManager sqlServerManager;
protected SqlDatabaseImpl sqlDatabase;
SqlSyncGroupOperationsImpl(SqlDatabaseImpl parent, SqlServerManager sqlServerManager) {
Objects.requireNonNull(parent);
Objects.requireNonNull(sqlServerManager);
this.sqlDatabase = parent;
this.sqlServerManager = sqlServerManager;
}
SqlSyncGroupOperationsImpl(SqlServerManager sqlServerManager) {
Objects.requireNonNull(sqlServerManager);
this.sqlServerManager = sqlServerManager;
}
@Override
public SqlSyncGroup getBySqlServer(
String resourceGroupName, String sqlServerName, String databaseName, String name) {
SyncGroupInner syncGroupInner =
this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.get(resourceGroupName, sqlServerName, databaseName, name);
return syncGroupInner != null
? new SqlSyncGroupImpl(
resourceGroupName, sqlServerName, databaseName, name, syncGroupInner, this.sqlServerManager)
: null;
}
@Override
public Mono getBySqlServerAsync(
final String resourceGroupName, final String sqlServerName, final String databaseName, final String name) {
return this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.getAsync(resourceGroupName, sqlServerName, databaseName, name)
.map(
syncGroupInner ->
new SqlSyncGroupImpl(
resourceGroupName, sqlServerName, databaseName, name, syncGroupInner, sqlServerManager));
}
@Override
public PagedIterable listSyncDatabaseIds(String locationName) {
return PagedConverter.mapPage(this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.listSyncDatabaseIds(locationName),
SyncDatabaseIdPropertiesInner::id);
}
@Override
public PagedFlux listSyncDatabaseIdsAsync(String locationName) {
return PagedConverter.mapPage(this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.listSyncDatabaseIdsAsync(locationName),
SyncDatabaseIdPropertiesInner::id);
}
@Override
public PagedIterable listSyncDatabaseIds(Region region) {
return this.listSyncDatabaseIds(region.name());
}
@Override
public PagedFlux listSyncDatabaseIdsAsync(Region region) {
return this.listSyncDatabaseIdsAsync(region.name());
}
@Override
public SqlSyncGroupImpl define(String name) {
SqlSyncGroupImpl result = new SqlSyncGroupImpl(name, new SyncGroupInner(), this.sqlServerManager);
result.setPendingOperation(ExternalChildResourceImpl.PendingOperation.ToBeCreated);
return (this.sqlDatabase != null) ? result.withExistingSqlDatabase(this.sqlDatabase) : result;
}
@Override
public SqlSyncGroup get(String name) {
if (this.sqlDatabase == null) {
return null;
}
return this
.getBySqlServer(
this.sqlDatabase.resourceGroupName(), this.sqlDatabase.sqlServerName(), this.sqlDatabase.name(), name);
}
@Override
public Mono getAsync(String name) {
if (this.sqlDatabase == null) {
return null;
}
return this
.getBySqlServerAsync(
this.sqlDatabase.resourceGroupName(), this.sqlDatabase.sqlServerName(), this.sqlDatabase.name(), name);
}
@Override
public SqlSyncGroup getById(String id) {
Objects.requireNonNull(id);
try {
ResourceId resourceId = ResourceId.fromString(id);
return this
.getBySqlServer(
resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
} catch (NullPointerException e) {
}
return null;
}
@Override
public Mono getByIdAsync(String id) {
Objects.requireNonNull(id);
try {
ResourceId resourceId = ResourceId.fromString(id);
return this
.getBySqlServerAsync(
resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
} catch (NullPointerException e) {
}
return null;
}
@Override
public void delete(String name) {
if (this.sqlDatabase == null) {
return;
}
this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.delete(
this.sqlDatabase.resourceGroupName(), this.sqlDatabase.sqlServerName(), this.sqlDatabase.name(), name);
}
@Override
public Mono deleteAsync(String name) {
if (this.sqlDatabase == null) {
return null;
}
return this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.deleteAsync(
this.sqlDatabase.resourceGroupName(), this.sqlDatabase.sqlServerName(), this.sqlDatabase.name(), name);
}
@Override
public void deleteById(String id) {
Objects.requireNonNull(id);
try {
ResourceId resourceId = ResourceId.fromString(id);
this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.delete(
resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
} catch (NullPointerException e) {
}
}
@Override
public Mono deleteByIdAsync(String id) {
try {
ResourceId resourceId = ResourceId.fromString(id);
return this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.deleteAsync(
resourceId.resourceGroupName(),
resourceId.parent().parent().name(),
resourceId.parent().name(),
resourceId.name());
} catch (NullPointerException e) {
}
return null;
}
@Override
public List list() {
List sqlSyncGroups = new ArrayList<>();
if (this.sqlDatabase != null) {
PagedIterable syncGroupInners =
this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.listByDatabase(
this.sqlDatabase.resourceGroupName(),
this.sqlDatabase.sqlServerName(),
this.sqlDatabase.name());
for (SyncGroupInner groupInner : syncGroupInners) {
sqlSyncGroups
.add(new SqlSyncGroupImpl(groupInner.name(), this.sqlDatabase, groupInner, this.sqlServerManager));
}
}
return Collections.unmodifiableList(sqlSyncGroups);
}
@Override
public PagedFlux listAsync() {
final SqlSyncGroupOperationsImpl self = this;
return PagedConverter.mapPage(this
.sqlServerManager
.serviceClient()
.getSyncGroups()
.listByDatabaseAsync(
this.sqlDatabase.resourceGroupName(), this.sqlDatabase.sqlServerName(), this.sqlDatabase.name()),
syncGroupInner ->
new SqlSyncGroupImpl(
syncGroupInner.name(), self.sqlDatabase, syncGroupInner, self.sqlServerManager));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy