
com.pulumi.azurenative.resourcegraph.ResourcegraphFunctions 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.resourcegraph;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.resourcegraph.inputs.GetGraphQueryArgs;
import com.pulumi.azurenative.resourcegraph.inputs.GetGraphQueryPlainArgs;
import com.pulumi.azurenative.resourcegraph.outputs.GetGraphQueryResult;
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 ResourcegraphFunctions {
/**
* Get a single graph query by its resourceName.
* Azure REST API version: 2020-04-01-preview.
*
* Other available API versions: 2018-09-01-preview, 2019-04-01, 2021-03-01, 2022-10-01, 2024-04-01.
*
*/
public static Output getGraphQuery(GetGraphQueryArgs args) {
return getGraphQuery(args, InvokeOptions.Empty);
}
/**
* Get a single graph query by its resourceName.
* Azure REST API version: 2020-04-01-preview.
*
* Other available API versions: 2018-09-01-preview, 2019-04-01, 2021-03-01, 2022-10-01, 2024-04-01.
*
*/
public static CompletableFuture getGraphQueryPlain(GetGraphQueryPlainArgs args) {
return getGraphQueryPlain(args, InvokeOptions.Empty);
}
/**
* Get a single graph query by its resourceName.
* Azure REST API version: 2020-04-01-preview.
*
* Other available API versions: 2018-09-01-preview, 2019-04-01, 2021-03-01, 2022-10-01, 2024-04-01.
*
*/
public static Output getGraphQuery(GetGraphQueryArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:resourcegraph:getGraphQuery", TypeShape.of(GetGraphQueryResult.class), args, Utilities.withVersion(options));
}
/**
* Get a single graph query by its resourceName.
* Azure REST API version: 2020-04-01-preview.
*
* Other available API versions: 2018-09-01-preview, 2019-04-01, 2021-03-01, 2022-10-01, 2024-04-01.
*
*/
public static CompletableFuture getGraphQueryPlain(GetGraphQueryPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:resourcegraph:getGraphQuery", TypeShape.of(GetGraphQueryResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy