
com.pulumi.azurenative.graphservices.GraphservicesFunctions 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.graphservices;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.graphservices.inputs.GetAccountArgs;
import com.pulumi.azurenative.graphservices.inputs.GetAccountPlainArgs;
import com.pulumi.azurenative.graphservices.outputs.GetAccountResult;
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 GraphservicesFunctions {
/**
* Returns account resource for a given name.
* Azure REST API version: 2023-04-13.
*
*/
public static Output getAccount(GetAccountArgs args) {
return getAccount(args, InvokeOptions.Empty);
}
/**
* Returns account resource for a given name.
* Azure REST API version: 2023-04-13.
*
*/
public static CompletableFuture getAccountPlain(GetAccountPlainArgs args) {
return getAccountPlain(args, InvokeOptions.Empty);
}
/**
* Returns account resource for a given name.
* Azure REST API version: 2023-04-13.
*
*/
public static Output getAccount(GetAccountArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:graphservices:getAccount", TypeShape.of(GetAccountResult.class), args, Utilities.withVersion(options));
}
/**
* Returns account resource for a given name.
* Azure REST API version: 2023-04-13.
*
*/
public static CompletableFuture getAccountPlain(GetAccountPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:graphservices:getAccount", TypeShape.of(GetAccountResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy