RequestOptions.OfferEnableRUPerMinuteThroughput Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the OfferEnableRUPerMinuteThroughput for a collection in the Azure Cosmos DB service
public bool OfferEnableRUPerMinuteThroughput { get; set; }
member this.OfferEnableRUPerMinuteThroughput : bool with get, set
Public Property OfferEnableRUPerMinuteThroughput As Boolean
Property Value
Represents Request Units(RU)/Minute throughput is enabled/disabled for a collection in the Azure Cosmos DB service.
Examples
The followng example shows how to create a collection with RU/Minute throughput offer.
await client.CreateDocumentCollectionAsync(
database.SelfLink,
new DocumentCollection { Id = "newcoll" },
new RequestOptions { OfferThroughput = 4000, OfferEnableRUPerMinuteThroughput = true });
Remarks
This option is only valid when creating a document collection.
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET