AccountProperties.Id 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 the Id of the resource in the Azure Cosmos DB service.
public string Id { get; }
member this.Id : string
Public ReadOnly Property Id As String
Property Value
The Id associated with the resource.
Remarks
Every resource within an Azure Cosmos DB database account needs to have a unique identifier. Unlike ResourceId, which is set internally, this Id is settable by the user and is not immutable.
When working with document resources, they too have this settable Id property. If an Id is not supplied by the user the SDK will automatically generate a new GUID and assign its value to this property before persisting the document in the database. You can override this auto Id generation by setting the disableAutomaticIdGeneration parameter on the Microsoft.Azure.Cosmos.DocumentClient instance to true. This will prevent the SDK from generating new Ids.
The following characters are restricted and cannot be used in the Id property: '/', '\\', '?', '#'
Applies to
Azure SDK for .NET