com.pulumi.azurenative.importexport.ImportexportFunctions 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.
The newest version!
// *** 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.importexport;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.importexport.inputs.GetJobArgs;
import com.pulumi.azurenative.importexport.inputs.GetJobPlainArgs;
import com.pulumi.azurenative.importexport.inputs.ListBitLockerKeyArgs;
import com.pulumi.azurenative.importexport.inputs.ListBitLockerKeyPlainArgs;
import com.pulumi.azurenative.importexport.outputs.GetJobResult;
import com.pulumi.azurenative.importexport.outputs.ListBitLockerKeyResult;
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 ImportexportFunctions {
/**
* Gets information about an existing job.
* Azure REST API version: 2021-01-01.
*
*/
public static Output getJob(GetJobArgs args) {
return getJob(args, InvokeOptions.Empty);
}
/**
* Gets information about an existing job.
* Azure REST API version: 2021-01-01.
*
*/
public static CompletableFuture getJobPlain(GetJobPlainArgs args) {
return getJobPlain(args, InvokeOptions.Empty);
}
/**
* Gets information about an existing job.
* Azure REST API version: 2021-01-01.
*
*/
public static Output getJob(GetJobArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:importexport:getJob", TypeShape.of(GetJobResult.class), args, Utilities.withVersion(options));
}
/**
* Gets information about an existing job.
* Azure REST API version: 2021-01-01.
*
*/
public static CompletableFuture getJobPlain(GetJobPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:importexport:getJob", TypeShape.of(GetJobResult.class), args, Utilities.withVersion(options));
}
/**
* Returns the BitLocker Keys for all drives in the specified job.
* Azure REST API version: 2021-01-01.
*
*/
public static Output listBitLockerKey(ListBitLockerKeyArgs args) {
return listBitLockerKey(args, InvokeOptions.Empty);
}
/**
* Returns the BitLocker Keys for all drives in the specified job.
* Azure REST API version: 2021-01-01.
*
*/
public static CompletableFuture listBitLockerKeyPlain(ListBitLockerKeyPlainArgs args) {
return listBitLockerKeyPlain(args, InvokeOptions.Empty);
}
/**
* Returns the BitLocker Keys for all drives in the specified job.
* Azure REST API version: 2021-01-01.
*
*/
public static Output listBitLockerKey(ListBitLockerKeyArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:importexport:listBitLockerKey", TypeShape.of(ListBitLockerKeyResult.class), args, Utilities.withVersion(options));
}
/**
* Returns the BitLocker Keys for all drives in the specified job.
* Azure REST API version: 2021-01-01.
*
*/
public static CompletableFuture listBitLockerKeyPlain(ListBitLockerKeyPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:importexport:listBitLockerKey", TypeShape.of(ListBitLockerKeyResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy