com.pulumi.azurenative.videoindexer.VideoindexerFunctions 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.videoindexer;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.videoindexer.inputs.GetAccountArgs;
import com.pulumi.azurenative.videoindexer.inputs.GetAccountPlainArgs;
import com.pulumi.azurenative.videoindexer.inputs.GetPrivateEndpointConnectionArgs;
import com.pulumi.azurenative.videoindexer.inputs.GetPrivateEndpointConnectionPlainArgs;
import com.pulumi.azurenative.videoindexer.outputs.GetAccountResult;
import com.pulumi.azurenative.videoindexer.outputs.GetPrivateEndpointConnectionResult;
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 VideoindexerFunctions {
/**
* Gets the properties of an Azure Video Indexer account.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2024-01-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview.
*
*/
public static Output getAccount(GetAccountArgs args) {
return getAccount(args, InvokeOptions.Empty);
}
/**
* Gets the properties of an Azure Video Indexer account.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2024-01-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview.
*
*/
public static CompletableFuture getAccountPlain(GetAccountPlainArgs args) {
return getAccountPlain(args, InvokeOptions.Empty);
}
/**
* Gets the properties of an Azure Video Indexer account.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2024-01-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview.
*
*/
public static Output getAccount(GetAccountArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:videoindexer:getAccount", TypeShape.of(GetAccountResult.class), args, Utilities.withVersion(options));
}
/**
* Gets the properties of an Azure Video Indexer account.
* Azure REST API version: 2022-08-01.
*
* Other available API versions: 2024-01-01, 2024-04-01-preview, 2024-06-01-preview, 2024-09-23-preview.
*
*/
public static CompletableFuture getAccountPlain(GetAccountPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:videoindexer:getAccount", TypeShape.of(GetAccountResult.class), args, Utilities.withVersion(options));
}
/**
* Get the specified private endpoint connection associated with the Video Indexer account.
* Azure REST API version: 2024-06-01-preview.
*
*/
public static Output getPrivateEndpointConnection(GetPrivateEndpointConnectionArgs args) {
return getPrivateEndpointConnection(args, InvokeOptions.Empty);
}
/**
* Get the specified private endpoint connection associated with the Video Indexer account.
* Azure REST API version: 2024-06-01-preview.
*
*/
public static CompletableFuture getPrivateEndpointConnectionPlain(GetPrivateEndpointConnectionPlainArgs args) {
return getPrivateEndpointConnectionPlain(args, InvokeOptions.Empty);
}
/**
* Get the specified private endpoint connection associated with the Video Indexer account.
* Azure REST API version: 2024-06-01-preview.
*
*/
public static Output getPrivateEndpointConnection(GetPrivateEndpointConnectionArgs args, InvokeOptions options) {
return Deployment.getInstance().invoke("azure-native:videoindexer:getPrivateEndpointConnection", TypeShape.of(GetPrivateEndpointConnectionResult.class), args, Utilities.withVersion(options));
}
/**
* Get the specified private endpoint connection associated with the Video Indexer account.
* Azure REST API version: 2024-06-01-preview.
*
*/
public static CompletableFuture getPrivateEndpointConnectionPlain(GetPrivateEndpointConnectionPlainArgs args, InvokeOptions options) {
return Deployment.getInstance().invokeAsync("azure-native:videoindexer:getPrivateEndpointConnection", TypeShape.of(GetPrivateEndpointConnectionResult.class), args, Utilities.withVersion(options));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy