You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cosmos-db/access-key-vault-managed-identity.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Azure Cosmos DB may need to read secret/key data from Azure Key Vault. For examp
31
31
1. In a terminal or command window, store the names of your Azure Key Vault resource, Azure Cosmos DB account, and resource group as shell variables named ``keyVaultName``, ``cosmosName``, and ``resourceGroupName``.
Copy file name to clipboardExpand all lines: articles/cosmos-db/get-started-change-data-capture.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ Now create and configure a source to flow data from the Azure Cosmos DB account'
104
104
105
105
### Working with source options
106
106
107
-
When you check any of the `Capture intermediate updates`, `Capture Deltes`, and `Capture Transactional store TTLs` options, your CDC process will create and populate the `__usr_opType` field in sink with the following values:
107
+
When you check any of the `Capture intermediate updates`, `Capture Deletes`, and `Capture Transactional store TTLs` options, your CDC process will create and populate the `__usr_opType` field in sink with the following values:
Copy file name to clipboardExpand all lines: articles/cosmos-db/how-to-develop-emulator.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ To get started, get the Windows-variant of the container image from the [Microso
72
72
To get started, download and install the latest version of Azure Cosmos DB Emulator on your local computer.
73
73
74
74
> [!TIP]
75
-
> The [emulator release notes](local-emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
75
+
> The [emulator release notes](emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
76
76
77
77
1. Download the [Azure Cosmos DB emulator](https://aka.ms/cosmosdb-emulator).
78
78
@@ -111,7 +111,7 @@ The Docker (Windows) container image doesn't support the API for MongoDB.
111
111
To get started, download and install the latest version of Azure Cosmos DB Emulator on your local computer.
112
112
113
113
> [!TIP]
114
-
> The [emulator release notes](local-emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
114
+
> The [emulator release notes](emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
115
115
116
116
1. Download the [Azure Cosmos DB emulator](https://aka.ms/cosmosdb-emulator).
117
117
@@ -134,7 +134,7 @@ The Docker container variant (Linux or Windows) of the emulator doesn't support
134
134
To get started, download and install the latest version of Azure Cosmos DB Emulator on your local computer.
135
135
136
136
> [!TIP]
137
-
> The [emulator release notes](local-emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
137
+
> The [emulator release notes](emulator-release-notes.md) article lists all the available versions and the feature updates that were made in each release.
138
138
139
139
1. Download the [Azure Cosmos DB emulator](https://aka.ms/cosmosdb-emulator).
The [``Database.ReadItemAsync<>``](/dotnet/api/microsoft.azure.cosmos.container.readitemasync) method reads an item and returns an object of type [``ItemResponse<>``](/dotnet/api/microsoft.azure.cosmos.itemresponse-1). The **ItemResponse<>** type inherits from the [``Response<>``](/dotnet/api/microsoft.azure.cosmos.response-1) type, which contains an implicit conversion operator to convert the object into the generic type. To learn more about implicit operators, see [user-defined conversion operators](/dotnet/csharp/language-reference/operators/user-defined-conversion-operators).
44
+
The [``Container.ReadItemAsync<>``](/dotnet/api/microsoft.azure.cosmos.container.readitemasync) method reads an item and returns an object of type [``ItemResponse<>``](/dotnet/api/microsoft.azure.cosmos.itemresponse-1). The **ItemResponse<>** type inherits from the [``Response<>``](/dotnet/api/microsoft.azure.cosmos.response-1) type, which contains an implicit conversion operator to convert the object into the generic type. To learn more about implicit operators, see [user-defined conversion operators](/dotnet/csharp/language-reference/operators/user-defined-conversion-operators).
45
45
46
46
Alternatively, you can return the **ItemResponse<>** generic type and explicitly get the resource. The more general **ItemResponse<>** type also contains useful metadata about the underlying API operation. In this example, metadata about the request unit charge for this operation is gathered using the **RequestCharge** property.
0 commit comments