/// <summary>
        /// This sample is a placeholder to demo the snippet generation.
        /// </summary>
        public async Task RunSamplesAsync()
        {
            try
            {
                #region Snippet:TimeSeriesInsightsGetModelSettings

                // Get the model settings for the time series insights environment
                Response <TimeSeriesModelSettings> currentSettings = await client.GetModelSettingsAsync();

                Console.WriteLine($"Retrieved model with default type id {currentSettings.Value.DefaultTypeId} " +
                                  $"model name {currentSettings.Value.Name}.");

                foreach (TimeSeriesIdProperty tsiId in currentSettings.Value.TimeSeriesIdProperties)
                {
                    Console.WriteLine($"Time series Id name: '{tsiId.Name}', Type: '{tsiId.Type}'.");
                }

                #endregion Snippet:TimeSeriesInsightsGetModelSettings

                #region Snippet:TimeSeriesInsightsUpdateModelSettings

                var options = new UpdateModelSettingsOptions
                {
                    Name = "sampleModel"
                };
                Response <TimeSeriesModelSettings> updatedSettings = await client.UpdateModelSettingsAsync(options);

                Console.WriteLine($"Updated model name to {updatedSettings.Value.Name} ");

                #endregion Snippet:TimeSeriesInsightsUpdateModelSettings
            }
            catch (Exception ex)
            {
                FatalError($"Failed to create models due to:\n{ex}");
            }
        }