/// <summary> /// Create or update the metadata of a DigitalTwinsInstance. The usual pattern /// to modify a property is to retrieve the DigitalTwinsInstance and security /// metadata, and then combine them with the modified values in a new body to /// update the DigitalTwinsInstance. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group that contains the DigitalTwinsInstance. /// </param> /// <param name='resourceName'> /// The name of the DigitalTwinsInstance. /// </param> /// <param name='digitalTwinsCreate'> /// The DigitalTwinsInstance and security metadata. /// </param> public static DigitalTwinsDescription BeginCreateOrUpdate(this IDigitalTwinsOperations operations, string resourceGroupName, string resourceName, DigitalTwinsDescription digitalTwinsCreate) { return(operations.BeginCreateOrUpdateAsync(resourceGroupName, resourceName, digitalTwinsCreate).GetAwaiter().GetResult()); }