com.pulumi.azurenative.iotfirmwaredefense.IotfirmwaredefenseFunctions 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.iotfirmwaredefense;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.iotfirmwaredefense.inputs.GetFirmwareArgs;
import com.pulumi.azurenative.iotfirmwaredefense.inputs.GetFirmwarePlainArgs;
import com.pulumi.azurenative.iotfirmwaredefense.inputs.GetWorkspaceArgs;
import com.pulumi.azurenative.iotfirmwaredefense.inputs.GetWorkspacePlainArgs;
import com.pulumi.azurenative.iotfirmwaredefense.outputs.GetFirmwareResult;
import com.pulumi.azurenative.iotfirmwaredefense.outputs.GetWorkspaceResult;
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 IotfirmwaredefenseFunctions {
/**
* Get firmware.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static Output getFirmware(GetFirmwareArgs args) {
return getFirmware(args, InvokeOptions.Empty);
}
/**
* Get firmware.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static CompletableFuture getFirmwarePlain(GetFirmwarePlainArgs args) {
return getFirmwarePlain(args, InvokeOptions.Empty);
}
/**
* Get firmware.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static Output getFirmware(GetFirmwareArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:iotfirmwaredefense:getFirmware", TypeShape.of(GetFirmwareResult.class), args, Utilities.withVersion(options));
}
/**
* Get firmware.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static CompletableFuture getFirmwarePlain(GetFirmwarePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:iotfirmwaredefense:getFirmware", TypeShape.of(GetFirmwareResult.class), args, Utilities.withVersion(options));
}
/**
* Get firmware analysis workspace.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static Output getWorkspace(GetWorkspaceArgs args) {
return getWorkspace(args, InvokeOptions.Empty);
}
/**
* Get firmware analysis workspace.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static CompletableFuture getWorkspacePlain(GetWorkspacePlainArgs args) {
return getWorkspacePlain(args, InvokeOptions.Empty);
}
/**
* Get firmware analysis workspace.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static Output getWorkspace(GetWorkspaceArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:iotfirmwaredefense:getWorkspace", TypeShape.of(GetWorkspaceResult.class), args, Utilities.withVersion(options));
}
/**
* Get firmware analysis workspace.
* Azure REST API version: 2023-02-08-preview.
*
* Other available API versions: 2024-01-10.
*
*/
public static CompletableFuture getWorkspacePlain(GetWorkspacePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:iotfirmwaredefense:getWorkspace", TypeShape.of(GetWorkspaceResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy