Skip to content

Commit ec6b128

Browse files
author
VSC-Service-Account
committed
1 parent 44768e0 commit ec6b128

File tree

615 files changed

+842
-653
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

615 files changed

+842
-653
lines changed

docs-ref-autogen/com.azure.cosmos.AvailabilityStrategy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ type: "class"
2525
desc: "The type Availability strategy."
2626
metadata: {}
2727
package: "com.azure.cosmos"
28-
artifact: com.azure:azure-cosmos:4.48.0
28+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.BridgeInternal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1179,4 +1179,4 @@ type: "class"
11791179
desc: "DO NOT USE. This is meant to be used only internally as a bridge access to classes in com.azure.cosmos"
11801180
metadata: {}
11811181
package: "com.azure.cosmos"
1182-
artifact: com.azure:azure-cosmos:4.48.0
1182+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.ChangeFeedProcessor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ type: "interface"
7070
desc: "Simple host for distributing change feed events across observers, simplifying the process of reading the change feeds and distributing the processing events across multiple consumers effectively.\n\nThere are four main components of implementing the change feed processor:\n\n * The monitored container: the monitored container has the data from which the change feed is generated. Any inserts and updates to the monitored container are reflected in the change feed of the container.\n * The lease container: the lease container acts as a state storage and coordinates processing the change feed across multiple workers. The lease container can be stored in the same account as the monitored container or in a separate account.\n * The host: a host is an application instance that uses the change feed processor to listen for changes. Multiple instances with the same lease configuration can run in parallel, but each instance should have a different instance name.\n * The delegate: the delegate is the code that defines what you, the developer, want to do with each batch of changes that the change feed processor reads.\n\nBelow is an example of building ChangeFeedProcessor for LatestVersion mode.\n\n```java\nChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleChanges(docs -> {\n for (JsonNode item : docs) {\n // Implementation for handling and processing of each JsonNode item goes here\n }\n })\n .buildChangeFeedProcessor();\n```\n\nBelow is an example of building ChangeFeedProcessor for AllVersionsAndDeletes mode.\n\n```java\nChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleAllVersionsAndDeletesChanges(docs -> {\n for (ChangeFeedProcessorItem item : docs) {\n // Implementation for handling and processing of each ChangeFeedProcessorItem item goes here\n }\n })\n .buildChangeFeedProcessor();\n```"
7171
metadata: {}
7272
package: "com.azure.cosmos"
73-
artifact: com.azure:azure-cosmos:4.48.0
73+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.ChangeFeedProcessorBuilder.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ type: "class"
142142
desc: "Helper class to build a <xref uid=\"com.azure.cosmos.ChangeFeedProcessor\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessor\"></xref> instance. Below is an example of building ChangeFeedProcessor for LatestVersion mode.\n\n```java\nChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleChanges(docs -> {\n for (JsonNode item : docs) {\n // Implementation for handling and processing of each JsonNode item goes here\n }\n })\n .buildChangeFeedProcessor();\n```\n\nBelow is an example of building ChangeFeedProcessor for AllVersionsAndDeletes mode.\n\n```java\nChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleAllVersionsAndDeletesChanges(docs -> {\n for (ChangeFeedProcessorItem item : docs) {\n // Implementation for handling and processing of each ChangeFeedProcessorItem item goes here\n }\n })\n .buildChangeFeedProcessor();\n```"
143143
metadata: {}
144144
package: "com.azure.cosmos"
145-
artifact: com.azure:azure-cosmos:4.48.0
145+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.ConnectionMode.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ methods:
6767
desc: "Represents the connection mode to be used by the client in the Azure Cosmos DB database service.\n\nDIRECT and GATEWAY connectivity modes are supported. DIRECT is the default."
6868
metadata: {}
6969
package: "com.azure.cosmos"
70-
artifact: com.azure:azure-cosmos:4.48.0
70+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.ConsistencyLevel.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ methods:
9393
desc: "Represents the consistency levels supported for Azure Cosmos DB client operations in the Azure Cosmos DB service.\n\nThe requested ConsistencyLevel must match or be weaker than that provisioned for the database account. Consistency levels by order of strength are STRONG, BOUNDED\\_STALENESS, SESSION and EVENTUAL. Refer to consistency level documentation for additional details: https://docs.microsoft.com/en-us/azure/cosmos-db/consistency-levels"
9494
metadata: {}
9595
package: "com.azure.cosmos"
96-
artifact: com.azure:azure-cosmos:4.48.0
96+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncClient.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,4 +254,4 @@ implements:
254254
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html\">Closeable</a>"
255255
metadata: {}
256256
package: "com.azure.cosmos"
257-
artifact: com.azure:azure-cosmos:4.48.0
257+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncClientEncryptionKey.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ type: "class"
6060
desc: "The type Cosmos async clientEncryptionKey. This contains methods to operate on a cosmos clientEncryptionKey asynchronously"
6161
metadata: {}
6262
package: "com.azure.cosmos"
63-
artifact: com.azure:azure-cosmos:4.48.0
63+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncConflict.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ type: "class"
6464
desc: "Read and delete conflicts"
6565
metadata: {}
6666
package: "com.azure.cosmos"
67-
artifact: com.azure:azure-cosmos:4.48.0
67+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncContainer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -816,4 +816,4 @@ type: "class"
816816
desc: "Provides methods for reading, deleting, and replacing existing Containers. Provides methods for interacting with child resources (Items, Scripts, Conflicts)"
817817
metadata: {}
818818
package: "com.azure.cosmos"
819-
artifact: com.azure:azure-cosmos:4.48.0
819+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncDatabase.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -609,4 +609,4 @@ type: "class"
609609
desc: "Perform read and delete databases, update database throughput, and perform operations on child resources"
610610
metadata: {}
611611
package: "com.azure.cosmos"
612-
artifact: com.azure:azure-cosmos:4.48.0
612+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncPermission.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ type: "class"
8181
desc: "Has methods to operate on a per-User Permission to access a specific resource"
8282
metadata: {}
8383
package: "com.azure.cosmos"
84-
artifact: com.azure:azure-cosmos:4.48.0
84+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncScripts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,4 @@ type: "class"
259259
desc: "The type Cosmos async scripts. This contains async methods to operate on cosmos scripts like UDFs, StoredProcedures and Triggers"
260260
metadata: {}
261261
package: "com.azure.cosmos"
262-
artifact: com.azure:azure-cosmos:4.48.0
262+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncStoredProcedure.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ type: "class"
132132
desc: "The type Cosmos async stored procedure."
133133
metadata: {}
134134
package: "com.azure.cosmos"
135-
artifact: com.azure:azure-cosmos:4.48.0
135+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncTrigger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ type: "class"
7070
desc: "The type Cosmos async trigger. This contains methods to operate on a cosmos trigger asynchronously"
7171
metadata: {}
7272
package: "com.azure.cosmos"
73-
artifact: com.azure:azure-cosmos:4.48.0
73+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncUser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,4 @@ type: "class"
159159
desc: "The type Cosmos async user."
160160
metadata: {}
161161
package: "com.azure.cosmos"
162-
artifact: com.azure:azure-cosmos:4.48.0
162+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosAsyncUserDefinedFunction.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ type: "class"
7070
desc: "The type Cosmos async user defined function."
7171
metadata: {}
7272
package: "com.azure.cosmos"
73-
artifact: com.azure:azure-cosmos:4.48.0
73+
artifact: com.azure:azure-cosmos:4.48.1

docs-ref-autogen/com.azure.cosmos.CosmosBridgeInternal.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,4 @@ type: "class"
230230
desc: "DO NOT USE. For internal use only by the SDK. These methods might break at any time. No support will be provided."
231231
metadata: {}
232232
package: "com.azure.cosmos"
233-
artifact: com.azure:azure-cosmos:4.48.0
233+
artifact: com.azure:azure-cosmos:4.48.1

0 commit comments

Comments
 (0)