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

com.pulumi.azurenative.healthbot.HealthbotFunctions Maven / Gradle / Ivy

There is a newer version: 2.72.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.healthbot;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.healthbot.inputs.GetBotArgs;
import com.pulumi.azurenative.healthbot.inputs.GetBotPlainArgs;
import com.pulumi.azurenative.healthbot.inputs.ListBotSecretsArgs;
import com.pulumi.azurenative.healthbot.inputs.ListBotSecretsPlainArgs;
import com.pulumi.azurenative.healthbot.outputs.GetBotResult;
import com.pulumi.azurenative.healthbot.outputs.ListBotSecretsResult;
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 HealthbotFunctions {
    /**
     * Get a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2020-12-08-preview, 2024-02-01.
     * 
     */
    public static Output getBot(GetBotArgs args) {
        return getBot(args, InvokeOptions.Empty);
    }
    /**
     * Get a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2020-12-08-preview, 2024-02-01.
     * 
     */
    public static CompletableFuture getBotPlain(GetBotPlainArgs args) {
        return getBotPlain(args, InvokeOptions.Empty);
    }
    /**
     * Get a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2020-12-08-preview, 2024-02-01.
     * 
     */
    public static Output getBot(GetBotArgs args, InvokeOptions options) {
        return Deployment.getInstance().invoke("azure-native:healthbot:getBot", TypeShape.of(GetBotResult.class), args, Utilities.withVersion(options));
    }
    /**
     * Get a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2020-12-08-preview, 2024-02-01.
     * 
     */
    public static CompletableFuture getBotPlain(GetBotPlainArgs args, InvokeOptions options) {
        return Deployment.getInstance().invokeAsync("azure-native:healthbot:getBot", TypeShape.of(GetBotResult.class), args, Utilities.withVersion(options));
    }
    /**
     * List all secrets of a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2024-02-01.
     * 
     */
    public static Output listBotSecrets(ListBotSecretsArgs args) {
        return listBotSecrets(args, InvokeOptions.Empty);
    }
    /**
     * List all secrets of a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2024-02-01.
     * 
     */
    public static CompletableFuture listBotSecretsPlain(ListBotSecretsPlainArgs args) {
        return listBotSecretsPlain(args, InvokeOptions.Empty);
    }
    /**
     * List all secrets of a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2024-02-01.
     * 
     */
    public static Output listBotSecrets(ListBotSecretsArgs args, InvokeOptions options) {
        return Deployment.getInstance().invoke("azure-native:healthbot:listBotSecrets", TypeShape.of(ListBotSecretsResult.class), args, Utilities.withVersion(options));
    }
    /**
     * List all secrets of a HealthBot.
     * Azure REST API version: 2023-05-01.
     * 
     * Other available API versions: 2024-02-01.
     * 
     */
    public static CompletableFuture listBotSecretsPlain(ListBotSecretsPlainArgs args, InvokeOptions options) {
        return Deployment.getInstance().invokeAsync("azure-native:healthbot:listBotSecrets", TypeShape.of(ListBotSecretsResult.class), args, Utilities.withVersion(options));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy