com.pulumi.azurenative.addons.AddonsFunctions 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.addons;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.addons.inputs.GetSupportPlanTypeArgs;
import com.pulumi.azurenative.addons.inputs.GetSupportPlanTypePlainArgs;
import com.pulumi.azurenative.addons.outputs.GetSupportPlanTypeResult;
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 AddonsFunctions {
/**
* Returns whether or not the canonical support plan of type {type} is enabled for the subscription.
* Azure REST API version: 2018-03-01.
*
*/
public static Output getSupportPlanType(GetSupportPlanTypeArgs args) {
return getSupportPlanType(args, InvokeOptions.Empty);
}
/**
* Returns whether or not the canonical support plan of type {type} is enabled for the subscription.
* Azure REST API version: 2018-03-01.
*
*/
public static CompletableFuture getSupportPlanTypePlain(GetSupportPlanTypePlainArgs args) {
return getSupportPlanTypePlain(args, InvokeOptions.Empty);
}
/**
* Returns whether or not the canonical support plan of type {type} is enabled for the subscription.
* Azure REST API version: 2018-03-01.
*
*/
public static Output getSupportPlanType(GetSupportPlanTypeArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:addons:getSupportPlanType", TypeShape.of(GetSupportPlanTypeResult.class), args, Utilities.withVersion(options));
}
/**
* Returns whether or not the canonical support plan of type {type} is enabled for the subscription.
* Azure REST API version: 2018-03-01.
*
*/
public static CompletableFuture getSupportPlanTypePlain(GetSupportPlanTypePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:addons:getSupportPlanType", TypeShape.of(GetSupportPlanTypeResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy