
com.pulumi.azurenative.containerstorage.ContainerstorageFunctions 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.containerstorage;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.containerstorage.inputs.GetPoolArgs;
import com.pulumi.azurenative.containerstorage.inputs.GetPoolPlainArgs;
import com.pulumi.azurenative.containerstorage.inputs.GetSnapshotArgs;
import com.pulumi.azurenative.containerstorage.inputs.GetSnapshotPlainArgs;
import com.pulumi.azurenative.containerstorage.inputs.GetVolumeArgs;
import com.pulumi.azurenative.containerstorage.inputs.GetVolumePlainArgs;
import com.pulumi.azurenative.containerstorage.outputs.GetPoolResult;
import com.pulumi.azurenative.containerstorage.outputs.GetSnapshotResult;
import com.pulumi.azurenative.containerstorage.outputs.GetVolumeResult;
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 ContainerstorageFunctions {
/**
* Get a Pool
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getPool(GetPoolArgs args) {
return getPool(args, InvokeOptions.Empty);
}
/**
* Get a Pool
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getPoolPlain(GetPoolPlainArgs args) {
return getPoolPlain(args, InvokeOptions.Empty);
}
/**
* Get a Pool
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getPool(GetPoolArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:containerstorage:getPool", TypeShape.of(GetPoolResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Pool
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getPoolPlain(GetPoolPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:containerstorage:getPool", TypeShape.of(GetPoolResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Snapshot
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getSnapshot(GetSnapshotArgs args) {
return getSnapshot(args, InvokeOptions.Empty);
}
/**
* Get a Snapshot
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getSnapshotPlain(GetSnapshotPlainArgs args) {
return getSnapshotPlain(args, InvokeOptions.Empty);
}
/**
* Get a Snapshot
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getSnapshot(GetSnapshotArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:containerstorage:getSnapshot", TypeShape.of(GetSnapshotResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Snapshot
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getSnapshotPlain(GetSnapshotPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:containerstorage:getSnapshot", TypeShape.of(GetSnapshotResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Volume
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getVolume(GetVolumeArgs args) {
return getVolume(args, InvokeOptions.Empty);
}
/**
* Get a Volume
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getVolumePlain(GetVolumePlainArgs args) {
return getVolumePlain(args, InvokeOptions.Empty);
}
/**
* Get a Volume
* Azure REST API version: 2023-07-01-preview.
*
*/
public static Output getVolume(GetVolumeArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:containerstorage:getVolume", TypeShape.of(GetVolumeResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Volume
* Azure REST API version: 2023-07-01-preview.
*
*/
public static CompletableFuture getVolumePlain(GetVolumePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:containerstorage:getVolume", TypeShape.of(GetVolumeResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy