getTableEntity

Use this data source to access information about an existing Storage Table Entity.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.storage.StorageFunctions;
import com.pulumi.azure.storage.inputs.GetTableEntityArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = StorageFunctions.getTableEntity(GetTableEntityArgs.builder()
.partitionKey("example-partition-key")
.rowKey("example-row-key")
.storageAccountName("example-storage-account-name")
.tableName("example-table-name")
.build());
}
}

Return

A collection of values returned by getTableEntity.

Parameters

argument

A collection of arguments for invoking getTableEntity.


suspend fun getTableEntity(partitionKey: String, rowKey: String, storageAccountName: String, tableName: String): GetTableEntityResult

Return

A collection of values returned by getTableEntity.

See also

Parameters

partitionKey

The key for the partition where the entity will be retrieved.

rowKey

The key for the row where the entity will be retrieved.

storageAccountName

The name of the Storage Account where the Table exists.

tableName

The name of the Table.


Return

A collection of values returned by getTableEntity.

See also

Parameters

argument

Builder for com.pulumi.azure.storage.kotlin.inputs.GetTableEntityPlainArgs.