All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.advisor.AdvisorFunctions Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** 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.advisor;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.advisor.inputs.GetSuppressionArgs;
import com.pulumi.azurenative.advisor.inputs.GetSuppressionPlainArgs;
import com.pulumi.azurenative.advisor.outputs.GetSuppressionResult;
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 AdvisorFunctions {
    /**
     * Obtains the details of a suppression.
     * Azure REST API version: 2023-01-01.
     * 
     * Other available API versions: 2016-07-12-preview.
     * 
     */
    public static Output getSuppression(GetSuppressionArgs args) {
        return getSuppression(args, InvokeOptions.Empty);
    }
    /**
     * Obtains the details of a suppression.
     * Azure REST API version: 2023-01-01.
     * 
     * Other available API versions: 2016-07-12-preview.
     * 
     */
    public static CompletableFuture getSuppressionPlain(GetSuppressionPlainArgs args) {
        return getSuppressionPlain(args, InvokeOptions.Empty);
    }
    /**
     * Obtains the details of a suppression.
     * Azure REST API version: 2023-01-01.
     * 
     * Other available API versions: 2016-07-12-preview.
     * 
     */
    public static Output getSuppression(GetSuppressionArgs args, InvokeOptions options) {
        return Deployment.getInstance().invoke("azure-native:advisor:getSuppression", TypeShape.of(GetSuppressionResult.class), args, Utilities.withVersion(options));
    }
    /**
     * Obtains the details of a suppression.
     * Azure REST API version: 2023-01-01.
     * 
     * Other available API versions: 2016-07-12-preview.
     * 
     */
    public static CompletableFuture getSuppressionPlain(GetSuppressionPlainArgs args, InvokeOptions options) {
        return Deployment.getInstance().invokeAsync("azure-native:advisor:getSuppression", TypeShape.of(GetSuppressionResult.class), args, Utilities.withVersion(options));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy