com.pulumi.azurenative.dashboard.DashboardFunctions 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.dashboard;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.dashboard.inputs.GetGrafanaArgs;
import com.pulumi.azurenative.dashboard.inputs.GetGrafanaPlainArgs;
import com.pulumi.azurenative.dashboard.inputs.GetManagedPrivateEndpointArgs;
import com.pulumi.azurenative.dashboard.inputs.GetManagedPrivateEndpointPlainArgs;
import com.pulumi.azurenative.dashboard.inputs.GetPrivateEndpointConnectionArgs;
import com.pulumi.azurenative.dashboard.inputs.GetPrivateEndpointConnectionPlainArgs;
import com.pulumi.azurenative.dashboard.outputs.GetGrafanaResult;
import com.pulumi.azurenative.dashboard.outputs.GetManagedPrivateEndpointResult;
import com.pulumi.azurenative.dashboard.outputs.GetPrivateEndpointConnectionResult;
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 DashboardFunctions {
/**
* The grafana resource type.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01.
*
*/
public static Output getGrafana(GetGrafanaArgs args) {
return getGrafana(args, InvokeOptions.Empty);
}
/**
* The grafana resource type.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01.
*
*/
public static CompletableFuture getGrafanaPlain(GetGrafanaPlainArgs args) {
return getGrafanaPlain(args, InvokeOptions.Empty);
}
/**
* The grafana resource type.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01.
*
*/
public static Output getGrafana(GetGrafanaArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:dashboard:getGrafana", TypeShape.of(GetGrafanaResult.class), args, Utilities.withVersion(options));
}
/**
* The grafana resource type.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2021-09-01-preview, 2022-10-01-preview, 2023-09-01.
*
*/
public static CompletableFuture getGrafanaPlain(GetGrafanaPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:dashboard:getGrafana", TypeShape.of(GetGrafanaResult.class), args, Utilities.withVersion(options));
}
/**
* The managed private endpoint resource type.
* Azure REST API version: 2022-10-01-preview.
*
* Other available API versions: 2023-09-01.
*
*/
public static Output getManagedPrivateEndpoint(GetManagedPrivateEndpointArgs args) {
return getManagedPrivateEndpoint(args, InvokeOptions.Empty);
}
/**
* The managed private endpoint resource type.
* Azure REST API version: 2022-10-01-preview.
*
* Other available API versions: 2023-09-01.
*
*/
public static CompletableFuture getManagedPrivateEndpointPlain(GetManagedPrivateEndpointPlainArgs args) {
return getManagedPrivateEndpointPlain(args, InvokeOptions.Empty);
}
/**
* The managed private endpoint resource type.
* Azure REST API version: 2022-10-01-preview.
*
* Other available API versions: 2023-09-01.
*
*/
public static Output getManagedPrivateEndpoint(GetManagedPrivateEndpointArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:dashboard:getManagedPrivateEndpoint", TypeShape.of(GetManagedPrivateEndpointResult.class), args, Utilities.withVersion(options));
}
/**
* The managed private endpoint resource type.
* Azure REST API version: 2022-10-01-preview.
*
* Other available API versions: 2023-09-01.
*
*/
public static CompletableFuture getManagedPrivateEndpointPlain(GetManagedPrivateEndpointPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:dashboard:getManagedPrivateEndpoint", TypeShape.of(GetManagedPrivateEndpointResult.class), args, Utilities.withVersion(options));
}
/**
* The Private Endpoint Connection resource.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2022-10-01-preview, 2023-09-01.
*
*/
public static Output getPrivateEndpointConnection(GetPrivateEndpointConnectionArgs args) {
return getPrivateEndpointConnection(args, InvokeOptions.Empty);
}
/**
* The Private Endpoint Connection resource.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2022-10-01-preview, 2023-09-01.
*
*/
public static CompletableFuture getPrivateEndpointConnectionPlain(GetPrivateEndpointConnectionPlainArgs args) {
return getPrivateEndpointConnectionPlain(args, InvokeOptions.Empty);
}
/**
* The Private Endpoint Connection resource.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2022-10-01-preview, 2023-09-01.
*
*/
public static Output getPrivateEndpointConnection(GetPrivateEndpointConnectionArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:dashboard:getPrivateEndpointConnection", TypeShape.of(GetPrivateEndpointConnectionResult.class), args, Utilities.withVersion(options));
}
/**
* The Private Endpoint Connection resource.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2022-10-01-preview, 2023-09-01.
*
*/
public static CompletableFuture getPrivateEndpointConnectionPlain(GetPrivateEndpointConnectionPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:dashboard:getPrivateEndpointConnection", TypeShape.of(GetPrivateEndpointConnectionResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy