com.pulumi.azurenative.hybridcloud.HybridcloudFunctions 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.hybridcloud;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.hybridcloud.inputs.GetCloudConnectionArgs;
import com.pulumi.azurenative.hybridcloud.inputs.GetCloudConnectionPlainArgs;
import com.pulumi.azurenative.hybridcloud.inputs.GetCloudConnectorArgs;
import com.pulumi.azurenative.hybridcloud.inputs.GetCloudConnectorPlainArgs;
import com.pulumi.azurenative.hybridcloud.outputs.GetCloudConnectionResult;
import com.pulumi.azurenative.hybridcloud.outputs.GetCloudConnectorResult;
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 HybridcloudFunctions {
/**
* Gets the specified cloud connection in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static Output getCloudConnection(GetCloudConnectionArgs args) {
return getCloudConnection(args, InvokeOptions.Empty);
}
/**
* Gets the specified cloud connection in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static CompletableFuture getCloudConnectionPlain(GetCloudConnectionPlainArgs args) {
return getCloudConnectionPlain(args, InvokeOptions.Empty);
}
/**
* Gets the specified cloud connection in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static Output getCloudConnection(GetCloudConnectionArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:hybridcloud:getCloudConnection", TypeShape.of(GetCloudConnectionResult.class), args, Utilities.withVersion(options));
}
/**
* Gets the specified cloud connection in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static CompletableFuture getCloudConnectionPlain(GetCloudConnectionPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:hybridcloud:getCloudConnection", TypeShape.of(GetCloudConnectionResult.class), args, Utilities.withVersion(options));
}
/**
* Gets the specified cloud connector in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static Output getCloudConnector(GetCloudConnectorArgs args) {
return getCloudConnector(args, InvokeOptions.Empty);
}
/**
* Gets the specified cloud connector in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static CompletableFuture getCloudConnectorPlain(GetCloudConnectorPlainArgs args) {
return getCloudConnectorPlain(args, InvokeOptions.Empty);
}
/**
* Gets the specified cloud connector in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static Output getCloudConnector(GetCloudConnectorArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:hybridcloud:getCloudConnector", TypeShape.of(GetCloudConnectorResult.class), args, Utilities.withVersion(options));
}
/**
* Gets the specified cloud connector in a specified resource group.
* Azure REST API version: 2023-01-01-preview.
*
*/
public static CompletableFuture getCloudConnectorPlain(GetCloudConnectorPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:hybridcloud:getCloudConnector", TypeShape.of(GetCloudConnectorResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy