1. Create One
Creates a single record in a Cosmos DB container.Properties
Container Name: The name of the Cosmos DB container where the object will be inserted. Records to Add: The object to be inserted into the container. Auto Create: Create a collection if it doesnt exists in the container. Returns: Return aval with the ID of newly created record.
2. Create Many
Creates multiple records in a Cosmos DB container in a single operation. Container Name: The name of the Cosmos DB container where the objects will be inserted. Records to Add: An array of objects to be inserted into the container. Auto Create: Create a collection if it doesnt exists in the container. Returns: Return aval with the IDs of newly created records.