com.pulumi.azurenative.contoso.ContosoFunctions 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.contoso;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.contoso.inputs.GetEmployeeArgs;
import com.pulumi.azurenative.contoso.inputs.GetEmployeePlainArgs;
import com.pulumi.azurenative.contoso.outputs.GetEmployeeResult;
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 ContosoFunctions {
/**
* Get a Employee
* Azure REST API version: 2021-10-01-preview.
*
*/
public static Output getEmployee(GetEmployeeArgs args) {
return getEmployee(args, InvokeOptions.Empty);
}
/**
* Get a Employee
* Azure REST API version: 2021-10-01-preview.
*
*/
public static CompletableFuture getEmployeePlain(GetEmployeePlainArgs args) {
return getEmployeePlain(args, InvokeOptions.Empty);
}
/**
* Get a Employee
* Azure REST API version: 2021-10-01-preview.
*
*/
public static Output getEmployee(GetEmployeeArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:contoso:getEmployee", TypeShape.of(GetEmployeeResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Employee
* Azure REST API version: 2021-10-01-preview.
*
*/
public static CompletableFuture getEmployeePlain(GetEmployeePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:contoso:getEmployee", TypeShape.of(GetEmployeeResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy