com.pulumi.azurenative.storagepool.StoragepoolFunctions 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.storagepool;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.storagepool.inputs.GetDiskPoolArgs;
import com.pulumi.azurenative.storagepool.inputs.GetDiskPoolPlainArgs;
import com.pulumi.azurenative.storagepool.inputs.GetIscsiTargetArgs;
import com.pulumi.azurenative.storagepool.inputs.GetIscsiTargetPlainArgs;
import com.pulumi.azurenative.storagepool.outputs.GetDiskPoolResult;
import com.pulumi.azurenative.storagepool.outputs.GetIscsiTargetResult;
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 StoragepoolFunctions {
/**
* Get a Disk pool.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static Output getDiskPool(GetDiskPoolArgs args) {
return getDiskPool(args, InvokeOptions.Empty);
}
/**
* Get a Disk pool.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static CompletableFuture getDiskPoolPlain(GetDiskPoolPlainArgs args) {
return getDiskPoolPlain(args, InvokeOptions.Empty);
}
/**
* Get a Disk pool.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static Output getDiskPool(GetDiskPoolArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:storagepool:getDiskPool", TypeShape.of(GetDiskPoolResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Disk pool.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static CompletableFuture getDiskPoolPlain(GetDiskPoolPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:storagepool:getDiskPool", TypeShape.of(GetDiskPoolResult.class), args, Utilities.withVersion(options));
}
/**
* Get an iSCSI Target.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static Output getIscsiTarget(GetIscsiTargetArgs args) {
return getIscsiTarget(args, InvokeOptions.Empty);
}
/**
* Get an iSCSI Target.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static CompletableFuture getIscsiTargetPlain(GetIscsiTargetPlainArgs args) {
return getIscsiTargetPlain(args, InvokeOptions.Empty);
}
/**
* Get an iSCSI Target.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static Output getIscsiTarget(GetIscsiTargetArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:storagepool:getIscsiTarget", TypeShape.of(GetIscsiTargetResult.class), args, Utilities.withVersion(options));
}
/**
* Get an iSCSI Target.
* Azure REST API version: 2021-08-01.
*
* Other available API versions: 2020-03-15-preview.
*
*/
public static CompletableFuture getIscsiTargetPlain(GetIscsiTargetPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:storagepool:getIscsiTarget", TypeShape.of(GetIscsiTargetResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy