
com.pulumi.azurenative.windowsiot.WindowsiotFunctions 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.windowsiot;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.windowsiot.inputs.GetServiceArgs;
import com.pulumi.azurenative.windowsiot.inputs.GetServicePlainArgs;
import com.pulumi.azurenative.windowsiot.outputs.GetServiceResult;
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 WindowsiotFunctions {
/**
* Get the non-security related metadata of a Windows IoT Device Service.
* Azure REST API version: 2019-06-01.
*
* Other available API versions: 2018-02-16-preview.
*
*/
public static Output getService(GetServiceArgs args) {
return getService(args, InvokeOptions.Empty);
}
/**
* Get the non-security related metadata of a Windows IoT Device Service.
* Azure REST API version: 2019-06-01.
*
* Other available API versions: 2018-02-16-preview.
*
*/
public static CompletableFuture getServicePlain(GetServicePlainArgs args) {
return getServicePlain(args, InvokeOptions.Empty);
}
/**
* Get the non-security related metadata of a Windows IoT Device Service.
* Azure REST API version: 2019-06-01.
*
* Other available API versions: 2018-02-16-preview.
*
*/
public static Output getService(GetServiceArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:windowsiot:getService", TypeShape.of(GetServiceResult.class), args, Utilities.withVersion(options));
}
/**
* Get the non-security related metadata of a Windows IoT Device Service.
* Azure REST API version: 2019-06-01.
*
* Other available API versions: 2018-02-16-preview.
*
*/
public static CompletableFuture getServicePlain(GetServicePlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:windowsiot:getService", TypeShape.of(GetServiceResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy