com.pulumi.azurenative.analysisservices.AnalysisservicesFunctions 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.
The 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.analysisservices;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.analysisservices.inputs.GetServerDetailsArgs;
import com.pulumi.azurenative.analysisservices.inputs.GetServerDetailsPlainArgs;
import com.pulumi.azurenative.analysisservices.inputs.ListServerGatewayStatusArgs;
import com.pulumi.azurenative.analysisservices.inputs.ListServerGatewayStatusPlainArgs;
import com.pulumi.azurenative.analysisservices.outputs.GetServerDetailsResult;
import com.pulumi.azurenative.analysisservices.outputs.ListServerGatewayStatusResult;
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 AnalysisservicesFunctions {
/**
* Gets details about the specified Analysis Services server.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static Output getServerDetails(GetServerDetailsArgs args) {
return getServerDetails(args, InvokeOptions.Empty);
}
/**
* Gets details about the specified Analysis Services server.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static CompletableFuture getServerDetailsPlain(GetServerDetailsPlainArgs args) {
return getServerDetailsPlain(args, InvokeOptions.Empty);
}
/**
* Gets details about the specified Analysis Services server.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static Output getServerDetails(GetServerDetailsArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:analysisservices:getServerDetails", TypeShape.of(GetServerDetailsResult.class), args, Utilities.withVersion(options));
}
/**
* Gets details about the specified Analysis Services server.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static CompletableFuture getServerDetailsPlain(GetServerDetailsPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:analysisservices:getServerDetails", TypeShape.of(GetServerDetailsResult.class), args, Utilities.withVersion(options));
}
/**
* Return the gateway status of the specified Analysis Services server instance.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static Output listServerGatewayStatus(ListServerGatewayStatusArgs args) {
return listServerGatewayStatus(args, InvokeOptions.Empty);
}
/**
* Return the gateway status of the specified Analysis Services server instance.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static CompletableFuture listServerGatewayStatusPlain(ListServerGatewayStatusPlainArgs args) {
return listServerGatewayStatusPlain(args, InvokeOptions.Empty);
}
/**
* Return the gateway status of the specified Analysis Services server instance.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static Output listServerGatewayStatus(ListServerGatewayStatusArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:analysisservices:listServerGatewayStatus", TypeShape.of(ListServerGatewayStatusResult.class), args, Utilities.withVersion(options));
}
/**
* Return the gateway status of the specified Analysis Services server instance.
* Azure REST API version: 2017-08-01.
*
* Other available API versions: 2017-08-01-beta.
*
*/
public static CompletableFuture listServerGatewayStatusPlain(ListServerGatewayStatusPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:analysisservices:listServerGatewayStatus", TypeShape.of(ListServerGatewayStatusResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy