![JAR search and dependency download from the Maven repository](/logo.png)
com.microsoft.azure.toolkit.lib.cosmos.sql.SqlContainerModule Maven / Gradle / Ivy
The newest version!
/*
* 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.toolkit.lib.cosmos.sql;
import com.azure.core.util.paging.ContinuablePage;
import com.azure.resourcemanager.cosmos.fluent.SqlResourcesClient;
import com.azure.resourcemanager.cosmos.fluent.models.SqlContainerGetResultsInner;
import com.azure.resourcemanager.resources.fluentcore.arm.ResourceId;
import com.microsoft.azure.toolkit.lib.common.exception.AzureToolkitRuntimeException;
import com.microsoft.azure.toolkit.lib.common.model.AbstractAzResourceModule;
import com.microsoft.azure.toolkit.lib.common.model.AzResource;
import com.microsoft.azure.toolkit.lib.common.operation.AzureOperation;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Collections;
import java.util.Iterator;
import java.util.Objects;
import java.util.Optional;
public class SqlContainerModule extends AbstractAzResourceModule {
private static final String NAME = "containers";
public SqlContainerModule(@Nonnull SqlDatabase parent) {
super(NAME, parent);
}
@Nonnull
@Override
protected SqlContainer newResource(@Nonnull SqlContainerGetResultsInner sqlContainer) {
return new SqlContainer(sqlContainer, this);
}
@Nonnull
@Override
protected SqlContainer newResource(@Nonnull String name, @Nullable String resourceGroupName) {
return new SqlContainer(name, Objects.requireNonNull(resourceGroupName), this);
}
@Nonnull
@Override
protected Iterator extends ContinuablePage> loadResourcePagesFromAzure() {
return Optional.ofNullable(getClient()).map(client -> {
try {
return client.listSqlContainers(parent.getResourceGroupName(), parent.getParent().getName(), parent.getName()).iterableByPage(getPageSize()).iterator();
} catch (final RuntimeException e) {
return null;
}
}).orElse(Collections.emptyIterator());
}
@Nullable
@Override
protected SqlContainerGetResultsInner loadResourceFromAzure(@Nonnull String name, @Nullable String resourceGroup) {
return Optional.ofNullable(getClient()).map(client -> {
try {
return client.getSqlContainer(parent.getResourceGroupName(), parent.getParent().getName(), parent.getName(), name);
} catch (final RuntimeException e) {
return null;
}
}).orElse(null);
}
@Override
@AzureOperation(name = "azure/cosmos.delete_sql_container.container", params = {"nameFromResourceId(resourceId)"})
protected void deleteResourceFromAzure(@Nonnull String resourceId) {
final ResourceId id = ResourceId.fromString(resourceId);
Optional.ofNullable(getClient()).ifPresent(client -> client.deleteSqlContainer(id.resourceGroupName(), id.parent().parent().name(), id.parent().name(), id.name()));
}
@Nonnull
@Override
protected AzResource.Draft newDraftForCreate(@Nonnull String name, @Nullable String rgName) {
return new SqlContainerDraft(name, Objects.requireNonNull(rgName), this);
}
@Nonnull
@Override
protected AzResource.Draft newDraftForUpdate(@Nonnull SqlContainer sqlContainer) {
throw new AzureToolkitRuntimeException("not supported");
}
@Override
protected @Nullable SqlResourcesClient getClient() {
return ((SqlDatabaseModule) this.parent.getModule()).getClient();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy