com.pulumi.azurenative.softwareplan.SoftwareplanFunctions 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.softwareplan;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.softwareplan.inputs.GetHybridUseBenefitArgs;
import com.pulumi.azurenative.softwareplan.inputs.GetHybridUseBenefitPlainArgs;
import com.pulumi.azurenative.softwareplan.outputs.GetHybridUseBenefitResult;
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 SoftwareplanFunctions {
/**
* Gets a given plan ID
* Azure REST API version: 2019-12-01.
*
*/
public static Output getHybridUseBenefit(GetHybridUseBenefitArgs args) {
return getHybridUseBenefit(args, InvokeOptions.Empty);
}
/**
* Gets a given plan ID
* Azure REST API version: 2019-12-01.
*
*/
public static CompletableFuture getHybridUseBenefitPlain(GetHybridUseBenefitPlainArgs args) {
return getHybridUseBenefitPlain(args, InvokeOptions.Empty);
}
/**
* Gets a given plan ID
* Azure REST API version: 2019-12-01.
*
*/
public static Output getHybridUseBenefit(GetHybridUseBenefitArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:softwareplan:getHybridUseBenefit", TypeShape.of(GetHybridUseBenefitResult.class), args, Utilities.withVersion(options));
}
/**
* Gets a given plan ID
* Azure REST API version: 2019-12-01.
*
*/
public static CompletableFuture getHybridUseBenefitPlain(GetHybridUseBenefitPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:softwareplan:getHybridUseBenefit", TypeShape.of(GetHybridUseBenefitResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy