RequestOptions.OfferType Property

Definition

Gets or sets the offer type for the resource in the Azure Cosmos DB service.

public string OfferType { get; set; }
member this.OfferType : string with get, set
Public Property OfferType As String

Property Value

The offer type value.

Examples

The followng example shows how to create a collection with the S2 offer.

await client.CreateDocumentCollectionAsync(
    database.SelfLink,
    new DocumentCollection { Id = "newcoll" },
    new RequestOptions { OfferType = "S2" });

Remarks

This option is only valid when creating a document collection.

Refer to http://azure.microsoft.comdocumentation/articles/documentdb-performance-levels/ for the list of valid offer types.

Applies to

See also