com.pulumi.azurenative.datacatalog.DatacatalogFunctions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datacatalog;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.datacatalog.inputs.GetADCCatalogArgs;
import com.pulumi.azurenative.datacatalog.inputs.GetADCCatalogPlainArgs;
import com.pulumi.azurenative.datacatalog.outputs.GetADCCatalogResult;
import com.pulumi.core.Output;
import com.pulumi.core.TypeShape;
import com.pulumi.deployment.Deployment;
import com.pulumi.deployment.InvokeOptions;
import java.util.concurrent.CompletableFuture;
public final class DatacatalogFunctions {
/**
* The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog.
* Azure REST API version: 2016-03-30.
*
*/
public static Output getADCCatalog(GetADCCatalogArgs args) {
return getADCCatalog(args, InvokeOptions.Empty);
}
/**
* The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog.
* Azure REST API version: 2016-03-30.
*
*/
public static CompletableFuture getADCCatalogPlain(GetADCCatalogPlainArgs args) {
return getADCCatalogPlain(args, InvokeOptions.Empty);
}
/**
* The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog.
* Azure REST API version: 2016-03-30.
*
*/
public static Output getADCCatalog(GetADCCatalogArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:datacatalog:getADCCatalog", TypeShape.of(GetADCCatalogResult.class), args, Utilities.withVersion(options));
}
/**
* The Get Azure Data Catalog Service operation retrieves a json representation of the data catalog.
* Azure REST API version: 2016-03-30.
*
*/
public static CompletableFuture getADCCatalogPlain(GetADCCatalogPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:datacatalog:getADCCatalog", TypeShape.of(GetADCCatalogResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy