
com.pulumi.azurenative.education.EducationFunctions 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.education;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.education.inputs.GetLabArgs;
import com.pulumi.azurenative.education.inputs.GetLabPlainArgs;
import com.pulumi.azurenative.education.inputs.GetStudentArgs;
import com.pulumi.azurenative.education.inputs.GetStudentPlainArgs;
import com.pulumi.azurenative.education.outputs.GetLabResult;
import com.pulumi.azurenative.education.outputs.GetStudentResult;
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 EducationFunctions {
/**
* Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.
* Azure REST API version: 2021-12-01-preview.
*
*/
public static Output getLab(GetLabArgs args) {
return getLab(args, InvokeOptions.Empty);
}
/**
* Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.
* Azure REST API version: 2021-12-01-preview.
*
*/
public static CompletableFuture getLabPlain(GetLabPlainArgs args) {
return getLabPlain(args, InvokeOptions.Empty);
}
/**
* Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.
* Azure REST API version: 2021-12-01-preview.
*
*/
public static Output getLab(GetLabArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:education:getLab", TypeShape.of(GetLabResult.class), args, Utilities.withVersion(options));
}
/**
* Get the details for a specific lab associated with the provided billing account name, billing profile name, and invoice section name.
* Azure REST API version: 2021-12-01-preview.
*
*/
public static CompletableFuture getLabPlain(GetLabPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:education:getLab", TypeShape.of(GetLabResult.class), args, Utilities.withVersion(options));
}
/**
* Get the details for a specific student in the specified lab by student alias
* Azure REST API version: 2021-12-01-preview.
*
*/
public static Output getStudent(GetStudentArgs args) {
return getStudent(args, InvokeOptions.Empty);
}
/**
* Get the details for a specific student in the specified lab by student alias
* Azure REST API version: 2021-12-01-preview.
*
*/
public static CompletableFuture getStudentPlain(GetStudentPlainArgs args) {
return getStudentPlain(args, InvokeOptions.Empty);
}
/**
* Get the details for a specific student in the specified lab by student alias
* Azure REST API version: 2021-12-01-preview.
*
*/
public static Output getStudent(GetStudentArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:education:getStudent", TypeShape.of(GetStudentResult.class), args, Utilities.withVersion(options));
}
/**
* Get the details for a specific student in the specified lab by student alias
* Azure REST API version: 2021-12-01-preview.
*
*/
public static CompletableFuture getStudentPlain(GetStudentPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:education:getStudent", TypeShape.of(GetStudentResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy