Package version:

Interface PatchOperationInput

interface PatchOperationInput {
    id: string;
    ifMatch?: string;
    ifNoneMatch?: string;
    operationType: "Patch";
    partitionKey?: PartitionKey;
    resourceBody: PatchRequestBody;
}

Properties

id: string
ifMatch?: string
ifNoneMatch?: string
operationType
partitionKey?: PartitionKey
resourceBody: PatchRequestBody