Skip to content

Commit 18ee920

Browse files
authored
Change the H2 to H3. Was meant to be H3 in hte 1st place for tabs
1 parent 7b87b17 commit 18ee920

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/cosmos-db/cassandra/find-request-unit-charge-cassandra.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article presents the different ways you can find the [request unit](../requ
2121

2222
When you perform operations against the Azure Cosmos DB Cassandra API, the RU charge is returned in the incoming payload as a field named `RequestCharge`. You have multiple options for retrieving the RU charge.
2323

24-
## [.NET SDK](#tab/dotnet-sdk)
24+
### [.NET SDK](#tab/dotnet-sdk)
2525

2626
When you use the [.NET SDK](https://www.nuget.org/packages/CassandraCSharpDriver/), you can retrieve the incoming payload under the `Info` property of a `RowSet` object:
2727

@@ -32,7 +32,7 @@ double requestCharge = BitConverter.ToDouble(rowSet.Info.IncomingPayload["Reques
3232

3333
For more information, see [Quickstart: Build a Cassandra app by using the .NET SDK and Azure Cosmos DB](manage-data-dotnet.md).
3434

35-
## [Java SDK](#tab/java-sdk)
35+
### [Java SDK](#tab/java-sdk)
3636

3737
When you use the [Java SDK](https://mvnrepository.com/artifact/com.datastax.cassandra/cassandra-driver-core), you can retrieve the incoming payload by calling the `getExecutionInfo()` method on a `ResultSet` object:
3838

@@ -43,7 +43,7 @@ Double requestCharge = resultSet.getExecutionInfo().getIncomingPayload().get("Re
4343

4444
For more information, see [Quickstart: Build a Cassandra app by using the Java SDK and Azure Cosmos DB](manage-data-java.md).
4545

46-
## [GOCQL Driver](#tab/gocql-driver)
46+
### [GOCQL Driver](#tab/gocql-driver)
4747

4848
When you use the [GOCQL driver](https://github.com/gocql/gocql), you can retrieve the incoming payload by calling the `GetCustomPayload()` method on a [`Iter`](https://pkg.go.dev/github.com/gocql/gocql#Iter) type:
4949

0 commit comments

Comments
 (0)