/// <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> /// <param name='cancellationToken'> /// The cancellation token. /// </param> public static async Task <DigitalTwinsDescription> CreateOrUpdateAsync(this IDigitalTwinsOperations operations, string resourceGroupName, string resourceName, DigitalTwinsDescription digitalTwinsCreate, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, resourceName, digitalTwinsCreate, null, cancellationToken).ConfigureAwait(false)) { return(_result.Body); } }