get Table Entity
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());
}
}
Content copied to clipboard
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
partition Key
The key for the partition where the entity will be retrieved.
row Key
The key for the row where the entity will be retrieved.
storage Account Name
The name of the Storage Account where the Table exists.
table Name
The name of the Table.
suspend fun getTableEntity(argument: suspend GetTableEntityPlainArgsBuilder.() -> Unit): GetTableEntityResult
Return
A collection of values returned by getTableEntity.
See also
Parameters
argument
Builder for com.pulumi.azure.storage.kotlin.inputs.GetTableEntityPlainArgs.