
com.pulumi.azurenative.devopsinfrastructure.DevopsinfrastructureFunctions 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.devopsinfrastructure;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.devopsinfrastructure.inputs.GetPoolArgs;
import com.pulumi.azurenative.devopsinfrastructure.inputs.GetPoolPlainArgs;
import com.pulumi.azurenative.devopsinfrastructure.outputs.GetPoolResult;
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 DevopsinfrastructureFunctions {
/**
* Get a Pool
* Azure REST API version: 2023-10-30-preview.
*
* Other available API versions: 2023-12-13-preview, 2024-03-26-preview, 2024-04-04-preview, 2024-10-19.
*
*/
public static Output getPool(GetPoolArgs args) {
return getPool(args, InvokeOptions.Empty);
}
/**
* Get a Pool
* Azure REST API version: 2023-10-30-preview.
*
* Other available API versions: 2023-12-13-preview, 2024-03-26-preview, 2024-04-04-preview, 2024-10-19.
*
*/
public static CompletableFuture getPoolPlain(GetPoolPlainArgs args) {
return getPoolPlain(args, InvokeOptions.Empty);
}
/**
* Get a Pool
* Azure REST API version: 2023-10-30-preview.
*
* Other available API versions: 2023-12-13-preview, 2024-03-26-preview, 2024-04-04-preview, 2024-10-19.
*
*/
public static Output getPool(GetPoolArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:devopsinfrastructure:getPool", TypeShape.of(GetPoolResult.class), args, Utilities.withVersion(options));
}
/**
* Get a Pool
* Azure REST API version: 2023-10-30-preview.
*
* Other available API versions: 2023-12-13-preview, 2024-03-26-preview, 2024-04-04-preview, 2024-10-19.
*
*/
public static CompletableFuture getPoolPlain(GetPoolPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:devopsinfrastructure:getPool", TypeShape.of(GetPoolResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy