apexvss@microsoft.com 2024-09-12 04:59:27 +00:00
Родитель e9344c981a
Коммит 7f98e2f9e3
1334 изменённых файлов: 16077 добавлений и 5875 удалений

Просмотреть файл

@ -25,4 +25,4 @@ type: "class"
desc: "The type Availability strategy."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -1057,4 +1057,4 @@ type: "class"
desc: "DO NOT USE. This is meant to be used only internally as a bridge access to classes in com.azure.cosmos"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "interface"
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```"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -156,4 +156,4 @@ type: "class"
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 with throughput control for handleChanges.\n\n```java\nThroughputControlGroupConfig throughputControlGroupConfig =\n new ThroughputControlGroupConfigBuilder()\n .groupName(\"cfp\")\n .targetThroughput(300)\n .priorityLevel(PriorityLevel.LOW)\n .build();\n ChangeFeedProcessor 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 .options(\n new ChangeFeedProcessorOptions()\n .setFeedPollThroughputControlConfig(throughputControlGroupConfig)\n )\n .buildChangeFeedProcessor();\n```\n\nBelow is an example of building ChangeFeedProcessor with throughput control for LatestVersion mode.\n\n```java\nThroughputControlGroupConfig throughputControlGroupConfig =\n new ThroughputControlGroupConfigBuilder()\n .groupName(\"cfp\")\n .targetThroughput(300)\n .priorityLevel(PriorityLevel.LOW)\n .build();\n ChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleLatestVersionChanges(changeFeedProcessorItems -> {\n for (ChangeFeedProcessorItem item : changeFeedProcessorItems) {\n // Implementation for handling and processing of each change feed item goes here\n }\n })\n .options(\n new ChangeFeedProcessorOptions()\n .setFeedPollThroughputControlConfig(throughputControlGroupConfig)\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```\n\nBelow is an example of building ChangeFeedProcessor for AllVersionsAndDeletes mode when also wishing to process a <xref uid=\"com.azure.cosmos.ChangeFeedProcessorContext\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessorContext\"></xref>.\n\n```java\nChangeFeedProcessor changeFeedProcessor = new ChangeFeedProcessorBuilder()\n .hostName(hostName)\n .feedContainer(feedContainer)\n .leaseContainer(leaseContainer)\n .handleAllVersionsAndDeletesChanges((docs, context) -> {\n for (ChangeFeedProcessorItem item : docs) {\n // Implementation for handling and processing of each ChangeFeedProcessorItem item goes here\n }\n String leaseToken = context.getLeaseToken();\n // Handling of the lease token corresponding to a batch of change feed processor item goes here\n })\n .buildChangeFeedProcessor();\n```"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -22,4 +22,4 @@ type: "interface"
desc: "Encapsulates properties which are mapped to a batch of change feed documents processed when <xref uid=\"com.azure.cosmos.ChangeFeedProcessorBuilder.handleAllVersionsAndDeletesChanges*\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessorBuilder#handleAllVersionsAndDeletesChanges(BiConsumer)\"></xref> lambda is invoked.\n\nNOTE: This interface is not designed to be implemented by end users."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -68,4 +68,4 @@ methods:
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."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -94,4 +94,4 @@ methods:
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"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -254,4 +254,4 @@ implements:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html\">Closeable</a>"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -60,4 +60,4 @@ type: "class"
desc: "The type Cosmos async clientEncryptionKey. This contains methods to operate on a cosmos clientEncryptionKey asynchronously"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -64,4 +64,4 @@ type: "class"
desc: "Read and delete conflicts"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -836,4 +836,4 @@ type: "class"
desc: "Provides methods for reading, deleting, and replacing existing Containers. Provides methods for interacting with child resources (Items, Scripts, Conflicts)"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -609,4 +609,4 @@ type: "class"
desc: "Perform read and delete databases, update database throughput, and perform operations on child resources"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -81,4 +81,4 @@ type: "class"
desc: "Has methods to operate on a per-User Permission to access a specific resource"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -259,4 +259,4 @@ type: "class"
desc: "The type Cosmos async scripts. This contains async methods to operate on cosmos scripts like UDFs, StoredProcedures and Triggers"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -132,4 +132,4 @@ type: "class"
desc: "The type Cosmos async stored procedure."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "class"
desc: "The type Cosmos async trigger. This contains methods to operate on a cosmos trigger asynchronously"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -159,4 +159,4 @@ type: "class"
desc: "The type Cosmos async user."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "class"
desc: "The type Cosmos async user defined function."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -178,4 +178,4 @@ type: "class"
desc: "DO NOT USE. For internal use only by the SDK. These methods might break at any time. No support will be provided."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -240,4 +240,4 @@ implements:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html\">Closeable</a>"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -487,4 +487,4 @@ implements:
- "<xref href=\"com.azure.core.client.traits.TokenCredentialTrait?alt=com.azure.core.client.traits.TokenCredentialTrait&text=TokenCredentialTrait\" data-throw-if-not-resolved=\"False\" />&lt;<xref href=\"com.azure.cosmos.CosmosClientBuilder?alt=com.azure.cosmos.CosmosClientBuilder&text=CosmosClientBuilder\" data-throw-if-not-resolved=\"False\" />&gt;"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -46,4 +46,4 @@ type: "class"
desc: "The type Cosmos clientEncryptionKey. This contains methods to operate on a cosmos clientEncryptionKey synchronously"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -690,4 +690,4 @@ type: "class"
desc: "Provides synchronous methods for reading, deleting, and replacing existing Containers Provides methods for interacting with child resources (Items, Scripts, Conflicts)"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -54,4 +54,4 @@ type: "class"
desc: "Encapsulates the list of container identities and no. of proactive connection regions."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -76,4 +76,4 @@ type: "class"
desc: "A builder to build <xref uid=\"com.azure.cosmos.CosmosContainerProactiveInitConfig\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosContainerProactiveInitConfig\"></xref>"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -505,4 +505,4 @@ type: "class"
desc: "Perform read and delete databases, update database throughput, and perform operations on child resources in a synchronous way"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -87,4 +87,4 @@ type: "class"
desc: "This class represents response diagnostic statistics associated with a request to Azure Cosmos DB"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -336,4 +336,4 @@ type: "class"
desc: "This class provides metadata for an operation in the Cosmos DB SDK that can be used by diagnostic handlers"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -39,4 +39,4 @@ type: "interface"
desc: "And interface that can be implemented to add custom diagnostic processors"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -56,4 +56,4 @@ type: "class"
desc: "This class represents diagnostic information for different steps in the request pipeline when processing a data plane request (for example to issue a point operation against a certain replica). This information can be useful to identify where in the request pipeline an error happened or latency was spent - for example whether high latency was due to the fact that a new channel (TCP connection with SSL handshake) needed to be created or because the transport took a long time due to network issues etc."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -106,4 +106,4 @@ type: "class"
desc: "This class represents diagnostic information for transport requests (calls to a replica in direct mode, calls to the Gateway for example to get metadata like physical addresses of replica for a partition."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -163,4 +163,4 @@ type: "class"
desc: "This class describes the thresholds when more details diagnostics are emitted for an operation due to high latency, high RU consumption or high payload sizes."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -64,4 +64,4 @@ type: "class"
desc: "Represents End to end operation latency policy config This enables requests to get cancelled by the client once the specified timeout is reached"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -76,4 +76,4 @@ type: "class"
desc: "Builder for CosmosEndToEndOperationLatencyPolicyConfig"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -286,4 +286,4 @@ type: "class"
desc: "This class defines a custom exception type for all operations on CosmosClient in the Azure Cosmos DB database service. Applications are expected to catch CosmosException and handle errors as appropriate when calling methods on CosmosClient.\n\nErrors coming from the service during normal execution are converted to CosmosException before returning to the application with the following exception:\n\nWhen a BE error is encountered during a QueryIterable<T> iteration, an IllegalStateException is thrown instead of CosmosException.\n\nWhen a transport level error happens that request is not able to reach the service, an IllegalStateException is thrown instead of CosmosException."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -56,4 +56,4 @@ type: "class"
desc: "A class which encapsulates a set of excluded regions."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -84,4 +84,4 @@ type: "class"
desc: "The <xref uid=\"com.azure.cosmos.CosmosItemSerializer\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosItemSerializer\"></xref> allows customizing the serialization of Cosmos Items - either to transform payload (for example wrap/unwrap in custom envelopes) or use custom serialization settings or json serializer stacks."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -23,4 +23,4 @@ type: "interface"
desc: "Represents a policy that can be used with <xref uid=\"com.azure.cosmos.CosmosClientBuilder\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosClientBuilder\"></xref> to customize the request sent to Azure Cosmos DB."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -50,4 +50,4 @@ type: "class"
desc: "<xref uid=\"com.azure.cosmos.CosmosRegionSwitchHint\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosRegionSwitchHint\"></xref> encapsulates hints which guide SDK-internal retry policies on how early to switch retries to a different region."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -210,4 +210,4 @@ type: "class"
desc: "Getters for the common request context for operations in CosmosDB."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -259,4 +259,4 @@ type: "class"
desc: "The type Cosmos sync scripts."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -136,4 +136,4 @@ type: "class"
desc: "The type Cosmos sync stored procedure."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "class"
desc: "The type Cosmos sync trigger."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "class"
desc: "The type Cosmos sync user."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -70,4 +70,4 @@ type: "class"
desc: "The type Cosmos sync user defined function."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -222,4 +222,4 @@ type: "class"
desc: "Represents the connection config with <xref uid=\"com.azure.cosmos.ConnectionMode.DIRECT\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ConnectionMode#DIRECT\"></xref> associated with Cosmos Client in the Azure Cosmos DB database service. For performance tips on how to optimize Direct connection configuration, refer to performance tips guide: [Performance tips guide][]\n\n\n[Performance tips guide]: https://docs.microsoft.com/en-us/azure/cosmos-db/performance-tips-java-sdk-v4-sql?tabs=api-async"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -126,4 +126,4 @@ type: "class"
desc: "Represents the connection config with <xref uid=\"com.azure.cosmos.ConnectionMode.GATEWAY\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ConnectionMode#GATEWAY\"></xref> associated with Cosmos Client in the Azure Cosmos DB database service."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -46,4 +46,4 @@ type: "class"
desc: "This configuration is used for throughput global control mode. It contains configuration about the extra container which will track all the clients throughput usage for a certain control group."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -64,4 +64,4 @@ type: "class"
desc: "Throughput global control config builder."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -82,4 +82,4 @@ type: "class"
desc: "Class to define the options for non-idempotent write operations"
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -34,4 +34,4 @@ type: "class"
desc: "<xref uid=\"com.azure.cosmos.SessionRetryOptions\" data-throw-if-not-resolved=\"false\" data-raw-source=\"SessionRetryOptions\"></xref> encapsulates hints which influence internal retry policies which are applied when the effective consistency used for the request is *Session Consistency*."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -84,4 +84,4 @@ type: "class"
desc: "A <xref uid=\"com.azure.cosmos.SessionRetryOptionsBuilder\" data-throw-if-not-resolved=\"false\" data-raw-source=\"SessionRetryOptionsBuilder\"></xref> instance will be used to build a <xref uid=\"com.azure.cosmos.SessionRetryOptions\" data-throw-if-not-resolved=\"false\" data-raw-source=\"SessionRetryOptions\"></xref> instance."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -77,4 +77,4 @@ type: "class"
desc: "The type Threshold based retry availability strategy."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -90,4 +90,4 @@ type: "class"
desc: "Encapsulates retry options in the Azure Cosmos DB database service."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -86,4 +86,4 @@ type: "class"
desc: "Throughput control group configuration."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -182,4 +182,4 @@ type: "class"
desc: "The throughput control group config builder."
metadata: {}
package: "com.azure.cosmos"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -114,4 +114,4 @@ type: "class"
desc: "Helper class to build a <xref uid=\"com.azure.cosmos.ChangeFeedProcessor\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessor\"></xref> instance for encryption feed container.\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```"
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -89,4 +89,4 @@ implements:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html\">Closeable</a>"
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -460,4 +460,4 @@ type: "class"
desc: "CosmosAsyncContainer with encryption capabilities."
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -125,4 +125,4 @@ type: "class"
desc: "CosmosEncryptionAsyncDatabase with encryption capabilities."
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -87,4 +87,4 @@ implements:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html\">Closeable</a>"
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -124,4 +124,4 @@ type: "class"
desc: "Helper class to build <xref uid=\"com.azure.cosmos.encryption.CosmosEncryptionAsyncClient\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosEncryptionAsyncClient\"></xref> and <xref uid=\"com.azure.cosmos.encryption.CosmosEncryptionClient\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosEncryptionClient\"></xref> instances as logical representation of the Azure Cosmos database service.\n\nWhen building client, cosmosAsyncClient()/cosmosClient(), keyEncryptionKeyResolver() and keyEncryptionKeyResolverName() are mandatory APIs, without these the initialization will fail.\n\n```java\nBuilding Cosmos Encryption Async Client APIs.\n If Azure key vault is used in , we can input in \n\n \n CosmosEncryptionAsyncClient cosmosEncryptionAsyncClient = new CosmosEncryptionClientBuilder()\n .cosmosAsyncClient(cosmosAsyncClient)\n .keyEncryptionKeyResolver(keyEncryptionKeyResolver)\n .keyEncryptionKeyResolverName(keyEncryptionKeyResolverName)\n .buildAsyncClient();\n```\n\n```java\nBuilding Cosmos Encryption Sync Client minimal APIs\n If Azure key vault is used in , we can input in \n * \n CosmosEncryptionClient client = new CosmosEncryptionClientBuilder()\n .cosmosClient(cosmosClient)\n .keyEncryptionKeyResolver(keyEncryptionKeyResolver)\n .keyEncryptionKeyResolverName(keyEncryptionKeyResolverName)\n .buildClient();\n```"
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -389,4 +389,4 @@ type: "class"
desc: "CosmosContainer with encryption capabilities."
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -125,4 +125,4 @@ type: "class"
desc: "CosmosEncryptionDatabase with encryption capabilities."
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -99,4 +99,4 @@ methods:
desc: "Algorithms for use with client-side encryption support in Azure Cosmos DB."
metadata: {}
package: "com.azure.cosmos.encryption.models"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -105,4 +105,4 @@ methods:
desc: "Algorithms for use with client-side encryption support in Azure Cosmos DB."
metadata: {}
package: "com.azure.cosmos.encryption.models"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -52,4 +52,4 @@ type: "class"
desc: "Represents a SQL query with encryption parameters in the Azure Cosmos DB database service."
metadata: {}
package: "com.azure.cosmos.encryption.models"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -9,4 +9,4 @@ enums:
- "com.azure.cosmos.encryption.models.CosmosEncryptionType"
metadata: {}
package: "com.azure.cosmos.encryption.models"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -15,4 +15,4 @@ classes:
desc: "This package provides Encryption interfaces for interacting with Azure Cosmos DB."
metadata: {}
package: "com.azure.cosmos.encryption"
artifact: com.azure:azure-cosmos-encryption:2.14.0
artifact: com.azure:azure-cosmos-encryption:2.14.1

Просмотреть файл

@ -90,4 +90,4 @@ type: "class"
desc: "Change Feed response meta data"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -74,4 +74,4 @@ methods:
desc: "Change feed operation type"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -108,4 +108,4 @@ type: "class"
desc: "Represents the change feed policy configuration for the container in the Azure Cosmos DB service.\n\nThe example below creates a new container with a change feed policy for AllVersionsAndDeletes change feed with a retention window of 8 minutes - so intermediary snapshots of changes as well as deleted documents would be available for processing for 8 minutes before they vanish. Processing the change feed with AllVersionsAndDeletes mode will only be able within this retention window - if you attempt to process a change feed after more than the retention window (8 minutes in this sample) an error (Status Code 400) will be returned. It would still be possible to process changes using LatestVersion mode even when configuring a AllVersionsAndDeletes change feed policy with retention window on the container and when using LatestVersion mode it doesn't matter whether you are out of the retention window or not.\n\n```java\nCosmosContainerProperties containerProperties =\n new CosmosContainerProperties(\"ContainerName\", \"/somePartitionKeyProperty\");\n containerProperties.setChangeFeedPolicy(ChangeFeedPolicy.createAllVersionsAndDeletesPolicy(8));\n\n CosmosAsyncDatabase database = client.createDatabase(databaseProperties).block().getDatabase();\n CosmosAsyncContainer container = database.createContainer(containerProperties).block().getContainer();\n```\n\nThe example below creates a new container with a change feed policy for LatestVersion change feed. Processing the change feed with AllVersionsAndDeletes mode will not be possible for this container. It would still be possible to process changes using LatestVersion mode. The LatestVersion change feed policy is also the default that is used when not explicitly specifying a change feed policy.\n\n```java\nCosmosContainerProperties containerProperties =\n new CosmosContainerProperties(\"ContainerName\", \"/somePartitionKeyProperty\");\n containerProperties.setChangeFeedPolicy(ChangeFeedPolicy.createLatestVersionPolicy());\n\n CosmosAsyncDatabase database = client.createDatabase(databaseProperties).block().getDatabase();\n CosmosAsyncContainer container = database.createContainer(containerProperties).block().getContainer();\n```"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -80,4 +80,4 @@ type: "class"
desc: "Change Feed processor item. Supports current and previous items through <xref uid=\"com.fasterxml.jackson.databind.JsonNode\" data-throw-if-not-resolved=\"false\" data-raw-source=\"JsonNode\"></xref> structure. Caller is recommended to type cast <xref uid=\"com.fasterxml.jackson.databind.JsonNode\" data-throw-if-not-resolved=\"false\" data-raw-source=\"JsonNode\"></xref> to cosmos item structure."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -395,4 +395,4 @@ type: "class"
desc: "Specifies the options associated with <xref uid=\"com.azure.cosmos.ChangeFeedProcessor\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessor\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -128,4 +128,4 @@ type: "class"
desc: "Specifies the <xref uid=\"com.azure.cosmos.ChangeFeedProcessor\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ChangeFeedProcessor\"></xref> state for a particular lease/worker."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -128,4 +128,4 @@ type: "class"
desc: "Path that needs encryption and the associated settings within <xref uid=\"com.azure.cosmos.models.ClientEncryptionPolicy\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ClientEncryptionPolicy\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -79,4 +79,4 @@ type: "class"
desc: "Client encryption policy."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -101,4 +101,4 @@ type: "class"
desc: "Represents a composite path of the IndexingPolicy in the Azure Cosmos DB database service. A composite path is used in a composite index. For example if you want to run a query like \"SELECT \\* FROM c ORDER BY c.age, c.height\", then you need to add \"/age\" and \"/height\" as composite paths to your composite index."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -68,4 +68,4 @@ methods:
desc: "Represents the sorting order for a path in a composite index, for a container in the Azure Cosmos DB database service."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -61,4 +61,4 @@ type: "class"
desc: "Represents a computed property definition for a Cosmos DB container. Below is an example of how to use <xref uid=\"com.azure.cosmos.models.ComputedProperty\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ComputedProperty\"></xref> in the context of creating a container.\n\n```java\nList<ComputedProperty> computedProperties = new ArrayList<>(\n Arrays.asList(\n new ComputedProperty(\"lowerName\", \"SELECT VALUE LOWER(c.name) FROM c\")\n )\n );\n containerProperties.setComputedProperties(computedProperties);\n database.createContainer(containerProperties).subscribe();\n```\n\nBelow is an example of how to use <xref uid=\"com.azure.cosmos.models.ComputedProperty\" data-throw-if-not-resolved=\"false\" data-raw-source=\"ComputedProperty\"></xref> in the context of replacing a container.\n\n```java\nCosmosContainerProperties containerProperties = getCollectionDefinition(containerName);\n List<ComputedProperty> computedProperties = new ArrayList<>(\n Arrays.asList(\n new ComputedProperty(\"upperName\", \"SELECT VALUE UPPER(c.name) FROM c\")\n )\n );\n containerProperties.setComputedProperties(computedProperties);\n container = database.getContainer(containerName);\n container.replace(containerProperties).subscribe();\n```"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -82,4 +82,4 @@ methods:
desc: "The enum Conflict resolution mode."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -134,4 +134,4 @@ type: "class"
desc: "Represents the conflict resolution policy configuration for specifying how to resolve conflicts in case writes from different regions result in conflicts on items in the container in the Azure Cosmos DB service. Refer to: https://docs.microsoft.com/en-us/azure/cosmos-db/conflict-resolution-policies\n\nA container with custom conflict resolution with no user-registered stored procedure.\n\n```java\nCosmosContainerProperties containerProperties =\n new CosmosContainerProperties(\"Multi-master container\", \"Multi-master container partition key\");\n containerProperties.setConflictResolutionPolicy(ConflictResolutionPolicy.createCustomPolicy());\n\n CosmosAsyncDatabase database = client.createDatabase(databaseProperties).block().getDatabase();\n CosmosAsyncContainer container = database.createContainer(containerProperties).block().getContainer();\n```\n\nA container with custom conflict resolution with a user-registered stored procedure.\n\n```java\nCosmosContainerProperties containerProperties =\n new CosmosContainerProperties(\"Multi-master container\", \"Multi-master container partition key\");\n\n ConflictResolutionPolicy policy = ConflictResolutionPolicy.createCustomPolicy(conflictResolutionSprocName);\n containerProperties.setConflictResolutionPolicy(policy);\n\n CosmosAsyncDatabase database = client.createDatabase(databaseProperties).block().getDatabase();\n CosmosAsyncContainer container = database.createContainer(containerProperties).block().getContainer();\n```\n\nA container with last writer wins conflict resolution, based on a path in the conflicting items. A container with custom conflict resolution with a user-registered stored procedure.\n\n```java\nCosmosContainerProperties containerProperties =\n new CosmosContainerProperties(\"Multi-master container\", \"Multi-master container partition key\");\n\n ConflictResolutionPolicy policy = ConflictResolutionPolicy.createLastWriterWinsPolicy(\"/path/for/conflict/resolution\");\n containerProperties.setConflictResolutionPolicy(policy);\n\n CosmosAsyncDatabase database = client.createDatabase(databaseProperties).block().getDatabase();\n CosmosAsyncContainer container = database.createContainer(containerProperties).block().getContainer();\n```"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -88,4 +88,4 @@ methods:
desc: "Specifies the kind of resource that has a Cosmos container as parent resource."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -35,4 +35,4 @@ type: "interface"
desc: "This interface is for client side implementation, which can be used for initializing CosmosAsyncClient without passing master key, resource token and permission feed.\n\nEach time the SDK create request for CosmosDB, authorization token is generated based on that request at client side which enables creation of one CosmosAsyncClient per application shared across various users with different resource permissions."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -260,4 +260,4 @@ type: "class"
desc: "Represents a batch of operations against items with the same <xref uid=\"com.azure.cosmos.models.PartitionKey\" data-throw-if-not-resolved=\"false\" data-raw-source=\"PartitionKey\"></xref> in a container that will be performed in a Cosmos manner at the Azure Cosmos DB service.\n\nUse <xref uid=\"com.azure.cosmos.models.CosmosBatch.createCosmosBatch(com.azure.cosmos.models.PartitionKey)\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch#createCosmosBatch(PartitionKey)\"></xref> to create an instance of <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref>. **Example** This example atomically modifies a set of items as a batch.\n\n```java\npublic class ToDoActivity {\n public final String type;\n public final String id;\n public final String status;\n public ToDoActivity(String type, String id, String status) {\n this.type = type;\n this.id = id;\n this.status = status;\n }\n }\n\n String activityType = \"personal\";\n\n ToDoActivity test1 = new ToDoActivity(activityType, \"learning\", \"ToBeDone\");\n ToDoActivity test2 = new ToDoActivity(activityType, \"shopping\", \"Done\");\n ToDoActivity test3 = new ToDoActivity(activityType, \"swimming\", \"ToBeDone\");\n\n CosmosBatch batch = CosmosBatch.createCosmosBatch(new Cosmos.PartitionKey(activityType));\n batch.createItemOperation(test1);\n batch.replaceItemOperation(test2.id, test2);\n batch.upsertItemOperation(test3);\n batch.deleteItemOperation(\"reading\");\n\n CosmosBatchResponse response = container.executeTransactionalBatch(batch);\n\n if (!response.isSuccessStatusCode()) {\n // Handle and log exception\n return;\n }\n\n // Look up interested results - e.g., via typed access on operation results\n\n CosmosBatchOperationResult result = response.get(0);\n ToDoActivity readActivity = result.getItem(ToDoActivity.class);\n```\n\n**Example**\n\nThis example atomically reads a set of items as a batch.\n\n```java\nString activityType = \"personal\";\n\n CosmosBatch batch = CosmosBatch.createCosmosBatch(new Cosmos.PartitionKey(activityType));\n batch.readItemOperation(\"playing\");\n batch.readItemOperation(\"walking\");\n batch.readItemOperation(\"jogging\");\n batch.readItemOperation(\"running\");\n\n CosmosBatchResponse response = container.executeTransactionalBatch(batch);\n List resultItems = new ArrayList();\n\n for (int i = 0; i < response.size(); i++) {\n CosmosBatchOperationResult result = response.get(0);\n resultItems.add(result.getItem(ToDoActivity.class));\n }\n```\n\n**See:** [Limits on CosmosBatch requests][].\n\n\n[Limits on CosmosBatch requests]: https://docs.microsoft.com/azure/cosmos-db/concepts-limits"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -96,4 +96,4 @@ type: "class"
desc: "Encapsulates options that can be specified for an operation within a <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -110,4 +110,4 @@ type: "class"
desc: "Represents a result for a specific operation that was part of a <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref> request."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -106,4 +106,4 @@ type: "class"
desc: "Encapsulates options that can be specified for an operation within a <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -154,4 +154,4 @@ type: "class"
desc: "Encapsulates options that can be specified for a <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -166,4 +166,4 @@ type: "class"
desc: "Response of a <xref uid=\"com.azure.cosmos.models.CosmosBatch\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBatch\"></xref> request."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -223,4 +223,4 @@ type: "class"
desc: "Encapsulates options that can be specified for operations used in Bulk execution. It can be passed while processing bulk operations."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -33,4 +33,4 @@ type: "class"
desc: "Encapsulates internal state used to dynamically determine max micro batch size for bulk operations. It allows passing this state for one \\`<xref uid=\"com.azure.cosmos.models.CosmosBulkExecutionOptions\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBulkExecutionOptions\"></xref>\\` to another in case bulk operations are expected to have similar characteristics and the context for determining the micro batch size should be preserved."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -106,4 +106,4 @@ type: "class"
desc: "Encapsulates options that can be specified for an operation used in Bulk execution. It can be passed while creating bulk request using <xref uid=\"com.azure.cosmos.models.CosmosBulkOperations\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBulkOperations\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -150,4 +150,4 @@ type: "class"
desc: "Response of a <xref uid=\"com.azure.cosmos.models.CosmosItemOperation\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosItemOperation\"></xref> request when processed using Bulk by calling <xref uid=\"com.azure.cosmos.CosmosAsyncContainer.<TContext>executeBulkOperations(reactor.core.publisher.Flux<com.azure.cosmos.models.CosmosItemOperation>,com.azure.cosmos.models.CosmosBulkExecutionOptions)\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosAsyncContainer#executeBulkOperations(Flux, CosmosBulkExecutionOptions)\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -68,4 +68,4 @@ typeParameters:
desc: "Request, response and the exception(if any) for a <xref uid=\"com.azure.cosmos.models.CosmosItemOperation\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosItemOperation\"></xref> request when processed using Bulk by calling <xref uid=\"com.azure.cosmos.CosmosAsyncContainer.<TContext>executeBulkOperations(reactor.core.publisher.Flux<com.azure.cosmos.models.CosmosItemOperation>,com.azure.cosmos.models.CosmosBulkExecutionOptions)\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosAsyncContainer#executeBulkOperations(Flux, CosmosBulkExecutionOptions)\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -584,4 +584,4 @@ type: "class"
desc: "Utility for creating bulk operations which can be executed by calling <xref uid=\"com.azure.cosmos.CosmosAsyncContainer.<TContext>executeBulkOperations(reactor.core.publisher.Flux<com.azure.cosmos.models.CosmosItemOperation>,com.azure.cosmos.models.CosmosBulkExecutionOptions)\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosAsyncContainer#executeBulkOperations(Flux, CosmosBulkExecutionOptions)\"></xref> . Also while creating these operation, if some options which are only for individual operation can be provided by passing a <xref uid=\"com.azure.cosmos.models.CosmosBulkItemRequestOptions\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBulkItemRequestOptions\"></xref> while creating the bulk operation. See also <xref uid=\"com.azure.cosmos.models.CosmosBulkExecutionOptions\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBulkExecutionOptions\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -130,4 +130,4 @@ type: "class"
desc: "Encapsulates options that can be specified for an patch operation used in Bulk execution. It can be passed while creating bulk patch request using <xref uid=\"com.azure.cosmos.models.CosmosBulkOperations\" data-throw-if-not-resolved=\"false\" data-raw-source=\"CosmosBulkOperations\"></xref>."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -314,4 +314,4 @@ type: "class"
desc: "Encapsulates options that can be specified for an operation within a change feed request."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -163,4 +163,4 @@ type: "class"
desc: "Details of an encryption key for use with the Azure Cosmos DB service."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Просмотреть файл

@ -50,4 +50,4 @@ type: "class"
desc: "The type Cosmos client encryption key response."
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.63.2
artifact: com.azure:azure-cosmos:4.63.3

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше