com.pulumi.azurenative.databox.DataboxFunctions 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.databox;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.databox.inputs.GetJobArgs;
import com.pulumi.azurenative.databox.inputs.GetJobPlainArgs;
import com.pulumi.azurenative.databox.inputs.ListJobCredentialsArgs;
import com.pulumi.azurenative.databox.inputs.ListJobCredentialsPlainArgs;
import com.pulumi.azurenative.databox.outputs.GetJobResult;
import com.pulumi.azurenative.databox.outputs.ListJobCredentialsResult;
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 DataboxFunctions {
/**
* Gets information about the specified job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static Output getJob(GetJobArgs args) {
return getJob(args, InvokeOptions.Empty);
}
/**
* Gets information about the specified job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static CompletableFuture getJobPlain(GetJobPlainArgs args) {
return getJobPlain(args, InvokeOptions.Empty);
}
/**
* Gets information about the specified job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static Output getJob(GetJobArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:databox:getJob", TypeShape.of(GetJobResult.class), args, Utilities.withVersion(options));
}
/**
* Gets information about the specified job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static CompletableFuture getJobPlain(GetJobPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:databox:getJob", TypeShape.of(GetJobResult.class), args, Utilities.withVersion(options));
}
/**
* This method gets the unencrypted secrets related to the job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static Output listJobCredentials(ListJobCredentialsArgs args) {
return listJobCredentials(args, InvokeOptions.Empty);
}
/**
* This method gets the unencrypted secrets related to the job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static CompletableFuture listJobCredentialsPlain(ListJobCredentialsPlainArgs args) {
return listJobCredentialsPlain(args, InvokeOptions.Empty);
}
/**
* This method gets the unencrypted secrets related to the job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static Output listJobCredentials(ListJobCredentialsArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:databox:listJobCredentials", TypeShape.of(ListJobCredentialsResult.class), args, Utilities.withVersion(options));
}
/**
* This method gets the unencrypted secrets related to the job.
* Azure REST API version: 2022-12-01.
*
* Other available API versions: 2019-09-01, 2023-03-01, 2023-12-01, 2024-02-01-preview, 2024-03-01-preview.
*
*/
public static CompletableFuture listJobCredentialsPlain(ListJobCredentialsPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:databox:listJobCredentials", TypeShape.of(ListJobCredentialsResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy