in src/CosmosDB/Providers/CosmosDbServiceOperationProvider.cs [246:265]
private ServiceOperation GetReceiveDocumentServiceOperation()
{
return new ServiceOperation
{
Name = "receiveDocument",
Id = "receiveDocument",
Type = "receiveDocument",
Properties = new ServiceOperationProperties
{
Api = this.GetServiceOperationApi().GetFlattenedApi(),
Summary = "Receive document",
Description = "Receive document from Azure Cosmos DB",
Visibility = Visibility.Important,
OperationType = OperationType.ServiceProvider,
BrandColor = Color.LightSkyBlue.ToHexColor(),
IconUri = new Uri("https://raw.githubusercontent.com/Azure/logicapps-connector-extensions/CosmosDB/src/CosmosDB/icon.png"),
Trigger = TriggerType.Batch,
},
};
}