
com.blazebit.query.connector.gcp.base.GcpSchemaProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-connector-google-gcp-base Show documentation
Show all versions of blaze-query-connector-google-gcp-base Show documentation
A multi-platform querying library
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.query.connector.gcp.base;
import com.blazebit.query.spi.ConfigurationProvider;
import com.blazebit.query.spi.DataFetcher;
import com.blazebit.query.spi.QuerySchemaProvider;
import java.util.Set;
/**
* The schema provider for the GCP ResourceManager connector.
*
* @author Christian Beikov
* @since 1.0.0
*/
public final class GcpSchemaProvider implements QuerySchemaProvider {
/**
* Creates a new schema provider.
*/
public GcpSchemaProvider() {
}
@Override
public Set extends DataFetcher>> resolveSchemaObjects(ConfigurationProvider configurationProvider) {
return Set.of(
OrganizationDataFetcher.INSTANCE,
FolderDataFetcher.INSTANCE,
AssetDataFetcher.INSTANCE,
ProjectDataFetcher.INSTANCE
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy