From 92915eaefaf4ff68c68d5de25cf0ba804631785b Mon Sep 17 00:00:00 2001 From: Steffen Froehlich Date: Fri, 10 May 2024 16:03:59 -0700 Subject: [PATCH 1/4] Release 3.0.0 --- .editorconfig | 2 +- .gitignore | 4 -- CODEOWNERS | 5 +- Directory.Build.props | 8 +-- .../Csharp.ExampleApplication.csproj | 2 +- ...endencyInjection.ExampleApplication.csproj | 2 +- scripts/generate-docs.ps1 | 31 +++++++----- scripts/generate-license-header-python.ps1 | 4 +- src/Documentation/api/index.md | 41 +++++++++++++++- src/Documentation/articles/configuration.md | 24 ++++----- src/Documentation/articles/intro.md | 2 +- src/Documentation/articles/toc.yml | 32 +++++------- src/Documentation/index.md | 2 +- src/Documentation/python_wrapper/.gitignore | 4 +- src/Documentation/samples/intro.md | 7 +-- src/Documentation/samples/toc.yml | 12 ++--- .../templates/tableau/styles/main.css | 12 ++++- src/Documentation/toc.yml | 7 ++- src/Python/pyproject.toml | 2 +- src/Python/scripts/build-package.ps1 | 2 +- src/Python/scripts/build_binaries.py | 2 +- src/Python/scripts/build_tests.py | 2 +- .../Api/IHttpResponseMessageExtensions.cs | 12 +++-- .../Api/IServiceCollectionExtensions.cs | 13 +++-- src/Tableau.Migration/Api/ISitesApiClient.cs | 12 +++-- .../Rest/Models/Responses/FlowsResponse.cs | 49 ++++++++++++++++--- .../Api/Rest/RestException.cs | 20 ++++++-- .../Api/Rest/RestUrlPrefixes.cs | 25 +++++----- src/Tableau.Migration/Api/SitesApiClient.cs | 19 ++++--- .../Files/ContentTypeFilePathResolver.cs | 11 +++-- .../Resources/SharedResources.resx | 8 +-- .../Tableau.Migration.csproj | 4 +- tests/Python.TestApplication/build.py | 6 +-- tests/Python.TestApplication/pyproject.toml | 2 +- .../Tableau.Migration.TestApplication.csproj | 2 +- ...leau.Migration.TestComponents.Tests.csproj | 2 +- .../Tableau.Migration.TestComponents.csproj | 2 +- .../Tableau.Migration.Tests.csproj | 2 +- .../Unit/Api/DataSourcesApiClientTests.cs | 8 +-- .../Api/IServiceCollectionExtensionsTests.cs | 8 +-- .../Unit/Api/Rest/RestExceptionTests.cs | 9 ++-- .../Files/ContentTypeFilePathResolverTests.cs | 9 ++-- 42 files changed, 275 insertions(+), 157 deletions(-) diff --git a/.editorconfig b/.editorconfig index fcdafe0..cdeaa19 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,7 +2,7 @@ [*.{cs,vb}] # File header -file_header_template = Copyright (c) 2023, Salesforce, Inc.\n SPDX-License-Identifier: Apache-2\n \n Licensed under the Apache License, Version 2.0 (the ""License"") \n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an ""AS IS"" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n +file_header_template = \n Copyright (c) 2024, Salesforce, Inc.\n SPDX-License-Identifier: Apache-2\n \n Licensed under the Apache License, Version 2.0 (the "License") \n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an "AS IS" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n #### Naming styles #### diff --git a/.gitignore b/.gitignore index 3e6a492..93a79bb 100644 --- a/.gitignore +++ b/.gitignore @@ -184,8 +184,4 @@ UpgradeLog.htm /src/Documentation/_python /src/Python/Documentation/generated /tests/Python.TestApplication/manifest.json -/.git2gus -/src/Python/scripts/publish-package.ps1 -# Public repo ignores -.github/pull_request_template.md \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS index c044e59..0c41fc3 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,2 +1,3 @@ -# Comment line immediately above ownership line is reserved for related other information. Please be careful while editing. -#ECCN:Open Source 5D002 +#GUSINFO: gus_team_id,product_tag_id +#GUSINFO: a00EE00000glzJCYAY,a1aEE000000JtTpYAK +* @tableau/migration diff --git a/Directory.Build.props b/Directory.Build.props index 68edf20..941f329 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,9 +4,9 @@ enable true true - 2.1.1 - Tableau Software, LLC - Tableau Software, LLC - Copyright (c) 2024, Tableau Software, LLC and its licensors + 3.0.0 + Salesforce, Inc. + Salesforce, Inc. + Copyright (c) 2024, Salesforce, Inc. and its licensors \ No newline at end of file diff --git a/examples/Csharp.ExampleApplication/Csharp.ExampleApplication.csproj b/examples/Csharp.ExampleApplication/Csharp.ExampleApplication.csproj index 13715dd..bb42f3e 100644 --- a/examples/Csharp.ExampleApplication/Csharp.ExampleApplication.csproj +++ b/examples/Csharp.ExampleApplication/Csharp.ExampleApplication.csproj @@ -1,7 +1,7 @@  Exe - net6.0;net7.0;net8.0 + net6.0;net8.0 CA2007,IDE0073 7d7631f1-dc4a-49de-89d5-a194544705c1 diff --git a/examples/DependencyInjection.ExampleApplication/DependencyInjection.ExampleApplication.csproj b/examples/DependencyInjection.ExampleApplication/DependencyInjection.ExampleApplication.csproj index 1ecd9a5..0ce3747 100644 --- a/examples/DependencyInjection.ExampleApplication/DependencyInjection.ExampleApplication.csproj +++ b/examples/DependencyInjection.ExampleApplication/DependencyInjection.ExampleApplication.csproj @@ -2,7 +2,7 @@ Exe - net6.0;net7.0;net8.0 + net6.0;net8.0 CA2007,IDE0073 diff --git a/scripts/generate-docs.ps1 b/scripts/generate-docs.ps1 index a636285..81bfa82 100644 --- a/scripts/generate-docs.ps1 +++ b/scripts/generate-docs.ps1 @@ -1,15 +1,15 @@ <# -Copyright (c) 2023, Salesforce, Inc. +Copyright (c) 2024, Salesforce, Inc. SPDX-License-Identifier: Apache-2 -Licensed under the Apache License, Version 2.0 (the ""License"") +Licensed under the Apache License, Version 2.0 (the "License") you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an ""AS IS"" BASIS, +distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. @@ -43,6 +43,14 @@ $main_docs_dir = Join-Path $root_dir "src/Documentation" # Directory that sphinx generates automatic documentation to. $sphinx_output_dir = Join-Path $python_dir "Documentation/generated" +# Directory for Python wrapper files. Includes an index file and a directory for autogenerated files. +$python_wrapper_dir = Join-Path $main_docs_dir "python_wrapper"; + +$python_reference_dir_name = "reference"; + +# Directory where DocFX looks for markdown files to render into our 'Python Wrapper' section. +$python_md_destination = Join-Path $python_wrapper_dir $python_reference_dir_name; + function Run-Command { param([string]$Cmd) Write-Host "Executing command"; @@ -149,10 +157,7 @@ function Copy-Python-Docs { #> # Directory to which sphinx write generated markdown files. $sphinx_generated_files_dir = Join-Path $sphinx_output_dir "markdown/generated/*"; - - # Directory where DocFX looks for markdown files to render into our 'Python Wrapper' section. - $python_md_destination = Join-Path $main_docs_dir "python_wrapper"; - + Write-Host-With-Timestamp "Copying python docs to final destination."; Run-Command ("Clear-Directory -Path $python_md_destination"); Run-Command ("Copy-Item -Force -Recurse $sphinx_generated_files_dir -Destination $python_md_destination"); @@ -166,7 +171,6 @@ function Write-Python-Docs-Toc { .SYNOPSIS Generate a toc.yml file (table of contents for DocFX) from the python doc markdown files. #> - $python_md_destination = Join-Path $main_docs_dir "python_wrapper"; Write-Host-With-Timestamp "Generating toc.yml for Python auto-generated doc files ($python_md_destination)."; class DocFileInfo { @@ -212,6 +216,7 @@ function Write-Python-Docs-Toc { # Build the yaml file from DocFileInfo list $fileContent = New-Object Collections.Generic.List[string]; + $fileContent.Add("### YamlMime:TableOfContent"); $fileContent.Add("items:"); $packages = $docFiles | Where-Object { $_.Category -eq "Package" } if ($packages.Length -eq 0) { @@ -219,7 +224,7 @@ function Write-Python-Docs-Toc { } foreach ($package in $packages) { $fileContent.Add("- name: $($package.Package)"); - $fileContent.Add(" href: $($package.FileName)"); + $fileContent.Add(" href: $($python_reference_dir_name)/$($package.FileName)"); $moduleGroups = $docFiles | Where-Object { $_.Category -ne "Package" -and $_.Package -eq $package.Package } | Group-Object -Property Package, Module; if ($moduleGroups.Length -eq 0) { continue; @@ -229,7 +234,7 @@ function Write-Python-Docs-Toc { foreach ($moduleGroup in $moduleGroups) { $module = $moduleGroup.Group | Where-Object { $_.Category -eq "Module" }; $fileContent.Add(" - name: $($module.Module)"); - $fileContent.Add(" href: $($module.FileName)"); + $fileContent.Add(" href: $($python_reference_dir_name)/$($module.FileName)"); $members = $moduleGroup.Group | Where-Object { $_.Category -eq "Member" }; if ($members.Length -eq 0) { @@ -242,17 +247,17 @@ function Write-Python-Docs-Toc { foreach ($member in $functions) { $fileContent.Add(" - name: $($member.Member)"); - $fileContent.Add(" href: $($member.FileName)"); + $fileContent.Add(" href: $($python_reference_dir_name)/$($member.FileName)"); } foreach ($member in $classes) { $fileContent.Add(" - name: $($member.Member)"); - $fileContent.Add(" href: $($member.FileName)"); + $fileContent.Add(" href: $($python_reference_dir_name)/$($member.FileName)"); } } } - $tocPath = Join-Path -Path $python_md_destination -ChildPath toc.yml; + $tocPath = Join-Path -Path $python_wrapper_dir -ChildPath toc.yml; Run-Command ("Out-File -FilePath '$tocPath' -InputObject '$($fileContent | Out-String)'"); diff --git a/scripts/generate-license-header-python.ps1 b/scripts/generate-license-header-python.ps1 index d8b51de..aa48046 100644 --- a/scripts/generate-license-header-python.ps1 +++ b/scripts/generate-license-header-python.ps1 @@ -1,5 +1,5 @@ <# -Copyright (c) 2023, Salesforce, Inc. +Copyright (c) 2024, Salesforce, Inc. SPDX-License-Identifier: Apache-2 Licensed under the Apache License, Version 2.0 (the ""License"") @@ -23,7 +23,7 @@ limitations under the License. #> param([string[]]$Target) -$license_header_python = "# Copyright (c) 2023, Salesforce, Inc. +$license_header_python = "# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the ""License""); diff --git a/src/Documentation/api/index.md b/src/Documentation/api/index.md index 060b96f..1486172 100644 --- a/src/Documentation/api/index.md +++ b/src/Documentation/api/index.md @@ -1,6 +1,45 @@ # Introduction -This is the API Reference for the Migration SDK. +Welcome to the C# API Reference for the Migration SDK. + +## Examples to get started + +The following code samples are for writing a simple migration app using the Migration SDK. For details on configuring and customizing the Migration SDK to your specific needs, see [Articles](~/articles/intro.md) and [Code Samples](~/samples/intro.md). + +### [Program.cs](#tab/program-cs) + +[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Program.cs#namespace)] + +### [Startup code](#tab/startup-cde) + +[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/MyMigrationApplication.cs#namespace)] + +### [Config classes](#tab/config-classes) + +[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Config/MyMigrationApplicationOptions.cs#namespace)] + +[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Config/EndpointOptions.cs#namespace)] + +### [Config file](#tab/appsettings) + +```json +{ + "source": { + "serverUrl": "http://server", + "siteContentUrl": "", + "accessTokenName": "my server token name", + "accessToken": "my-secret-server-pat" + }, + "destination": { + "serverUrl": "https://pod.online.tableau.com", + "siteContentUrl": "site-name", + "accessTokenName": "my cloud token name", + "accessToken": "my-secret-cloud-pat" + } +} +``` + +--- ## Suggested Reading diff --git a/src/Documentation/articles/configuration.md b/src/Documentation/articles/configuration.md index 1c8f8ef..2e5315f 100644 --- a/src/Documentation/articles/configuration.md +++ b/src/Documentation/articles/configuration.md @@ -53,7 +53,7 @@ The [`IMigrationPlan`](xref:Tableau.Migration.IMigrationPlan) interface defines *Optional/Required:* **Optional**. -*Description:* The Plan Builder exposes the properties [`MigrationPlanBuilder.Hooks`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Hooks), [`MigrationPlanBuilder.Filters`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Filters), [`MigrationPlanBuilder.Mappings`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Mappings), and [`MigrationPlanBuilder.Transformers`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Transformers). With these properties, it is possible to adjust a given migration plan for specific scenarios. For more details, check the [Custom Hooks article](advanced_config/hooks/custom_hooks.md). +*Description:* The Plan Builder exposes the properties [`MigrationPlanBuilder.Hooks`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Hooks), [`MigrationPlanBuilder.Filters`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Filters), [`MigrationPlanBuilder.Mappings`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Mappings), and [`MigrationPlanBuilder.Transformers`](xref:Tableau.Migration.Engine.MigrationPlanBuilder#Tableau_Migration_Engine_MigrationPlanBuilder_Transformers). With these properties, it is possible to adjust a given migration plan for specific scenarios. For more details, see the [Custom Hooks article](hooks/custom_hooks.md). ### Build @@ -65,7 +65,7 @@ The [`IMigrationPlan`](xref:Tableau.Migration.IMigrationPlan) interface defines [`MigrationSdkOptions`](xref:Tableau.Migration.Config.MigrationSdkOptions) is the configuration class the Migration SDK uses internally to process a migration. It contains adjustable properties that change some engine behaviors. These properties are useful tools to troubleshoot and tune a migration process. Start with this class and others in the [Config](xref:Tableau.Migration.Config) section for more details. -When writing a C# application, it is recommended that a [.NET Generic Host](https://learn.microsoft.com/en-us/dotnet/core/extensions/generic-host?tabs=appbuilder) is used to initialize the application. This will enable setting configuration values via `appsettings.json` which can be passed into `userOptions` in [`.AddTableauMigrationSdk`](xref:Tableau.Migration.IServiceCollectionExtensions#Tableau_Migration_IServiceCollectionExtensions_AddTableauMigrationSdk_Microsoft_Extensions_DependencyInjection_IServiceCollection_Microsoft_Extensions_Configuration_IConfiguration_). See [.NET getting started examples](~/samples/csharp.md) for more info. +When writing a C# application, we recommend using a [.NET Generic Host](https://learn.microsoft.com/en-us/dotnet/core/extensions/generic-host?tabs=appbuilder) to initialize the application. This will enable setting configuration values via `appsettings.json` which can be passed into `userOptions` in [`.AddTableauMigrationSdk`](xref:Tableau.Migration.IServiceCollectionExtensions#Tableau_Migration_IServiceCollectionExtensions_AddTableauMigrationSdk_Microsoft_Extensions_DependencyInjection_IServiceCollection_Microsoft_Extensions_Configuration_IConfiguration_). See [.NET getting started examples](~/api/index.md) for more info. When writing a python application, configuration values are set via environment variables. The `:` delimiter doesn't work with environment variable hierarchical keys on all platforms. For example, the `:` delimiter is not supported by Bash. The double underscore (`__`), which is supported on all platforms, automatically replaces any `:` delimiters in environment variables. All configuration environment variables start with `MigrationSDK__`. @@ -133,7 +133,7 @@ The following sections describe each setting. They should always be set per cont *Reload on Edit?:* **Yes**. The update will apply next time the Migration SDK requests a list of objects. -*Description:* The Migration SDK uses the **BatchSize** property to define the page size of each List Request. For more details, check the [Tableau REST API Paginating Results documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_paging.htm). +*Description:* The Migration SDK uses the **BatchSize** property to define the page size of each List Request. For more details, see the [Tableau REST API Paginating Results documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_paging.htm). #### ContentTypes.BatchPublishingEnabled @@ -158,7 +158,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK publishes a new batch. -*Description:* The Migration SDK uses [two methods](advanced_config/hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **individual process**. The SDK uses the **MigrationParallelism** property to define the number of parallel tasks migrating the same type of content simultaneously. It is possible to tune the Migration SDK processing time with this configuration. +*Description:* The Migration SDK uses [two methods](hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **individual process**. The SDK uses the **MigrationParallelism** property to define the number of parallel tasks migrating the same type of content simultaneously. It is possible to tune the Migration SDK processing time with this configuration. > [!WARNING] > There are [concurrency limits in REST APIs on Tableau Cloud](https://kb.tableau.com/articles/issue/concurrency-limits-in-rest-apis-on-tableau-cloud). The current default configuration is the balance between performance without blocking too many resources to the migration process. @@ -198,7 +198,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK publishes a new file. -*Description:* As part of the migration process, the Migration SDK has to publish file-based content types like Workbooks and Data Sources. Some of these files are very large. The Migration SDK uses the **FileChunkSizeKB** property to split these files into smaller pieces, making the publishing process more reliable. For more details, check the [Tableau REST API Publishing Resources documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_publish.htm). +*Description:* As part of the migration process, the Migration SDK has to publish file-based content types like Workbooks and Data Sources. Some of these files are very large. The Migration SDK uses the **FileChunkSizeKB** property to split these files into smaller pieces, making the publishing process more reliable. For more details, see the [Tableau REST API Publishing Resources documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_publish.htm). ### Network.HeadersLoggingEnabled @@ -210,7 +210,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK logs a new HTTP request. -*Description:* Check the [logging article](logging.md) for more details. +*Description:* See the [logging article](logging.md) for more details. ### Network.ContentLoggingEnabled @@ -222,7 +222,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK logs a new HTTP request. -*Description:* Check the [logging article](logging.md) for more details. +*Description:* See the [logging article](logging.md) for more details. ### Network.BinaryContentLoggingEnabled @@ -234,7 +234,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK logs a new HTTP request. -*Description:* Check the [logging article](logging.md) for more details. +*Description:* See the [logging article](logging.md) for more details. ### Network.ExceptionsLoggingEnabled @@ -246,7 +246,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK logs a new HTTP request. -*Description:* Check the [logging article](logging.md) for more details. +*Description:* See the [logging article](logging.md) for more details. ### Network.Resilience.RetryEnabled @@ -450,7 +450,7 @@ Supported Content Types: *Reload on Edit?:* **No**. Any changes to this configuration will reflect on the next time the application starts. -*Description:* The SDK uses the **UrlSegments** property as a list of types of default permissions of given project. For more details, check the [Query Default Permissions documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_default_permissions). +*Description:* The SDK uses the **UrlSegments** property as a list of types of default permissions of given project. For more details, see the [Query Default Permissions documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_permissions.htm#query_default_permissions). ### Jobs.JobPollRate @@ -462,7 +462,7 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK delays the processing status recheck. -*Description:* The Migration SDK uses [two methods](advanced_config/hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **bulk process**. After publishing a batch, the API will return a Job ID. With it, the SDK can call another API to check the job processing status. The SDK uses the **JobPollRate** property to define the interval it will wait to recheck processing status. For more details, check the [Tableau REST API Query Job documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_job). +*Description:* The Migration SDK uses [two methods](hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **bulk process**. After publishing a batch, the API will return a Job ID. With it, the SDK can call another API to see the job processing status. The SDK uses the **JobPollRate** property to define the interval it will wait to recheck processing status. For more details, see the [Tableau REST API Query Job documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_job). > [!WARNING] > There is [a limit for querying job status on Tableau Cloud](https://help.tableau.com/current/online/en-us/to_site_capacity.htm#jobs-initiated-by-command-line-and-api-calls). The current default configuration is the balance between performance without blocking too many resources to the migration process. @@ -476,4 +476,4 @@ Supported Content Types: *Reload on Edit?:* **Yes**. The update will apply the next time the Migration SDK validates the total time it has waited for the job to complete. -*Description:* The Migration SDK uses [two methods](advanced_config/hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **bulk process**. The SDK uses the **JobTimeout** property to define the maximum interval it will wait for a job to complete. For more details, check the [Tableau REST API Query Job documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_job). +*Description:* The Migration SDK uses [two methods](hooks/index.md#hook-execution-flow) to publish the content to a destination server: the **bulk process**, where a single call to the API will push multiple items to the server, and the **individual process**, where it publishes a single item with a single call to the API. This configuration only applies to the **bulk process**. The SDK uses the **JobTimeout** property to define the maximum interval it will wait for a job to complete. For more details, see the [Tableau REST API Query Job documentation](https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_ref_jobs_tasks_and_schedules.htm#query_job). diff --git a/src/Documentation/articles/intro.md b/src/Documentation/articles/intro.md index 5500acc..2235bf0 100644 --- a/src/Documentation/articles/intro.md +++ b/src/Documentation/articles/intro.md @@ -1,5 +1,5 @@ # Introduction -The Migration SDK is primarily written in C# using the [.NET](https://dotnet.microsoft.com/en-us/learn/dotnet/what-is-dotnet-framework) Framework. To enable interoperability with Python, it also includes a [Python Wrapper](python_wrapper.md). The articles in this section delve into useful information to help you design and write your migration application. +The Migration SDK is primarily written in C# using the [.NET](https://dotnet.microsoft.com/en-us/learn/dotnet/what-is-dotnet-framework) Framework. To enable interoperability with Python, it also includes a [Python Wrapper](~/python_wrapper/index.md). The articles in this section delve into useful information to help you design and write your migration application. This documentation also contains [Code Samples](~/samples/intro.md) to give you a head start. diff --git a/src/Documentation/articles/toc.yml b/src/Documentation/articles/toc.yml index 0321042..6d901f0 100644 --- a/src/Documentation/articles/toc.yml +++ b/src/Documentation/articles/toc.yml @@ -4,29 +4,19 @@ href: configuration.md - name: Plan Validation href: plan_validation.md -- name: Advanced Configuration - items: - - name: Hooks - href: advanced_config/hooks/index.md - items: - - name: Custom Hooks - href: advanced_config/hooks/custom_hooks.md - - name: Hooks in Python - href: advanced_config/hooks/python_hooks.md - - name: Example Hook Use Cases - href: advanced_config/hooks/example_hook_use_cases.md - - name: User Authentication - href: advanced_config/user_authentication.md - name: Logging - href: logging.md + href: logging.md +- name: Hooks + href: hooks/index.md + items: + - name: Custom Hooks + href: hooks/custom_hooks.md + - name: Example Hook Use Cases + href: hooks/example_hook_use_cases.md +- name: User Authentication + href: user_authentication.md - name: Dependency Injection href: dependency_injection.md -- name: Python Wrapper - href: python_wrapper.md - name: Troubleshooting - items: - - name: Troubleshooting - href: troubleshooting/troubleshooting.md - - name: Errors and Warning - href: troubleshooting/errors.md + href: troubleshooting.md diff --git a/src/Documentation/index.md b/src/Documentation/index.md index 3f69438..1cae2c3 100644 --- a/src/Documentation/index.md +++ b/src/Documentation/index.md @@ -4,7 +4,7 @@ The full C# API Reference. -## [Python Wrapper](~/python_wrapper/tableau_migration.md) +## [Python Wrapper](~/python_wrapper/index.md) The Python Wrapper Reference. diff --git a/src/Documentation/python_wrapper/.gitignore b/src/Documentation/python_wrapper/.gitignore index c96a04f..cd77783 100644 --- a/src/Documentation/python_wrapper/.gitignore +++ b/src/Documentation/python_wrapper/.gitignore @@ -1,2 +1,2 @@ -* -!.gitignore \ No newline at end of file +reference +/toc.yml \ No newline at end of file diff --git a/src/Documentation/samples/intro.md b/src/Documentation/samples/intro.md index e2f1e2b..75af3c9 100644 --- a/src/Documentation/samples/intro.md +++ b/src/Documentation/samples/intro.md @@ -1,8 +1,3 @@ # Code Samples -To get you started with developing the Migration SDK, here is some example code. - -* [.NET getting started examples](csharp.md) -* [Python getting started examples](python.md) - -There are some more examples in this section to help you get started with advanced configuration via hooks. +After you have started building your migration using the example code in [C#](~/api/index.md) or [Python](~/python_wrapper/index.md), you may want to further customize your migration using hooks. This section contains some code samples to help. diff --git a/src/Documentation/samples/toc.yml b/src/Documentation/samples/toc.yml index d0b7c34..45b8313 100644 --- a/src/Documentation/samples/toc.yml +++ b/src/Documentation/samples/toc.yml @@ -1,10 +1,6 @@ - name: Introduction href: intro.md -- name: Getting Started (.NET) - href: csharp.md -- name: Getting Started (Python) - href: python.md -- name: Samples - items: - - name: Hooks - href: hooks/toc.yml +- name: Hooks + href: hooks/toc.yml +- name: Hooks in Python + href: python_hooks.md diff --git a/src/Documentation/templates/tableau/styles/main.css b/src/Documentation/templates/tableau/styles/main.css index 30e6aa9..aeb2f1b 100644 --- a/src/Documentation/templates/tableau/styles/main.css +++ b/src/Documentation/templates/tableau/styles/main.css @@ -2,6 +2,7 @@ body { font-family: "Open Sans", Helvetica, Arial, sans-serif; + color: #555; } .toc .nav>li>a { @@ -11,6 +12,10 @@ body { padding: 0; } +.toc .nav>li.active>a { + font-weight: bold; +} + /* Table of Contents*/ .sidetoc { background-color: #ffffff; @@ -47,8 +52,8 @@ body .toc { } .toc .level1>li { - font-weight: bold; font-size: 14px; + font-weight: normal; } .toc .level2 { @@ -57,6 +62,11 @@ body .toc { .expand-stub::before { color: #337ab7; + font-weight: normal; +} + +.expand-stub+a { + font-weight: normal; } /*Navbar*/ diff --git a/src/Documentation/toc.yml b/src/Documentation/toc.yml index 1bae974..136cb8b 100644 --- a/src/Documentation/toc.yml +++ b/src/Documentation/toc.yml @@ -2,8 +2,11 @@ href: api/ homepage: api/index.md - name: Python Wrapper - href: python_wrapper/tableau_migration.md + href: python_wrapper/ + homepage: python_wrapper/index.md - name: Code Samples href: samples/ + homepage: samples/intro.md - name: Articles - href: articles/ \ No newline at end of file + href: articles/ + homepage: articles/intro.md \ No newline at end of file diff --git a/src/Python/pyproject.toml b/src/Python/pyproject.toml index 4468ecc..f180181 100644 --- a/src/Python/pyproject.toml +++ b/src/Python/pyproject.toml @@ -7,7 +7,7 @@ name = "tableau_migration" dynamic = ["version"] authors = [ - { name="Tableau a Salesforce Product" }, + { name="Salesforce, Inc." }, ] description = "Tableau Migration SDK" readme = "README.md" diff --git a/src/Python/scripts/build-package.ps1 b/src/Python/scripts/build-package.ps1 index 7106703..60b0bc0 100644 --- a/src/Python/scripts/build-package.ps1 +++ b/src/Python/scripts/build-package.ps1 @@ -38,7 +38,7 @@ try { Remove-Item -Recurse -ErrorAction SilentlyContinue dist/* - dotnet publish /p:DebugType=None /p:DebugSymbols=false $projectToBuild -c $Configuration -o .\src\tableau_migration\bin -f net7.0 + dotnet publish /p:DebugType=None /p:DebugSymbols=false $projectToBuild -c $Configuration -o .\src\tableau_migration\bin -f net6.0 } finally { diff --git a/src/Python/scripts/build_binaries.py b/src/Python/scripts/build_binaries.py index 3d63a66..0609bbc 100644 --- a/src/Python/scripts/build_binaries.py +++ b/src/Python/scripts/build_binaries.py @@ -14,4 +14,4 @@ sys.path.append(bin_path) shutil.rmtree(bin_path, True) -subprocess.run(["dotnet", "publish", migration_project, "-o", bin_path, "-f", "net7.0"]) +subprocess.run(["dotnet", "publish", migration_project, "-o", bin_path, "-f", "net6.0"]) diff --git a/src/Python/scripts/build_tests.py b/src/Python/scripts/build_tests.py index 103dfab..a48c793 100644 --- a/src/Python/scripts/build_tests.py +++ b/src/Python/scripts/build_tests.py @@ -6,4 +6,4 @@ testcomponent_project = abspath("../../tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj") -subprocess.run(["dotnet", "publish", testcomponent_project, "-o", build_binaries.bin_path, "-f", "net7.0"]) \ No newline at end of file +subprocess.run(["dotnet", "publish", testcomponent_project, "-o", build_binaries.bin_path, "-f", "net6.0"]) \ No newline at end of file diff --git a/src/Tableau.Migration/Api/IHttpResponseMessageExtensions.cs b/src/Tableau.Migration/Api/IHttpResponseMessageExtensions.cs index 3df8d0f..2d6203e 100644 --- a/src/Tableau.Migration/Api/IHttpResponseMessageExtensions.cs +++ b/src/Tableau.Migration/Api/IHttpResponseMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -58,6 +59,7 @@ public static async Task ToResultAsync(this IHttpResponseMessage respon if (tsError is not null) { throw new RestException( + response.RequestMessage?.Method, response.RequestMessage?.RequestUri, tsError, sharedResourcesLocalizer); @@ -117,6 +119,7 @@ public static IResult ToResult(this IHttpResponseMess if (restError is not null) { throw new RestException( + response.RequestMessage?.Method, response.RequestMessage?.RequestUri, restError, sharedResourcesLocalizer); @@ -147,6 +150,7 @@ public static async Task> ToResultAsync(this if (restError is not null) { throw new RestException( + response.RequestMessage?.Method, response.RequestMessage?.RequestUri, restError, sharedResourcesLocalizer); @@ -193,6 +197,7 @@ public static IPagedResult ToPagedResult(this IHttpRe if (restError is not null) { throw new RestException( + response.RequestMessage?.Method, response.RequestMessage?.RequestUri, restError, sharedResourcesLocalizer); @@ -241,6 +246,7 @@ public static async Task> ToPagedResultAsync(); + services.AddScoped(); + services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); - services.AddScoped(); - services.AddScoped(); services.AddScoped(); + services.AddScoped(); //API Simulator. services.AddSingleton(); @@ -77,6 +79,7 @@ internal static IServiceCollection AddMigrationApiClient(this IServiceCollection //Publishing services. services.AddScoped(); + services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(typeof(ILabelsApiClient<>), typeof(LabelsApiClient<>)); diff --git a/src/Tableau.Migration/Api/ISitesApiClient.cs b/src/Tableau.Migration/Api/ISitesApiClient.cs index f618a6a..33b1b50 100644 --- a/src/Tableau.Migration/Api/ISitesApiClient.cs +++ b/src/Tableau.Migration/Api/ISitesApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -63,6 +64,11 @@ public interface ISitesApiClient : IAsyncDisposable, IContentApiClient /// IViewsApiClient Views { get; } + /// + /// Gets the API client for prep flow operations. + /// + IFlowsApiClient Flows { get; } + /// /// Gets the site with the specified ID. /// diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/FlowsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/FlowsResponse.cs index 42a6066..5f01a39 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/FlowsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/FlowsResponse.cs @@ -1,20 +1,22 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // using System; +using System.Linq; using System.Xml.Serialization; namespace Tableau.Migration.Api.Rest.Models.Responses @@ -37,7 +39,7 @@ public class FlowsResponse : PagedTableauServerResponse /// /// Class representing a site response. /// - public class FlowType + public class FlowType : IFlowType { /// /// Gets or sets the ID for the response. @@ -63,6 +65,12 @@ public class FlowType [XmlAttribute("webpageUrl")] public string? WebpageUrl { get; set; } + /// + /// Gets or sets the file type for the response. + /// + [XmlAttribute("fileType")] + public string? FileType { get; set; } + /// /// Gets or sets the created timestamp for the response. /// @@ -81,11 +89,15 @@ public class FlowType [XmlElement("project")] public ProjectType? Project { get; set; } + IProjectReferenceType? IWithProjectType.Project => Project; + /// /// Gets or sets the owner for the response. /// [XmlElement("owner")] - public UserType? Owner { get; set; } + public OwnerType? Owner { get; set; } + + IOwnerType? IWithOwnerType.Owner => Owner; /// /// Gets or sets the tags for the response. @@ -94,10 +106,16 @@ public class FlowType [XmlArrayItem("tag")] public TagType[] Tags { get; set; } = Array.Empty(); + ITagType[] IWithTagTypes.Tags + { + get => Tags; + set => Tags = value.Select(t => new TagType(t)).ToArray(); + } + /// /// Class representing a REST API project response. /// - public class ProjectType + public class ProjectType : IProjectReferenceType { /// /// Gets or sets the ID for the response. @@ -115,7 +133,7 @@ public class ProjectType /// /// Class representing a REST API user response. /// - public class UserType + public class OwnerType : IOwnerType { /// /// Gets or sets the ID for the response. @@ -133,13 +151,28 @@ public class UserType /// /// Class representing a REST API tag response. /// - public class TagType + public class TagType : ITagType { /// /// Gets or sets the label for the response. /// [XmlAttribute("label")] public string? Label { get; set; } + + /// + /// The default parameterless constructor. + /// + public TagType() + { } + + /// + /// Constructor to build from + /// + /// The object. + public TagType(ITagType tag) + { + Label = tag.Label; + } } } } diff --git a/src/Tableau.Migration/Api/Rest/RestException.cs b/src/Tableau.Migration/Api/Rest/RestException.cs index 1ab220e..06e3c38 100644 --- a/src/Tableau.Migration/Api/Rest/RestException.cs +++ b/src/Tableau.Migration/Api/Rest/RestException.cs @@ -1,20 +1,22 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // using System; +using System.Net.Http; using Tableau.Migration.Api.Rest.Models; using Tableau.Migration.Resources; @@ -25,6 +27,11 @@ namespace Tableau.Migration.Api.Rest /// public class RestException : Exception { + /// + /// Gets the request URI from Tableau API. + /// + public readonly HttpMethod? HttpMethod; + /// /// Gets the request URI from Tableau API. /// @@ -48,15 +55,18 @@ public class RestException : Exception /// /// Creates a new instance. /// + /// The http method that generated the current error. /// The request URI that generated the current error. /// The returned from the Tableau API. /// A string localizer. public RestException( + HttpMethod? httpMethod, Uri? requestUri, Error error, ISharedResourcesLocalizer sharedResourcesLocalizer) - : base(FormatError(requestUri, error, sharedResourcesLocalizer)) + : base(FormatError(httpMethod, requestUri, error, sharedResourcesLocalizer)) { + HttpMethod = httpMethod; RequestUri = requestUri; Code = error.Code; Detail = error.Detail; @@ -64,6 +74,7 @@ public RestException( } private static string FormatError( + HttpMethod? httpMethod, Uri? requestUri, Error error, ISharedResourcesLocalizer sharedResourcesLocalizer) @@ -72,6 +83,7 @@ private static string FormatError( return string.Format( sharedResourcesLocalizer[SharedResourceKeys.RestExceptionContent], + httpMethod, requestUri, error.Code ?? nullValue, error.Summary ?? nullValue, diff --git a/src/Tableau.Migration/Api/Rest/RestUrlPrefixes.cs b/src/Tableau.Migration/Api/Rest/RestUrlPrefixes.cs index 4566984..2b48537 100644 --- a/src/Tableau.Migration/Api/Rest/RestUrlPrefixes.cs +++ b/src/Tableau.Migration/Api/Rest/RestUrlPrefixes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -25,26 +26,28 @@ internal static class RestUrlPrefixes private static readonly IImmutableDictionary _urlPrefixesByType = new Dictionary(InheritedTypeComparer.Instance) { [typeof(IDataSourcesApiClient)] = DataSources, + [typeof(IFlowsApiClient)] = Flows, [typeof(IGroupsApiClient)] = Groups, [typeof(IJobsApiClient)] = Jobs, [typeof(IProjectsApiClient)] = Projects, [typeof(ISitesApiClient)] = Sites, [typeof(IUsersApiClient)] = Users, - [typeof(IWorkbooksApiClient)] = Workbooks, [typeof(IViewsApiClient)] = Views, + [typeof(IWorkbooksApiClient)] = Workbooks, } .ToImmutableDictionary(InheritedTypeComparer.Instance); - public const string Sites = "sites"; - public const string Projects = "projects"; - public const string Users = "users"; - public const string Groups = "groups"; + public const string Content = "content"; public const string DataSources = "datasources"; - public const string Workbooks = "workbooks"; + public const string FileUploads = "fileUploads"; + public const string Flows = "flows"; + public const string Groups = "groups"; public const string Jobs = "jobs"; + public const string Projects = "projects"; + public const string Sites = "sites"; + public const string Users = "users"; public const string Views = "views"; - public const string FileUploads = "fileUploads"; - public const string Content = "content"; + public const string Workbooks = "workbooks"; public static string GetUrlPrefix() where TApiClient : IContentApiClient diff --git a/src/Tableau.Migration/Api/SitesApiClient.cs b/src/Tableau.Migration/Api/SitesApiClient.cs index be43527..786f39d 100644 --- a/src/Tableau.Migration/Api/SitesApiClient.cs +++ b/src/Tableau.Migration/Api/SitesApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -52,7 +53,8 @@ public SitesApiClient( IUsersApiClient usersApiClient, IDataSourcesApiClient dataSourcesApiClient, IWorkbooksApiClient workbooksApiClient, - IViewsApiClient viewssApiClient, + IViewsApiClient viewsApiClient, + IFlowsApiClient flowsApiClient, ISharedResourcesLocalizer sharedResourcesLocalizer) : base(restRequestBuilderFactory, finderFactory, loggerFactory, sharedResourcesLocalizer) { @@ -65,7 +67,8 @@ public SitesApiClient( Users = usersApiClient; DataSources = dataSourcesApiClient; Workbooks = workbooksApiClient; - Views = viewssApiClient; + Views = viewsApiClient; + Flows = flowsApiClient; } private static readonly ImmutableDictionary> _contentTypeAccessors = new Dictionary>(InheritedTypeComparer.Instance) @@ -75,7 +78,8 @@ public SitesApiClient( { typeof(IProject), client => client.Projects }, { typeof(IDataSource), client => client.DataSources }, { typeof(IWorkbook), client => client.Workbooks }, - { typeof(IView), client => client.Views } + { typeof(IView), client => client.Views }, + { typeof(IFlow), client => client.Flows } } .ToImmutableDictionary(InheritedTypeComparer.Instance); @@ -109,6 +113,9 @@ public SitesApiClient( /// public IViewsApiClient Views { get; } + /// + public IFlowsApiClient Flows { get; } + /// public IReadApiClient? GetReadApiClient() where TContent : class diff --git a/src/Tableau.Migration/Content/Files/ContentTypeFilePathResolver.cs b/src/Tableau.Migration/Content/Files/ContentTypeFilePathResolver.cs index ac09642..efa14c3 100644 --- a/src/Tableau.Migration/Content/Files/ContentTypeFilePathResolver.cs +++ b/src/Tableau.Migration/Content/Files/ContentTypeFilePathResolver.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -33,6 +34,10 @@ public string ResolveRelativePath(TContent contentItem, string origina { return Path.Combine("data-sources", $"data-source-{ds.Id:N}{extension}"); } + else if(contentItem is IFlow f) + { + return Path.Combine("flows", $"flow-{f.Id:N}{extension}"); + } else if (contentItem is IWorkbook wb) { return Path.Combine("workbooks", $"workbook-{wb.Id:N}{extension}"); diff --git a/src/Tableau.Migration/Resources/SharedResources.resx b/src/Tableau.Migration/Resources/SharedResources.resx index 7302962..bc462a3 100644 --- a/src/Tableau.Migration/Resources/SharedResources.resx +++ b/src/Tableau.Migration/Resources/SharedResources.resx @@ -188,10 +188,10 @@ An error was returned from the Tableau API: -URL: {0} -Code: {1} -Summary: {2} -Detail: {3} +URL: {0} {1} +Code: {2} +Summary: {3} +Detail: {4} # Exception diff --git a/src/Tableau.Migration/Tableau.Migration.csproj b/src/Tableau.Migration/Tableau.Migration.csproj index 9e052f4..6e9fcbf 100644 --- a/src/Tableau.Migration/Tableau.Migration.csproj +++ b/src/Tableau.Migration/Tableau.Migration.csproj @@ -2,7 +2,7 @@ Tableau Migration SDK https://github.com/tableau/tableau-migration-sdk - net6.0;net7.0;net8.0 + net6.0;net8.0 Tableau.Migration True @@ -41,7 +41,7 @@ Note: This SDK is specific for migrating from Tableau Server to Tableau Cloud. I - + diff --git a/tests/Python.TestApplication/build.py b/tests/Python.TestApplication/build.py index eb41699..0154cd6 100644 --- a/tests/Python.TestApplication/build.py +++ b/tests/Python.TestApplication/build.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -34,7 +34,7 @@ def build(): migration_project = abspath("../../tests/Tableau.Migration.Tests/Tableau.Migration.Tests.csproj") test_component_project = abspath("../../tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj") shutil.rmtree(bin_path, True) - subprocess.run(["dotnet", "publish", migration_project, "-o", bin_path, "-f", "net7.0"]) - subprocess.run(["dotnet", "publish", test_component_project, "-o", bin_path, "-f", "net7.0"]) + subprocess.run(["dotnet", "publish", migration_project, "-o", bin_path, "-f", "net6.0"]) + subprocess.run(["dotnet", "publish", test_component_project, "-o", bin_path, "-f", "net6.0"]) sys.path.append(bin_path) diff --git a/tests/Python.TestApplication/pyproject.toml b/tests/Python.TestApplication/pyproject.toml index bdb46cb..2a266ed 100644 --- a/tests/Python.TestApplication/pyproject.toml +++ b/tests/Python.TestApplication/pyproject.toml @@ -3,7 +3,7 @@ name = "tableau_migration_testapplication" dynamic = ["version"] authors = [ - { name="Tableau a Salesforce Product" }, + { name="Salesforce, Inc." }, ] description = "Tableau Migration SDK - Test Application" # https://devguide.python.org/versions/ diff --git a/tests/Tableau.Migration.TestApplication/Tableau.Migration.TestApplication.csproj b/tests/Tableau.Migration.TestApplication/Tableau.Migration.TestApplication.csproj index c5d175f..39ed68e 100644 --- a/tests/Tableau.Migration.TestApplication/Tableau.Migration.TestApplication.csproj +++ b/tests/Tableau.Migration.TestApplication/Tableau.Migration.TestApplication.csproj @@ -1,7 +1,7 @@  Exe - net6.0;net7.0;net8.0 + net6.0;net8.0 CA2007 7d7631f1-dc4a-49de-89d5-a194544705c1 diff --git a/tests/Tableau.Migration.TestComponents.Tests/Tableau.Migration.TestComponents.Tests.csproj b/tests/Tableau.Migration.TestComponents.Tests/Tableau.Migration.TestComponents.Tests.csproj index 6aecc9f..4cb6f47 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/Tableau.Migration.TestComponents.Tests.csproj +++ b/tests/Tableau.Migration.TestComponents.Tests/Tableau.Migration.TestComponents.Tests.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;net8.0 + net6.0;net8.0 enable enable diff --git a/tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj b/tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj index 35b09c0..b56b7df 100644 --- a/tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj +++ b/tests/Tableau.Migration.TestComponents/Tableau.Migration.TestComponents.csproj @@ -1,7 +1,7 @@ - net6.0;net7.0;net8.0 + net6.0;net8.0 enable enable diff --git a/tests/Tableau.Migration.Tests/Tableau.Migration.Tests.csproj b/tests/Tableau.Migration.Tests/Tableau.Migration.Tests.csproj index 0db2537..09f23bd 100644 --- a/tests/Tableau.Migration.Tests/Tableau.Migration.Tests.csproj +++ b/tests/Tableau.Migration.Tests/Tableau.Migration.Tests.csproj @@ -1,6 +1,6 @@  - net6.0;net7.0;net8.0 + net6.0;net8.0 true CA2007 diff --git a/tests/Tableau.Migration.Tests/Unit/Api/DataSourcesApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/DataSourcesApiClientTests.cs index 3bfd172..39b9af7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/DataSourcesApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/DataSourcesApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -24,7 +25,6 @@ using Tableau.Migration.Api; using Tableau.Migration.Api.Rest.Models.Responses; using Tableau.Migration.Content; -using Tableau.Migration.Content.Files; using Tableau.Migration.Tests.Unit.Api.Permissions; using Xunit; diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IServiceCollectionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/IServiceCollectionExtensionsTests.cs index f4114e9..63d4380 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IServiceCollectionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IServiceCollectionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -104,6 +105,7 @@ public async Task RegistersScopedApiClients() AssertService(scope, ServiceLifetime.Scoped); AssertService(scope, ServiceLifetime.Scoped); + AssertService(scope, ServiceLifetime.Scoped); AssertService(scope, ServiceLifetime.Scoped); AssertService(scope, ServiceLifetime.Scoped); AssertService(scope, ServiceLifetime.Scoped); diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestExceptionTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestExceptionTests.cs index 00eaab4..af71056 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestExceptionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestExceptionTests.cs @@ -1,20 +1,22 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // using System; +using System.Net.Http; using Microsoft.Extensions.Localization; using Moq; using Tableau.Migration.Api.Rest; @@ -41,6 +43,7 @@ public void Initializes() var error = Create(); var exception = new RestException( + HttpMethod.Get, new Uri("http://localhost"), error, mockLocalizer.Object); diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentTypeFilePathResolverTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentTypeFilePathResolverTests.cs index 0a2dba6..3753db9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentTypeFilePathResolverTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentTypeFilePathResolverTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -33,6 +34,8 @@ public class ResolveRelativePath : AutoFixtureTestBase [InlineData(typeof(IDataSource), "data-sources", "orig.tds", "data-source-", "tds")] [InlineData(typeof(IWorkbook), "workbooks", "orig.twbx", "workbook-", "twbx")] [InlineData(typeof(IWorkbook), "workbooks", "orig.twb", "workbook-", "twb")] + [InlineData(typeof(IFlow), "flows", "orig.tflx", "flow-", "tflx")] + [InlineData(typeof(IFlow), "flows", "orig.tfl", "flow-", "tfl")] public void SupportedContentTypesGenerateExpectedPath(Type t, string dir, string originalFileName, string expectedPrefix, string expectedExtension) { From 7d94c68853f9ba66c6c8867182a987bd42e81158 Mon Sep 17 00:00:00 2001 From: Steffen Froehlich Date: Fri, 10 May 2024 16:18:54 -0700 Subject: [PATCH 2/4] Release 3.0.0 missed files added --- src/Python/src/tableau_migration/__init__.py | 2 +- src/Python/src/tableau_migration/migration.py | 2 +- src/Python/src/tableau_migration/migration_engine.py | 2 +- src/Python/src/tableau_migration/migration_engine_hooks.py | 2 +- .../tableau_migration/migration_engine_hooks_filters.py | 2 +- .../tableau_migration/migration_engine_hooks_mappings.py | 2 +- .../migration_engine_hooks_transformers.py | 2 +- .../src/tableau_migration/migration_engine_migrators.py | 2 +- .../src/tableau_migration/migration_engine_options.py | 2 +- src/Python/src/tableau_migration/migration_logger.py | 2 +- src/Python/tests/__init__.py | 2 +- src/Python/tests/conftest.py | 2 +- src/Python/tests/test_classes.py | 2 +- src/Python/tests/test_migration.py | 2 +- src/Python/tests/test_migration_engine.py | 2 +- src/Python/tests/test_migrations_engine_hooks.py | 2 +- src/Python/tests/test_migrations_engine_hooks_filters.py | 2 +- .../tests/test_migrations_engine_hooks_filters_lifetime.py | 2 +- src/Python/tests/test_migrations_engine_hooks_lifetime.py | 2 +- src/Python/tests/test_migrations_engine_hooks_mappings.py | 2 +- .../test_migrations_engine_hooks_mappings_lifetime.py | 2 +- .../tests/test_migrations_engine_hooks_transformers.py | 2 +- .../test_migrations_engine_hooks_transformers_lifetime.py | 2 +- src/Python/tests/test_migrations_engine_options.py | 2 +- src/Python/tests/test_other.py | 2 +- src/Tableau.Migration/Api/ApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/ApiClientBase.cs | 7 ++++--- src/Tableau.Migration/Api/ApiClientInput.cs | 7 ++++--- src/Tableau.Migration/Api/ApiListPager.cs | 7 ++++--- src/Tableau.Migration/Api/AuthenticationTokenProvider.cs | 7 ++++--- src/Tableau.Migration/Api/ClientXml/Models/FailedLogin.cs | 7 ++++--- .../Api/ClientXml/Models/SuccessfulLogin.cs | 7 ++++--- .../Api/ClientXml/Models/SuccessfulOrFailedLogin.cs | 7 ++++--- src/Tableau.Migration/Api/ConnectionManager.cs | 7 ++++--- src/Tableau.Migration/Api/ContentApiClientBase.cs | 7 ++++--- src/Tableau.Migration/Api/DataSourcesApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/GroupsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/GroupsResponseExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/IApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IApiClientInput.cs | 7 ++++--- src/Tableau.Migration/Api/IApiClientInputInitializer.cs | 7 ++++--- src/Tableau.Migration/Api/IApiContentUrl.cs | 7 ++++--- src/Tableau.Migration/Api/IApiPageAccessor.cs | 7 ++++--- src/Tableau.Migration/Api/IAuthenticationTokenProvider.cs | 7 ++++--- src/Tableau.Migration/Api/IBatchPublishApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IConnectionManager.cs | 7 ++++--- src/Tableau.Migration/Api/IConnectionsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IContentApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IContentFileStoreExtensions.cs | 7 ++++--- .../Api/IContentReferenceFinderFactoryExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/IDataSourcesApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IGroupsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IHttpRequestBuilderExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/IJobsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IOwnershipApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IPagedListApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IProjectsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IPublishApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IPullApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IReadApiClient.cs | 7 ++++--- .../Api/IRestRequestBuilderFactoryExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/IScopedApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/IServerSessionProvider.cs | 7 ++++--- src/Tableau.Migration/Api/ITableauServerVersionProvider.cs | 7 ++++--- src/Tableau.Migration/Api/IUsersApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IViewsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/IViewsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/IWorkbooksApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/JobsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Labels/ILabelsApiClient.cs | 7 ++++--- .../Api/Labels/ILabelsApiClientFactory.cs | 7 ++++--- .../Api/Labels/ILabelsContentApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Labels/LabelsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Labels/LabelsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/Models/AddUserResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/AddUserToGroupResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/CreateProjectOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/FailedJobException.cs | 7 ++++--- src/Tableau.Migration/Api/Models/FileDownload.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IAddUserResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IAddUserToGroupResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/ICreateProjectOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IImportJob.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IJob.cs | 7 ++++--- src/Tableau.Migration/Api/Models/ILabelUpdateOptions.cs | 7 ++++--- .../Api/Models/IPublishDataSourceOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IPublishFileOptions.cs | 7 ++++--- .../Api/Models/IPublishWorkbookOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IServerInfo.cs | 7 ++++--- src/Tableau.Migration/Api/Models/ISignInResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IStatusNote.cs | 7 ++++--- .../Api/Models/IUpdateConnectionOptions.cs | 7 ++++--- .../Api/Models/IUpdateDataSourceResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IUpdateProjectResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IUpdateUserResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IUpdateWorkbookResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/IUserExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/ImportJob.cs | 7 ++++--- src/Tableau.Migration/Api/Models/Job.cs | 7 ++++--- src/Tableau.Migration/Api/Models/LabelUpdateOptions.cs | 7 ++++--- .../Api/Models/PublishDataSourceOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/PublishWorkbookOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/ServerInfo.cs | 7 ++++--- src/Tableau.Migration/Api/Models/SignInResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/StatusNote.cs | 7 ++++--- src/Tableau.Migration/Api/Models/TimeoutJobException.cs | 7 ++++--- .../Api/Models/UpdateConnectionOptions.cs | 7 ++++--- src/Tableau.Migration/Api/Models/UpdateDataSourceResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/UpdateProjectResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/UpdateUserResult.cs | 7 ++++--- src/Tableau.Migration/Api/Models/UpdateWorkbookResult.cs | 7 ++++--- .../Api/Permissions/DefaultPermissionsApiClient.cs | 7 ++++--- .../Api/Permissions/IDefaultPermissionsApiClient.cs | 7 ++++--- .../Api/Permissions/IPermissionsApiClient.cs | 7 ++++--- .../Api/Permissions/IPermissionsApiClientFactory.cs | 7 ++++--- .../Api/Permissions/IPermissionsContentApiClient.cs | 7 ++++--- .../Api/Permissions/PermissionsApiClient.cs | 7 ++++--- .../Api/Permissions/PermissionsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/ProjectsApiClient.cs | 7 ++++--- .../Api/Publishing/DataSourcePublisher.cs | 7 ++++--- src/Tableau.Migration/Api/Publishing/FilePublisherBase.cs | 7 ++++--- .../Api/Publishing/IDataSourcePublisher.cs | 7 ++++--- src/Tableau.Migration/Api/Publishing/IFilePublisher.cs | 7 ++++--- src/Tableau.Migration/Api/Publishing/IWorkbookPublisher.cs | 7 ++++--- src/Tableau.Migration/Api/Publishing/WorkbookPublisher.cs | 7 ++++--- .../Api/RefreshAuthenticationTokenDelegate.cs | 7 ++++--- .../Api/Rest/ContentItemUriBuilderBase.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/INamedContent.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/IPermissionsUriBuilder.cs | 7 ++++--- .../Api/Rest/IProjectsResponseApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/IRestIdentifiable.cs | 7 ++++--- .../Api/Rest/Models/AdministratorLevels.cs | 7 ++++--- .../Api/Rest/Models/ContentPermissions.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/Error.cs | 7 ++++--- .../Api/Rest/Models/ExtractEncryptionModes.cs | 7 ++++--- .../Api/Rest/Models/GroupUsersResponsePager.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IConnectionType.cs | 7 ++++--- .../Api/Rest/Models/IDataSourceDetailsType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IDataSourceType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/ILocationType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IOwnerType.cs | 7 ++++--- .../Api/Rest/Models/IProjectReferenceType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IProjectType.cs | 7 ++++--- .../Api/Rest/Models/IProjectTypeExtensions.cs | 7 ++++--- .../Api/Rest/Models/ITableauServerListResponse.cs | 7 ++++--- .../Api/Rest/Models/ITableauServerResponse.cs | 7 ++++--- .../Api/Rest/Models/ITableauServerWithParentResponse.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/ITagType.cs | 7 ++++--- .../Api/Rest/Models/IViewReferenceType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IViewType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IWithOwnerType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IWithProjectType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IWithTagTypes.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IWithWorkbookType.cs | 7 ++++--- .../Api/Rest/Models/IWorkbookDetailsType.cs | 7 ++++--- .../Api/Rest/Models/IWorkbookReferenceType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/IWorkbookType.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/LabelCategories.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/LabelContentTypes.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/LicenseLevels.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/Pagination.cs | 7 ++++--- .../Api/Rest/Models/ParentContentTypeNames.cs | 7 ++++--- .../Api/Rest/Models/PermissionsCapabilityModes.cs | 7 ++++--- .../Api/Rest/Models/PermissionsCapabilityNames.cs | 7 ++++--- .../Api/Rest/Models/Requests/AddTagsRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/AddUserToGroupRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/AddUserToSiteRequest.cs | 7 ++++--- .../Rest/Models/Requests/CommitDataSourcePublishRequest.cs | 7 ++++--- .../Rest/Models/Requests/CommitWorkbookPublishRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/CreateLocalGroupRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/CreateProjectRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/GetLabelsRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/ImportGroupRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/ImportUsersFromCsvRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/PermissionsAddRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/SignInRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/TableauServerRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateConnectionRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateDataSourceRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateLabelsRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateProjectRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateSiteRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateUserRequest.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateWorkbookRequest.cs | 7 ++++--- .../Api/Rest/Models/Responses/AddTagsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/AddUserResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ConnectionResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ConnectionsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/CreateGroupResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/CreateProjectResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/CustomViewsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/DataSourceResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/DataSourcesResponse.cs | 7 ++++--- .../Rest/Models/Responses/EmptyTableauServerResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/FileUploadResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/GroupResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/GroupsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ImportJobResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/JobResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/LabelsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/MetricsResponse.cs | 7 ++++--- .../Rest/Models/Responses/PagedTableauServerResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/PermissionsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ProjectsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ServerInfoResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ServerSessionResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/SignInResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/SiteResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/SitesResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/TableauServerListResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/TableauServerResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UpdateDataSourceResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UpdateProjectResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UpdateUserResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UpdateWorkbookResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UserResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/UsersResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/ViewResponse.cs | 7 ++++--- .../Rest/Models/Responses/VirtualConnectionsResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/WorkbookResponse.cs | 7 ++++--- .../Api/Rest/Models/Responses/WorkbooksResponse.cs | 7 ++++--- .../Api/Rest/Models/RestProjectBuilder.cs | 7 ++++--- .../Api/Rest/Models/RestProjectBuilderPager.cs | 7 ++++--- .../Api/Rest/Models/RestProjectResponsePager.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/SiteRoleMapping.cs | 7 ++++--- .../Api/Rest/Models/SiteRoleMappingItem.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/Models/SiteRoles.cs | 7 ++++--- .../Api/Rest/Models/Types/AuthenticationTypes.cs | 7 ++++--- .../Api/Rest/Models/Types/CapabilityType.cs | 7 ++++--- .../Api/Rest/Models/Types/DataSourceFileTypes.cs | 7 ++++--- .../Api/Rest/Models/Types/GranteeCapabilityType.cs | 7 ++++--- .../Api/Rest/Models/Types/ParentContentType.cs | 7 ++++--- .../Api/Rest/Models/Types/PermissionsContentItemType.cs | 7 ++++--- .../Api/Rest/Models/Types/PermissionsType.cs | 7 ++++--- .../Api/Rest/Models/Types/WorkbookFileTypes.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/PermissionsUriBuilder.cs | 7 ++++--- src/Tableau.Migration/Api/Rest/TagsUriBuilder.cs | 7 ++++--- src/Tableau.Migration/Api/ScopedApiClientFactory.cs | 7 ++++--- .../Api/Search/ApiContentReferenceFinderFactory.cs | 7 ++++--- .../Api/Search/BulkApiContentReferenceCache.cs | 7 ++++--- src/Tableau.Migration/Api/ServerSessionProvider.cs | 7 ++++--- .../Api/Simulation/ITableauApiSimulatorCollection.cs | 7 ++++--- .../Api/Simulation/ITableauApiSimulatorFactory.cs | 7 ++++--- .../Api/Simulation/Rest/Api/AuthRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/DataSourcesRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/FileUploadsRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/GroupsRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/JobsRestApiSimulator.cs | 7 ++++--- .../Simulation/Rest/Api/PermissionsRestApiSimulatorBase.cs | 7 ++++--- .../Api/Simulation/Rest/Api/ProjectsRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/SitesRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/TagsRestApiSimulatorBase.cs | 7 ++++--- .../Api/Simulation/Rest/Api/UsersRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/ViewsRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/Api/WorkbooksRestApiSimulator.cs | 7 ++++--- .../Api/Simulation/Rest/MethodSimulatorExtensions.cs | 7 ++++--- .../Api/Simulation/Rest/Net/HttpStatusCodeExtensions.cs | 7 ++++--- .../Api/Simulation/Rest/Net/Requests/FilterExtensions.cs | 7 ++++--- .../Rest/Net/Requests/HttpRequestMessageExtensions.cs | 7 ++++--- .../Simulation/Rest/Net/Requests/RestApiRequestMatcher.cs | 7 ++++--- .../Api/Simulation/Rest/Net/Requests/RestUrlPatterns.cs | 7 ++++--- .../Api/Simulation/Rest/Net/Requests/UriExtensions.cs | 7 ++++--- .../Api/Simulation/Rest/Net/ResponseSimulatorExtensions.cs | 7 ++++--- .../Rest/Net/Responses/BuildResponseException.cs | 7 ++++--- .../Rest/Net/Responses/EmptyRestResponseBuilder.cs | 7 ++++--- .../Simulation/Rest/Net/Responses/IEntityResponsePager.cs | 7 ++++--- .../Rest/Net/Responses/IRestApiResponseBuilder.cs | 7 ++++--- .../Net/Responses/IRestApiResponseBuilderExtensions.cs | 7 ++++--- .../Api/Simulation/Rest/Net/Responses/IRestErrorBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestApiResponseBuilderBase.cs | 7 ++++--- .../Responses/RestCommitDataSourceUploadResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestCommitUploadResponseBuilder.cs | 7 ++++--- .../Responses/RestCommitWorkbookUploadResponseBuilder.cs | 7 ++++--- .../RestDefaultPermissionsCreateResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestDeleteByIdResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestDeleteResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestDownloadFileByIdResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestEntityIdResponseBuilderBase.cs | 7 ++++--- .../Net/Responses/RestEntityListResponseBuilderBase.cs | 7 ++++--- .../Rest/Net/Responses/RestEntityResponsePager.cs | 7 ++++--- .../Net/Responses/RestGetByContentUrlResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestGetByIdResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestGroupAddResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestInitiateFileUploadResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestListResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestPagedListResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestPermissionsCreateResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestPermissionsGetResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestPostEntityResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestProjectCreateResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestPutByIdResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestSearchEntityResponseBuilderBase.cs | 7 ++++--- .../Rest/Net/Responses/RestSingleEntityResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestUpdateConnectionResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestUpdateFileUploadResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestUserAddResponseBuilder.cs | 7 ++++--- .../Net/Responses/RestUserAddToGroupResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestUserImportResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/RestUserUpdateResponseBuilder.cs | 7 ++++--- .../Rest/Net/Responses/StaticRestErrorBuilder.cs | 7 ++++--- .../Rest/Net/Responses/UnauthorizedRestErrorBuilder.cs | 7 ++++--- .../Api/Simulation/Rest/RestApiSimulator.cs | 7 ++++--- .../Api/Simulation/SimulatedConnection.cs | 7 ++++--- .../Api/Simulation/SimulatedConnectionCredentials.cs | 7 ++++--- .../Api/Simulation/SimulatedDataSourceData.cs | 7 ++++--- .../Api/Simulation/SimulatedDataWithConnections.cs | 7 ++++--- .../Api/Simulation/SimulatedWorkbookData.cs | 7 ++++--- .../Api/Simulation/TableauApiResponseSimulator.cs | 7 ++++--- .../Api/Simulation/TableauApiResponseSimulatorProvider.cs | 7 ++++--- .../Api/Simulation/TableauApiSimulator.cs | 7 ++++--- .../Api/Simulation/TableauApiSimulatorCollection.cs | 7 ++++--- .../Api/Simulation/TableauApiSimulatorFactory.cs | 7 ++++--- src/Tableau.Migration/Api/Simulation/TableauData.cs | 7 ++++--- src/Tableau.Migration/Api/TableauServerVersion.cs | 7 ++++--- src/Tableau.Migration/Api/TableauServerVersionProvider.cs | 7 ++++--- .../Api/TableauSiteConnectionConfiguration.cs | 7 ++++--- src/Tableau.Migration/Api/Tags/ITagsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Tags/ITagsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/Tags/ITagsContentApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Tags/TagsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/Tags/TagsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/UsersApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/UsersResponseExtensions.cs | 7 ++++--- src/Tableau.Migration/Api/ViewsApiClient.cs | 7 ++++--- src/Tableau.Migration/Api/ViewsApiClientFactory.cs | 7 ++++--- src/Tableau.Migration/Api/WorkbooksApiClient.cs | 7 ++++--- src/Tableau.Migration/AsyncDisposableResult.cs | 7 ++++--- src/Tableau.Migration/ComparerBase.cs | 7 ++++--- src/Tableau.Migration/ConcurrentDictionaryExtensions.cs | 7 ++++--- src/Tableau.Migration/Config/ConfigReader.cs | 7 ++++--- src/Tableau.Migration/Config/ContentTypesOptions.cs | 7 ++++--- .../Config/DefaultPermissionsContentTypeOptions.cs | 7 ++++--- src/Tableau.Migration/Config/FileOptions.cs | 7 ++++--- src/Tableau.Migration/Config/IConfigReader.cs | 7 ++++--- src/Tableau.Migration/Config/JobOptions.cs | 7 ++++--- src/Tableau.Migration/Config/MigrationSDKOptions.cs | 7 ++++--- src/Tableau.Migration/Config/NetworkOptions.cs | 7 ++++--- src/Tableau.Migration/Config/PreflightOptions.cs | 7 ++++--- src/Tableau.Migration/Config/ResilienceOptions.cs | 7 ++++--- src/Tableau.Migration/Constants.cs | 7 ++++--- src/Tableau.Migration/Content/ConcurrentSet.cs | 7 ++++--- src/Tableau.Migration/Content/Connection.cs | 7 ++++--- src/Tableau.Migration/Content/ContainerContentBase.cs | 7 ++++--- src/Tableau.Migration/Content/ContentBase.cs | 7 ++++--- src/Tableau.Migration/Content/ContentLocationComparer.cs | 7 ++++--- src/Tableau.Migration/Content/ContentReferenceStub.cs | 7 ++++--- src/Tableau.Migration/Content/DataSource.cs | 7 ++++--- src/Tableau.Migration/Content/DataSourceDetails.cs | 7 ++++--- .../Content/Files/Aes256EncryptionFactory.cs | 7 ++++--- src/Tableau.Migration/Content/Files/ContentFileHandle.cs | 7 ++++--- src/Tableau.Migration/Content/Files/ContentFileStream.cs | 7 ++++--- .../Content/Files/DirectoryContentFileStore.cs | 7 ++++--- src/Tableau.Migration/Content/Files/EncryptedFileHandle.cs | 7 ++++--- src/Tableau.Migration/Content/Files/EncryptedFileStore.cs | 7 ++++--- src/Tableau.Migration/Content/Files/EncryptedFileStream.cs | 7 ++++--- src/Tableau.Migration/Content/Files/IContentFileHandle.cs | 7 ++++--- .../Content/Files/IContentFileHandleExtensions.cs | 7 ++++--- .../Content/Files/IContentFilePathResolver.cs | 7 ++++--- src/Tableau.Migration/Content/Files/IContentFileStore.cs | 7 ++++--- src/Tableau.Migration/Content/Files/IContentFileStream.cs | 7 ++++--- .../Content/Files/ISymmetricEncryptionFactory.cs | 7 ++++--- src/Tableau.Migration/Content/Files/ITableauFileEditor.cs | 7 ++++--- .../Content/Files/ITableauFileXmlStream.cs | 7 ++++--- .../Content/Files/SeekableCryptoStream.cs | 7 ++++--- src/Tableau.Migration/Content/Files/StreamExtensions.cs | 7 ++++--- src/Tableau.Migration/Content/Files/TableauFileEditor.cs | 7 ++++--- .../Content/Files/TableauFileXmlStream.cs | 7 ++++--- .../Content/Files/TemporaryDirectoryContentFileStore.cs | 7 ++++--- .../Content/Files/Xml/XContainerExtensions.cs | 7 ++++--- .../Content/Files/Xml/XElementExtensions.cs | 7 ++++--- .../Content/Files/Xml/XFeatureFlagName.cs | 7 ++++--- src/Tableau.Migration/Content/Files/Xml/XNameExtensions.cs | 7 ++++--- src/Tableau.Migration/Content/Group.cs | 7 ++++--- src/Tableau.Migration/Content/GroupUser.cs | 7 ++++--- src/Tableau.Migration/Content/IChildPermissionsContent.cs | 7 ++++--- src/Tableau.Migration/Content/IConnection.cs | 7 ++++--- src/Tableau.Migration/Content/IConnectionsContent.cs | 7 ++++--- src/Tableau.Migration/Content/IContainerContent.cs | 7 ++++--- src/Tableau.Migration/Content/IDataSource.cs | 7 ++++--- src/Tableau.Migration/Content/IDataSourceDetails.cs | 7 ++++--- src/Tableau.Migration/Content/IDescriptionContent.cs | 7 ++++--- src/Tableau.Migration/Content/IExtractContent.cs | 7 ++++--- src/Tableau.Migration/Content/IFileContent.cs | 7 ++++--- src/Tableau.Migration/Content/IGroup.cs | 7 ++++--- src/Tableau.Migration/Content/IGroupUser.cs | 7 ++++--- src/Tableau.Migration/Content/ILabel.cs | 7 ++++--- src/Tableau.Migration/Content/IMappableContainerContent.cs | 7 ++++--- src/Tableau.Migration/Content/IMappableContent.cs | 7 ++++--- src/Tableau.Migration/Content/IPermissionsContent.cs | 7 ++++--- src/Tableau.Migration/Content/IProject.cs | 7 ++++--- src/Tableau.Migration/Content/IPublishableDataSource.cs | 7 ++++--- src/Tableau.Migration/Content/IPublishableGroup.cs | 7 ++++--- src/Tableau.Migration/Content/IPublishableWorkbook.cs | 7 ++++--- src/Tableau.Migration/Content/IPublishedContent.cs | 7 ++++--- src/Tableau.Migration/Content/IRequiresLabelUpdate.cs | 7 ++++--- src/Tableau.Migration/Content/IRequiresOwnerUpdate.cs | 7 ++++--- src/Tableau.Migration/Content/IServerSession.cs | 7 ++++--- src/Tableau.Migration/Content/ISite.cs | 7 ++++--- src/Tableau.Migration/Content/ISiteSettings.cs | 7 ++++--- src/Tableau.Migration/Content/ISiteSettingsUpdate.cs | 7 ++++--- src/Tableau.Migration/Content/ITag.cs | 7 ++++--- src/Tableau.Migration/Content/ITagExtensions.cs | 7 ++++--- src/Tableau.Migration/Content/IUser.cs | 7 ++++--- src/Tableau.Migration/Content/IUsernameContent.cs | 7 ++++--- src/Tableau.Migration/Content/IView.cs | 7 ++++--- src/Tableau.Migration/Content/IWithConnections.cs | 7 ++++--- src/Tableau.Migration/Content/IWithDomain.cs | 7 ++++--- src/Tableau.Migration/Content/IWithLabels.cs | 7 ++++--- src/Tableau.Migration/Content/IWithOwner.cs | 7 ++++--- src/Tableau.Migration/Content/IWithTags.cs | 7 ++++--- src/Tableau.Migration/Content/IWorkbook.cs | 7 ++++--- src/Tableau.Migration/Content/IWorkbookDetails.cs | 7 ++++--- src/Tableau.Migration/Content/Label.cs | 7 ++++--- .../Content/MappableContainerContentBase.cs | 7 ++++--- src/Tableau.Migration/Content/Permissions/Capability.cs | 7 ++++--- .../DefaultPermissionsContentTypeUrlSegments.cs | 7 ++++--- .../Content/Permissions/GranteeCapability.cs | 7 ++++--- src/Tableau.Migration/Content/Permissions/GranteeType.cs | 7 ++++--- .../Content/Permissions/GranteeTypeExtensions.cs | 7 ++++--- src/Tableau.Migration/Content/Permissions/ICapability.cs | 7 ++++--- .../Content/Permissions/ICapabilityComparer.cs | 7 ++++--- .../Content/Permissions/IGranteeCapability.cs | 7 ++++--- .../Content/Permissions/IGranteeCapabilityExtensions.cs | 7 ++++--- src/Tableau.Migration/Content/Permissions/IPermissions.cs | 7 ++++--- src/Tableau.Migration/Content/Permissions/Permissions.cs | 7 ++++--- src/Tableau.Migration/Content/Project.cs | 7 ++++--- src/Tableau.Migration/Content/PublishableDataSource.cs | 7 ++++--- src/Tableau.Migration/Content/PublishableGroup.cs | 7 ++++--- src/Tableau.Migration/Content/PublishableWorkbook.cs | 7 ++++--- .../Content/Search/CachedContentReferenceFinder.cs | 7 ++++--- .../Content/Search/ContentReferenceCacheBase.cs | 7 ++++--- .../Content/Search/IContentReferenceCache.cs | 7 ++++--- .../Content/Search/IContentReferenceFinder.cs | 7 ++++--- .../Content/Search/IContentReferenceFinderFactory.cs | 7 ++++--- src/Tableau.Migration/Content/ServerSession.cs | 7 ++++--- src/Tableau.Migration/Content/ServerSessionSettings.cs | 7 ++++--- src/Tableau.Migration/Content/Site.cs | 7 ++++--- src/Tableau.Migration/Content/SiteSettingsUpdate.cs | 7 ++++--- src/Tableau.Migration/Content/Tag.cs | 7 ++++--- src/Tableau.Migration/Content/TagLabelComparer.cs | 7 ++++--- src/Tableau.Migration/Content/User.cs | 7 ++++--- src/Tableau.Migration/Content/UsernameContentBase.cs | 7 ++++--- src/Tableau.Migration/Content/View.cs | 7 ++++--- src/Tableau.Migration/Content/Workbook.cs | 7 ++++--- src/Tableau.Migration/Content/WorkbookDetails.cs | 7 ++++--- src/Tableau.Migration/ContentLocation.cs | 7 ++++--- src/Tableau.Migration/CsvExtensions.cs | 7 ++++--- src/Tableau.Migration/DateTimeExtensions.cs | 7 ++++--- .../Engine/Actions/IMigrateContentAction.cs | 7 ++++--- src/Tableau.Migration/Engine/Actions/IMigrationAction.cs | 7 ++++--- .../Engine/Actions/IMigrationActionResult.cs | 7 ++++--- .../Engine/Actions/MigrateContentAction.cs | 7 ++++--- .../Engine/Actions/MigrationActionResult.cs | 7 ++++--- src/Tableau.Migration/Engine/Actions/PreflightAction.cs | 7 ++++--- src/Tableau.Migration/Engine/ContentMigrationItem.cs | 7 ++++--- .../Engine/Endpoints/IDestinationApiEndpoint.cs | 7 ++++--- .../Engine/Endpoints/IDestinationEndpoint.cs | 7 ++++--- .../Engine/Endpoints/IMigrationApiEndpoint.cs | 7 ++++--- .../Engine/Endpoints/IMigrationEndpoint.cs | 7 ++++--- .../Engine/Endpoints/IMigrationEndpointFactory.cs | 7 ++++--- .../Endpoints/IMigrationPlanEndpointConfiguration.cs | 7 ++++--- .../Engine/Endpoints/ISourceApiEndpoint.cs | 7 ++++--- src/Tableau.Migration/Engine/Endpoints/ISourceEndpoint.cs | 7 ++++--- .../Engine/Endpoints/ITableauApiEndpointConfiguration.cs | 7 ++++--- .../Engine/Endpoints/MigrationEndpointFactory.cs | 7 ++++--- .../Engine/Endpoints/Search/BulkDestinationCache.cs | 7 ++++--- .../Engine/Endpoints/Search/BulkDestinationProjectCache.cs | 7 ++++--- .../Engine/Endpoints/Search/BulkSourceCache.cs | 7 ++++--- .../Engine/Endpoints/Search/ILockedProjectCache.cs | 7 ++++--- .../Endpoints/Search/IMappedContentReferenceFinder.cs | 7 ++++--- .../Search/ManifestDestinationContentReferenceFinder.cs | 7 ++++--- .../ManifestDestinationContentReferenceFinderFactory.cs | 7 ++++--- .../Search/ManifestSourceContentReferenceFinder.cs | 7 ++++--- .../Search/ManifestSourceContentReferenceFinderFactory.cs | 7 ++++--- .../Engine/Endpoints/TableauApiDestinationEndpoint.cs | 7 ++++--- .../Engine/Endpoints/TableauApiEndpointBase.cs | 7 ++++--- .../Engine/Endpoints/TableauApiEndpointConfiguration.cs | 7 ++++--- .../Engine/Endpoints/TableauApiSourceEndpoint.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/CallbackHookWrapper.cs | 7 ++++--- .../Engine/Hooks/ContentTypeHookBuilderBase.cs | 7 ++++--- .../Engine/Hooks/Filters/ContentFilterBase.cs | 7 ++++--- .../Engine/Hooks/Filters/ContentFilterBuilder.cs | 7 ++++--- .../Engine/Hooks/Filters/ContentFilterRunner.cs | 7 ++++--- .../Engine/Hooks/Filters/ContentLocationInPathFilter.cs | 7 ++++--- .../Engine/Hooks/Filters/Default/GroupAllUsersFilter.cs | 7 ++++--- .../Hooks/Filters/Default/GroupAllUsersFilterOptions.cs | 7 ++++--- .../Hooks/Filters/Default/PreviouslyMigratedFilter.cs | 7 ++++--- .../Filters/Default/PreviouslyMigratedFilterOptions.cs | 7 ++++--- .../Engine/Hooks/Filters/Default/SystemOwnershipFilter.cs | 7 ++++--- .../Hooks/Filters/Default/UserSiteRoleSupportUserFilter.cs | 7 ++++--- .../Engine/Hooks/Filters/IContentFilter.cs | 7 ++++--- .../Engine/Hooks/Filters/IContentFilterBuilder.cs | 7 ++++--- .../Engine/Hooks/Filters/IContentFilterRunner.cs | 7 ++++--- .../Engine/Hooks/IContentBatchMigrationCompletedHook.cs | 7 ++++--- .../Engine/Hooks/IContentTypeHookBuilder.cs | 7 ++++--- .../Engine/Hooks/IMigrationActionCompletedHook.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/IMigrationHook.cs | 7 ++++--- .../Engine/Hooks/IMigrationHookBuilder.cs | 7 ++++--- .../Engine/Hooks/IMigrationHookFactory.cs | 7 ++++--- .../Engine/Hooks/IMigrationHookFactoryCollection.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/IMigrationHookRunner.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingBase.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingBuilder.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingContext.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingRunner.cs | 7 ++++--- .../Mappings/Default/AuthenticationTypeDomainMapping.cs | 7 ++++--- .../Default/AuthenticationTypeDomainMappingBase.cs | 7 ++++--- .../Default/AuthenticationTypeDomainMappingOptions.cs | 7 ++++--- .../Default/CallbackAuthenticationTypeDomainMapping.cs | 7 ++++--- .../Mappings/Default/IAuthenticationTypeDomainMapping.cs | 7 ++++--- .../Hooks/Mappings/Default/ITableauCloudUsernameMapping.cs | 7 ++++--- .../Hooks/Mappings/Default/TableauCloudUsernameMapping.cs | 7 ++++--- .../Mappings/Default/TableauCloudUsernameMappingOptions.cs | 7 ++++--- .../Engine/Hooks/Mappings/IContentMapping.cs | 7 ++++--- .../Engine/Hooks/Mappings/IContentMappingBuilder.cs | 7 ++++--- .../Engine/Hooks/Mappings/IContentMappingRunner.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/MigrationHookBuilder.cs | 7 ++++--- .../Engine/Hooks/MigrationHookBuilderBase.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/MigrationHookFactory.cs | 7 ++++--- .../Engine/Hooks/MigrationHookFactoryCollection.cs | 7 ++++--- src/Tableau.Migration/Engine/Hooks/MigrationHookRunner.cs | 7 ++++--- .../Engine/Hooks/MigrationHookRunnerBase.cs | 7 ++++--- .../Engine/Hooks/PostPublish/BulkPostPublishContext.cs | 7 ++++--- .../Engine/Hooks/PostPublish/BulkPostPublishHookBase.cs | 7 ++++--- .../Hooks/PostPublish/ContentItemPostPublishContext.cs | 7 ++++--- .../Hooks/PostPublish/ContentItemPostPublishHookBase.cs | 7 ++++--- .../Default/ChildItemsPermissionsPostPublishHook.cs | 7 ++++--- .../Hooks/PostPublish/Default/OwnerItemPostPublishHook.cs | 7 ++++--- .../PostPublish/Default/PermissionPostPublishHookBase.cs | 7 ++++--- .../PostPublish/Default/PermissionsItemPostPublishHook.cs | 7 ++++--- .../Hooks/PostPublish/Default/ProjectPostPublishHook.cs | 7 ++++--- .../Hooks/PostPublish/Default/TagItemPostPublishHook.cs | 7 ++++--- .../Engine/Hooks/PostPublish/IBulkPostPublishHook.cs | 7 ++++--- .../Hooks/PostPublish/IContentItemPostPublishHook.cs | 7 ++++--- .../Engine/Hooks/Transformers/ContentTransformerBase.cs | 7 ++++--- .../Engine/Hooks/Transformers/ContentTransformerBuilder.cs | 7 ++++--- .../Engine/Hooks/Transformers/ContentTransformerRunner.cs | 7 ++++--- .../Hooks/Transformers/Default/GroupUsersTransformer.cs | 7 ++++--- .../Hooks/Transformers/Default/IMappedUserTransformer.cs | 7 ++++--- .../Hooks/Transformers/Default/IPermissionsTransformer.cs | 7 ++++--- .../Transformers/Default/IUserReferenceTransformer.cs | 7 ++++--- .../Hooks/Transformers/Default/MappedUserTransformer.cs | 7 ++++--- .../Hooks/Transformers/Default/OwnershipTransformer.cs | 7 ++++--- .../Hooks/Transformers/Default/PermissionsTransformer.cs | 7 ++++--- .../Default/TableauServerConnectionUrlTransformer.cs | 7 ++++--- .../Default/UserAuthenticationTypeTransformer.cs | 7 ++++--- .../Default/UserAuthenticationTypeTransformerOptions.cs | 7 ++++--- .../Default/UserTableauCloudSiteRoleTransformer.cs | 7 ++++--- .../Engine/Hooks/Transformers/IContentTransformer.cs | 7 ++++--- .../Hooks/Transformers/IContentTransformerBuilder.cs | 7 ++++--- .../Engine/Hooks/Transformers/IContentTransformerRunner.cs | 7 ++++--- .../Engine/Hooks/Transformers/IXmlContentTransformer.cs | 7 ++++--- .../Engine/Hooks/Transformers/XmlContentTransformerBase.cs | 7 ++++--- src/Tableau.Migration/Engine/IMigration.cs | 7 ++++--- src/Tableau.Migration/Engine/IMigrationExtensions.cs | 7 ++++--- src/Tableau.Migration/Engine/IMigrationInput.cs | 7 ++++--- src/Tableau.Migration/Engine/IMigrationInputInitializer.cs | 7 ++++--- .../Engine/IServiceCollectionExtensions.cs | 7 ++++--- .../Manifest/IMigrationManifestContentTypePartition.cs | 7 ++++--- .../IMigrationManifestContentTypePartitionEditor.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestEditor.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestEntry.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestEntryBuilder.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestEntryCollection.cs | 7 ++++--- .../Manifest/IMigrationManifestEntryCollectionEditor.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestEntryEditor.cs | 7 ++++--- .../Engine/Manifest/IMigrationManifestFactory.cs | 7 ++++--- src/Tableau.Migration/Engine/Manifest/MigrationManifest.cs | 7 ++++--- .../Manifest/MigrationManifestContentTypePartition.cs | 7 ++++--- .../Engine/Manifest/MigrationManifestEntry.cs | 7 ++++--- .../Engine/Manifest/MigrationManifestEntryCollection.cs | 7 ++++--- .../Engine/Manifest/MigrationManifestEntryStatus.cs | 7 ++++--- .../Engine/Manifest/MigrationManifestFactory.cs | 7 ++++--- src/Tableau.Migration/Engine/Migration.cs | 7 ++++--- .../Engine/MigrationDirectoryContentFileStore.cs | 7 ++++--- src/Tableau.Migration/Engine/MigrationInput.cs | 7 ++++--- src/Tableau.Migration/Engine/MigrationPlan.cs | 7 ++++--- src/Tableau.Migration/Engine/MigrationPlanBuilder.cs | 7 ++++--- .../Migrators/Batch/BulkPublishContentBatchMigrator.cs | 7 ++++--- .../Engine/Migrators/Batch/ContentBatchMigrationResult.cs | 7 ++++--- .../Engine/Migrators/Batch/ContentBatchMigratorBase.cs | 7 ++++--- .../Engine/Migrators/Batch/ContentMigrationBatch.cs | 7 ++++--- .../Engine/Migrators/Batch/IContentBatchMigrationResult.cs | 7 ++++--- .../Engine/Migrators/Batch/IContentBatchMigrator.cs | 7 ++++--- .../Migrators/Batch/ItemPublishContentBatchMigrator.cs | 7 ++++--- .../Migrators/Batch/ParallelContentBatchMigratorBase.cs | 7 ++++--- .../Engine/Migrators/ContentItemMigrationResult.cs | 7 ++++--- src/Tableau.Migration/Engine/Migrators/ContentMigrator.cs | 7 ++++--- .../Engine/Migrators/IContentItemMigrationResult.cs | 7 ++++--- .../Engine/Migrators/IContentMigrationHook.cs | 7 ++++--- src/Tableau.Migration/Engine/Migrators/IContentMigrator.cs | 7 ++++--- src/Tableau.Migration/Engine/Migrators/Migrator.cs | 7 ++++--- .../Engine/Options/IMigrationPlanOptionsBuilder.cs | 7 ++++--- .../Engine/Options/IMigrationPlanOptionsCollection.cs | 7 ++++--- .../Engine/Options/IMigrationPlanOptionsProvider.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsBuilder.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsCollection.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsProvider.cs | 7 ++++--- .../Engine/Pipelines/IMigrationPipeline.cs | 7 ++++--- .../Engine/Pipelines/IMigrationPipelineFactory.cs | 7 ++++--- .../Engine/Pipelines/IMigrationPipelineRunner.cs | 7 ++++--- .../Engine/Pipelines/MigrationPipelineBase.cs | 7 ++++--- .../Engine/Pipelines/MigrationPipelineContentType.cs | 7 ++++--- .../Pipelines/MigrationPipelineContentTypeExtensions.cs | 7 ++++--- .../Engine/Pipelines/MigrationPipelineFactory.cs | 7 ++++--- .../Engine/Pipelines/MigrationPipelineRunner.cs | 7 ++++--- .../Engine/Pipelines/PipelineProfileExtensions.cs | 7 ++++--- .../Engine/Pipelines/ServerToCloudMigrationPipeline.cs | 7 ++++--- .../Engine/Preparation/ContentItemPreparerBase.cs | 7 ++++--- .../Engine/Preparation/EndpointContentItemPreparer.cs | 7 ++++--- .../Engine/Preparation/IContentItemPreparer.cs | 7 ++++--- .../Engine/Preparation/SourceContentItemPreparer.cs | 7 ++++--- .../Engine/ServerToCloudMigrationPlanBuilder.cs | 7 ++++--- src/Tableau.Migration/ExceptionExtensions.cs | 7 ++++--- src/Tableau.Migration/FilePath.cs | 7 ++++--- src/Tableau.Migration/Guard.cs | 7 ++++--- src/Tableau.Migration/IAsyncDisposableResult.cs | 7 ++++--- src/Tableau.Migration/IContentReference.cs | 7 ++++--- src/Tableau.Migration/IContentReferenceExtensions.cs | 7 ++++--- src/Tableau.Migration/IEnumerableExtensions.cs | 7 ++++--- src/Tableau.Migration/IMemoryStreamManager.cs | 7 ++++--- src/Tableau.Migration/IMigrationManifest.cs | 7 ++++--- src/Tableau.Migration/IMigrationPlan.cs | 7 ++++--- src/Tableau.Migration/IMigrationPlanBuilder.cs | 7 ++++--- src/Tableau.Migration/IMigrationSdk.cs | 7 ++++--- src/Tableau.Migration/IMigrator.cs | 7 ++++--- src/Tableau.Migration/IResult.cs | 7 ++++--- .../IServerToCloudMigrationPlanBuilder.cs | 7 ++++--- src/Tableau.Migration/IServiceCollectionExtensions.cs | 7 ++++--- src/Tableau.Migration/ISetExtensions.cs | 7 ++++--- src/Tableau.Migration/ITaskDelayer.cs | 7 ++++--- src/Tableau.Migration/IUserAgentSuffixProvider.cs | 7 ++++--- src/Tableau.Migration/InheritedTypeComparer.cs | 7 ++++--- .../Interop/Hooks/Filters/ISyncContentFilter.cs | 7 ++++--- .../Hooks/ISyncContentBatchMigrationCompletedHook.cs | 7 ++++--- .../Interop/Hooks/ISyncMigrationActionCompletedHook.cs | 7 ++++--- src/Tableau.Migration/Interop/Hooks/ISyncMigrationHook.cs | 7 ++++--- .../Interop/Hooks/Mappings/ISyncContentMapping.cs | 7 ++++--- .../Interop/Hooks/PostPublish/ISyncBulkPostPublishHook.cs | 7 ++++--- .../Hooks/PostPublish/ISyncContentItemPostPublishHook.cs | 7 ++++--- .../Interop/Hooks/Transformers/ISyncContentTransformer.cs | 7 ++++--- .../Hooks/Transformers/ISyncXmlContentTransformer.cs | 7 ++++--- .../Interop/IServiceCollectionExtensions.cs | 7 ++++--- src/Tableau.Migration/Interop/InteropHelper.cs | 7 ++++--- src/Tableau.Migration/Interop/Logging/INonGenericLogger.cs | 7 ++++--- .../Interop/Logging/NonGenericLoggerBase.cs | 7 ++++--- .../Interop/Logging/NonGenericLoggerProvider.cs | 7 ++++--- .../Interop/PythonUserAgentSuffixProvider.cs | 7 ++++--- src/Tableau.Migration/MemoryStreamManager.cs | 7 ++++--- src/Tableau.Migration/MigrationCompletionStatus.cs | 7 ++++--- src/Tableau.Migration/MigrationResult.cs | 7 ++++--- src/Tableau.Migration/MigrationSdk.cs | 7 ++++--- src/Tableau.Migration/NameOf.cs | 7 ++++--- src/Tableau.Migration/Net/DefaultHttpClient.cs | 7 ++++--- src/Tableau.Migration/Net/DefaultHttpResponseMessage.cs | 7 ++++--- .../Net/Handlers/AuthenticationHandler.cs | 7 ++++--- src/Tableau.Migration/Net/Handlers/LoggingHandler.cs | 7 ++++--- .../Net/Handlers/UserAgentHttpMessageHandler.cs | 7 ++++--- src/Tableau.Migration/Net/HttpContentExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/HttpContentRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpContentSerializer.cs | 7 ++++--- src/Tableau.Migration/Net/HttpDeleteRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpGetRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpPatchRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpPostRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpPutRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/HttpRequestBuilderFactory.cs | 7 ++++--- src/Tableau.Migration/Net/HttpStreamProcessor.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpClient.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpContentRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpContentSerializer.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpDeleteRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpGetRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpPatchRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpPostRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpPutRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpRequestBuilderFactory.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpResponseMessage.cs | 7 ++++--- src/Tableau.Migration/Net/IHttpStreamProcessor.cs | 7 ++++--- src/Tableau.Migration/Net/INetworkTraceLogger.cs | 7 ++++--- src/Tableau.Migration/Net/INetworkTraceRedactor.cs | 7 ++++--- src/Tableau.Migration/Net/IQueryStringBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IRequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/IRequestBuilderFactory.cs | 7 ++++--- src/Tableau.Migration/Net/IRequestBuilderFactoryInput.cs | 7 ++++--- .../Net/IRequestBuilderFactoryInputInitializer.cs | 7 ++++--- src/Tableau.Migration/Net/IServiceCollectionExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/ITableauSerializer.cs | 7 ++++--- src/Tableau.Migration/Net/JsonOptions.cs | 7 ++++--- .../Net/MediaTypeHeaderValueExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/MediaTypes.cs | 7 ++++--- src/Tableau.Migration/Net/NetworkTraceLogger.cs | 7 ++++--- src/Tableau.Migration/Net/NetworkTraceRedactor.cs | 7 ++++--- src/Tableau.Migration/Net/ObjectExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/QueryStringBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/RequestBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/RequestBuilderBase.cs | 7 ++++--- src/Tableau.Migration/Net/RequestBuilderFactory.cs | 7 ++++--- src/Tableau.Migration/Net/RequestBuilderFactoryInput.cs | 7 ++++--- .../Net/Resilience/ClientThrottleStrategyBuilder.cs | 7 ++++--- .../Net/Resilience/IResilienceStrategyBuilder.cs | 7 ++++--- .../Net/Resilience/MaxConcurrencyStrategyBuilder.cs | 7 ++++--- .../Net/Resilience/RequestTimeoutStrategyBuilder.cs | 7 ++++--- .../Net/Resilience/ResilienceContextExtensions.cs | 7 ++++--- .../Net/Resilience/RetryStrategyBuilder.cs | 7 ++++--- .../Net/Resilience/ServerThrottleStrategyBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Fields/Field.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Fields/FieldBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Fields/IFieldBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Filtering/Filter.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Filtering/FilterBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Filtering/FilterOperator.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Filtering/IFilterBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/GuidExtensions.cs | 7 ++++--- .../Net/Rest/HttpRequestMessageExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/IRestRequestBuilder.cs | 7 ++++--- .../Net/Rest/IRestRequestBuilderFactory.cs | 7 ++++--- .../Net/Rest/ListSortDirectionExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Paging/IPageBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Paging/Page.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Paging/PageBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/RestHeaders.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/RestQueryBuilderBase.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/RestRequestBuilder.cs | 7 ++++--- .../Net/Rest/RestRequestBuilderFactory.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Sorting/ISortBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Sorting/Sort.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/Sorting/SortBuilder.cs | 7 ++++--- src/Tableau.Migration/Net/Rest/UriExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/Simulation/BaseUrlComparer.cs | 7 ++++--- src/Tableau.Migration/Net/Simulation/IResponseSimulator.cs | 7 ++++--- .../Net/Simulation/IResponseSimulatorProvider.cs | 7 ++++--- src/Tableau.Migration/Net/Simulation/MethodSimulator.cs | 7 ++++--- .../Net/Simulation/NullResponseSimulatorProvider.cs | 7 ++++--- .../Net/Simulation/Requests/IPathRequestMatcher.cs | 7 ++++--- .../Net/Simulation/Requests/IRequestMatcher.cs | 7 ++++--- .../Net/Simulation/Requests/PathRequestMatcher.cs | 7 ++++--- .../Net/Simulation/Responses/EmptyResponseBuilder.cs | 7 ++++--- .../Net/Simulation/Responses/IResponseBuilder.cs | 7 ++++--- .../Simulation/Responses/StaticStringResponseBuilder.cs | 7 ++++--- .../Simulation/Responses/TooManyRequestsResponseBuilder.cs | 7 ++++--- .../Net/Simulation/SimulationHttpHandler.cs | 7 ++++--- src/Tableau.Migration/Net/Simulation/UriExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/StringExtensions.cs | 7 ++++--- src/Tableau.Migration/Net/TableauSerializer.cs | 7 ++++--- src/Tableau.Migration/ObjectExtensions.cs | 7 ++++--- .../Paging/BreadthFirstPathHierarchyPager.cs | 7 ++++--- src/Tableau.Migration/Paging/IPageInfo.cs | 7 ++++--- src/Tableau.Migration/Paging/IPagedResult.cs | 7 ++++--- src/Tableau.Migration/Paging/IPager.cs | 7 ++++--- src/Tableau.Migration/Paging/IndexedPagerBase.cs | 7 ++++--- src/Tableau.Migration/Paging/PagedResult.cs | 7 ++++--- src/Tableau.Migration/PipelineProfile.cs | 7 ++++--- src/Tableau.Migration/Properties/AssemblyInfo.cs | 7 ++++--- src/Tableau.Migration/Resources/AllUsersTranslations.cs | 7 ++++--- .../Resources/DefaultExternalAssetsProjectTranslations.cs | 7 ++++--- .../Resources/ISharedResourcesLocalizer.cs | 7 ++++--- src/Tableau.Migration/Resources/SharedResourceKeys.cs | 7 ++++--- .../Resources/SharedResourcesLocalizer.cs | 7 ++++--- src/Tableau.Migration/Result.cs | 7 ++++--- src/Tableau.Migration/ResultBuilder.cs | 7 ++++--- src/Tableau.Migration/StreamExtensions.cs | 7 ++++--- src/Tableau.Migration/StreamProcessorBase.cs | 7 ++++--- src/Tableau.Migration/StringEnum.cs | 7 ++++--- src/Tableau.Migration/TaskDelayer.cs | 7 ++++--- src/Tableau.Migration/TaskExtensions.cs | 7 ++++--- src/Tableau.Migration/TypeExtensions.cs | 7 ++++--- src/Tableau.Migration/UserAgentSuffixProvider.cs | 7 ++++--- src/Tableau.Migration/ValidationExtensions.cs | 7 ++++--- tests/Python.TestApplication/helper.py | 2 +- tests/Python.TestApplication/main.py | 2 +- .../migration_testcomponents_engine_manifest.py | 2 +- .../migration_testcomponents_filters.py | 2 +- .../migration_testcomponents_hooks.py | 2 +- .../migration_testcomponents_mappings.py | 2 +- .../test_tableau_cloud_username_mapping.py | 2 +- .../testapplication_tests/__init__.py | 2 +- .../testapplication_tests/test_classes.py | 2 +- .../Config/DomainOptions.cs | 7 ++++--- .../Config/EndpointOptions.cs | 7 ++++--- .../Tableau.Migration.TestApplication/Config/LogOptions.cs | 7 ++++--- .../Config/SpecialUsersOptions.cs | 7 ++++--- .../Config/TestApplicationOptions.cs | 7 ++++--- .../Hooks/NonDomainUserFilter.cs | 7 ++++--- .../Hooks/SaveManifestAfterBatchMigrationCompletedHook.cs | 7 ++++--- .../Tableau.Migration.TestApplication/Hooks/SkipFilter.cs | 7 ++++--- .../Hooks/SpecialUserFilter.cs | 7 ++++--- .../Hooks/SpecialUserMapping.cs | 7 ++++--- .../Hooks/TestTableauCloudUsernameMapping.cs | 7 ++++--- .../Hooks/TestTableauCloudUsernameOptions.cs | 7 ++++--- .../Hooks/TimeLoggerAfterActionHook.cs | 7 ++++--- .../Hooks/UnlicensedUserFilter.cs | 7 ++++--- .../Hooks/UnlicensedUserMapping.cs | 7 ++++--- tests/Tableau.Migration.TestApplication/Program.cs | 7 ++++--- tests/Tableau.Migration.TestApplication/TestApplication.cs | 7 ++++--- .../AutoFixtureTestBase.cs | 7 ++++--- .../Engine/Manifest/TestMigrationManifestSerializer.cs | 7 ++++--- .../JsonConverter/JsonObjects/TestJsonContentLocation.cs | 7 ++++--- .../JsonConverter/JsonObjects/TestJsonContentReference.cs | 7 ++++--- .../JsonConverter/JsonObjects/TestJsonManifestEntry.cs | 7 ++++--- .../MockServiceProvider.cs | 7 ++++--- tests/Tableau.Migration.TestComponents.Tests/Usings.cs | 7 ++++--- .../Engine/Manifest/MigrationManifestSerializer.cs | 7 ++++--- .../IServiceCollectionExtensions.cs | 7 ++++--- .../JsonConverters/Constants.cs | 7 ++++--- .../JsonConverters/ExceptionJsonConverter.cs | 7 ++++--- .../JsonConverters/Exceptions/MismatchException.cs | 7 ++++--- .../JsonConverters/JsonObjects/JsonContentLocation.cs | 7 ++++--- .../JsonConverters/JsonObjects/JsonContentReference.cs | 7 ++++--- .../JsonConverters/JsonObjects/JsonManifestEntry.cs | 7 ++++--- .../MigrationManifestEntryCollectionReader.cs | 7 ++++--- .../MigrationManifestEntryCollectionWriter.cs | 7 ++++--- .../JsonConverters/SerializeableMigrationManifest.cs | 7 ++++--- tests/Tableau.Migration.Tests/AutoFixtureTestBase.cs | 7 ++++--- tests/Tableau.Migration.Tests/BaseUriComparer.cs | 7 ++++--- .../CultureNameTestDataAttribute.cs | 7 ++++--- tests/Tableau.Migration.Tests/CultureSilo.cs | 7 ++++--- tests/Tableau.Migration.Tests/EnumDataAttribute.cs | 7 ++++--- tests/Tableau.Migration.Tests/HttpContentExtensions.cs | 7 ++++--- .../HttpMessageHandlerExtensions.cs | 7 ++++--- .../HttpRequestMessageExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/HttpStatusCodeExtensions.cs | 7 ++++--- .../Tableau.Migration.Tests/IContainerContentExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/IDataSourceExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/IEnumerableExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/IEnumeratorExtensions.cs | 7 ++++--- .../IHttpResponseMessageExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/IResultTests.cs | 7 ++++--- .../IServiceCollectionExtensions.cs | 7 ++++--- .../IServiceCollectionExtensionsTestBase.cs | 7 ++++--- tests/Tableau.Migration.Tests/ITagTypeComparer.cs | 7 ++++--- .../Tableau.Migration.Tests/IViewReferenceTypeComparer.cs | 7 ++++--- .../Tableau.Migration.Tests/IWorkbookConnectionComparer.cs | 7 ++++--- tests/Tableau.Migration.Tests/IWorkbookExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/MemoryPager.cs | 7 ++++--- tests/Tableau.Migration.Tests/MockExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/MockHttpClient.cs | 7 ++++--- tests/Tableau.Migration.Tests/MockServiceProvider.cs | 7 ++++--- .../MockSharedResourcesLocalizer.cs | 7 ++++--- .../NullEmptyWhiteSpaceDataAttribute.cs | 7 ++++--- .../NullableGuidParseDataAttribute.cs | 7 ++++--- tests/Tableau.Migration.Tests/ObjectExtensions.cs | 7 ++++--- .../Reflection/ObjectReflectionWrapper.cs | 7 ++++--- .../Reflection/SeekableCryptoStreamWrapper.cs | 7 ++++--- .../Reflection/TypeReflectionWrapper.cs | 7 ++++--- tests/Tableau.Migration.Tests/ReflectionExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/RestExceptionExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/ResultExtensions.cs | 7 ++++--- .../Tableau.Migration.Tests/SimulatedConnectionComparer.cs | 7 ++++--- .../Simulation/MultiDestinationSimulationTestBase.cs | 7 ++++--- .../Simulation/ServerToCloudSimulationTestBase.cs | 7 ++++--- .../Simulation/ServerToServerSimulationTestBase.cs | 7 ++++--- .../Simulation/SimulationTestBase.cs | 7 ++++--- .../Simulation/SingleServerSimulationTestBase.cs | 7 ++++--- .../Simulation/TableauDataExtensions.cs | 7 ++++--- .../Simulation/Tests/Api/ApiClientTestBase.cs | 7 ++++--- .../Simulation/Tests/Api/ApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/DataSourcesApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/GroupsApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/JobsApiClientTests.cs | 7 ++++--- .../Tests/Api/PermissionsContentApiClientTestBase.cs | 7 ++++--- .../Simulation/Tests/Api/ProjectsApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/SitesApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/UsersApiClientTests.cs | 7 ++++--- .../Simulation/Tests/Api/WorkbooksApiClientTests.cs | 7 ++++--- .../Simulation/Tests/DataSourceMigrationTests.cs | 7 ++++--- .../Simulation/Tests/ErrorHandlingTests.cs | 7 ++++--- .../Simulation/Tests/GroupMigrationTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Simulation/Tests/HookTests.cs | 7 ++++--- .../Simulation/Tests/IncrementalMigrationTests.cs | 7 ++++--- .../Simulation/Tests/MigratorTests.cs | 7 ++++--- .../Simulation/Tests/ProjectMigrationTests.cs | 7 ++++--- .../Simulation/Tests/SimulatorFactoryTests.cs | 7 ++++--- .../Simulation/Tests/UserMigrationTests.cs | 7 ++++--- .../Simulation/Tests/WorkbookMigrationTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/StreamFactory.cs | 7 ++++--- tests/Tableau.Migration.Tests/StreamFactoryOptions.cs | 7 ++++--- tests/Tableau.Migration.Tests/StringEnumDataAttribute.cs | 7 ++++--- tests/Tableau.Migration.Tests/TagExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestConstants.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestContentType.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestFileContentType.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestHttpStreamProcessor.cs | 7 ++++--- .../TestPagedTableauServerResponse.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestPlanOptions.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestPublishType.cs | 7 ++++--- .../TestSharedResourcesLocalizer.cs | 7 ++++--- tests/Tableau.Migration.Tests/TestTableauServerResponse.cs | 7 ++++--- tests/Tableau.Migration.Tests/TypeExtensionTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Api/ApiClientTestBase.cs | 7 ++++--- .../Unit/Api/ApiClientTestDependencies.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Api/ApiClientTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Api/ApiListPagerTests.cs | 7 ++++--- .../Unit/Api/ApiPageAccessorTestBase.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Api/ApiTestBase.cs | 7 ++++--- .../Unit/Api/AuthenticationTokenProviderTests.cs | 7 ++++--- .../Unit/Api/GroupsApiClientTests.cs | 7 ++++--- .../Unit/Api/IApiClientTestDependencies.cs | 7 ++++--- .../Unit/Api/IContentFileStoreExtensionsTests.cs | 7 ++++--- .../Api/IContentReferenceFinderFactoryExtensionsTests.cs | 7 ++++--- .../Unit/Api/IHttpRequestBuilderExtensionsTests.cs | 7 ++++--- .../Unit/Api/IHttpResponseMessageExtensionsTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Api/JobsApiClientTests.cs | 7 ++++--- .../Unit/Api/Labels/LabelsApiClientTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Api/MockExtensions.cs | 7 ++++--- .../Unit/Api/Models/CreateProjectOptionsTests.cs | 7 ++++--- .../Unit/Api/Models/FailedJobExceptionTests.cs | 7 ++++--- .../Unit/Api/Models/FileDownloadTests.cs | 7 ++++--- .../Unit/Api/Models/IUserExtensionsTests.cs | 7 ++++--- .../Unit/Api/Models/ImportJobTests.cs | 7 ++++--- .../Unit/Api/Models/PagedTableauServerResponseTests.cs | 7 ++++--- .../Unit/Api/Models/SignInRequestTests.cs | 7 ++++--- .../Unit/Api/Models/SignInResultTests.cs | 7 ++++--- .../Unit/Api/Models/TimeoutJobExceptionTests.cs | 7 ++++--- .../Unit/Api/Models/UpdateProjectResultTests.cs | 7 ++++--- .../Unit/Api/PagedListApiClientTestBase.cs | 7 ++++--- .../Api/Permissions/DefaultPermissionsApiClientTests.cs | 7 ++++--- .../Api/Permissions/PermissionsApiClientFactoryTests.cs | 7 ++++--- .../Unit/Api/Permissions/PermissionsApiClientTests.cs | 7 ++++--- .../Api/Permissions/PermissionsContentApiClientTestBase.cs | 7 ++++--- .../Unit/Api/ProjectsApiClientTests.cs | 7 ++++--- .../Unit/Api/Publishing/DataSourcePublisherTests.cs | 7 ++++--- .../Unit/Api/Publishing/FilePublisherBaseTests.cs | 7 ++++--- .../Unit/Api/Publishing/FilePublisherTestBase.cs | 7 ++++--- .../Unit/Api/Publishing/WorkbookPublisherTests.cs | 7 ++++--- .../Unit/Api/Rest/ContentItemUriBuilderBaseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/CreateProjectRequestTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/CreateProjectResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/ErrorTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/IProjectTypeExtensionsTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/ITagTypeComparer.cs | 7 ++++--- .../Unit/Api/Rest/Models/ImportUsersFromCsvRequestTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/LabelContentTypesTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/ModelTests.cs | 7 ++++--- .../Api/Rest/Models/PagedTableauServerResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/Requests/AddTagsRequestTests.cs | 7 ++++--- .../Rest/Models/Requests/UpdateConnectionRequestTests.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateProjectRequestTests.cs | 7 ++++--- .../Api/Rest/Models/Requests/UpdateSiteRequestTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/RestProjectBuilderPagerTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/RestProjectBuilderTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/RestProjectResponsePagerTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/ServerInfoResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/SignInRequestTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/SignInResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/SiteResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/SiteRoleMappingTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/TableauServerResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/WorkbookResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/Models/WorkbooksResponseTests.cs | 7 ++++--- .../Unit/Api/Rest/PermissionsUriBuilderTests.cs | 7 ++++--- .../Unit/Api/Rest/RestUrlPrefixesTests.cs | 7 ++++--- .../Unit/Api/Rest/TagsUriBuilderTests.cs | 7 ++++--- .../Unit/Api/ScopedApiClientFactoryTests.cs | 7 ++++--- .../Api/Search/ApiContentReferenceFinderFactoryTests.cs | 7 ++++--- .../Unit/Api/Search/BulkApiContentReferenceCacheTests.cs | 7 ++++--- .../Unit/Api/SerializationTestBase.cs | 7 ++++--- .../Unit/Api/ServerSessionProviderTests.cs | 7 ++++--- .../Simulation/Rest/Net/Requests/RestUrlPatternsTests.cs | 7 ++++--- .../Api/Simulation/Rest/Net/Requests/UriExtensionsTests.cs | 7 ++++--- .../Rest/Net/Responses/ResponseBuilderTestBase.cs | 7 ++++--- .../Rest/Net/Responses/RestGetByIdResponseBuilderTests.cs | 7 ++++--- .../Net/Responses/RestPagedListResponseBuilderTests.cs | 7 ++++--- .../Responses/RestPermissionsCreateResponseBuilderTests.cs | 7 ++++--- .../Net/Responses/RestPostEntityResponseBuilderTests.cs | 7 ++++--- .../Unit/Api/Simulation/TableauApiSimulatorFactoryTests.cs | 7 ++++--- .../Unit/Api/SitesApiClientTests.cs | 7 ++++--- .../Unit/Api/TableauServerVersionProviderTests.cs | 7 ++++--- .../Unit/Api/TableauSiteConnectionConfigurationTests.cs | 7 ++++--- .../Unit/Api/Tags/TagsApiClientFactoryTests.cs | 7 ++++--- .../Unit/Api/Tags/TagsApiClientTests.cs | 7 ++++--- .../Unit/Api/UsersApiClientTests.cs | 7 ++++--- .../Unit/Api/ViewsApiClientFactoryTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Api/ViewsApiClientTest.cs | 7 ++++--- .../Unit/Api/WorkbooksApiClientTests.cs | 7 ++++--- .../Unit/AsyncDisposableResultTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/AutoFixtureExtensions.cs | 7 ++++--- .../Unit/ConcurrentDictionaryExtensionsTests.cs | 7 ++++--- .../Unit/Config/ConfigReaderTests.cs | 7 ++++--- .../Unit/Config/ConfigurationTests.cs | 7 ++++--- .../Config/DefaultPermissionsContentTypeOptionsTests.cs | 7 ++++--- .../Unit/Config/FileOptionsTests.cs | 7 ++++--- .../Unit/Config/MigrationSdkOptionsTests.cs | 7 ++++--- .../Unit/Config/PreflightOptionsTests.cs | 7 ++++--- .../Unit/Content/ContentBaseTests.cs | 7 ++++--- .../Unit/Content/ContentLocationComparerTests.cs | 7 ++++--- .../Unit/Content/ContentReferenceStubTests.cs | 7 ++++--- .../Unit/Content/DataSourceDetailsTests.cs | 7 ++++--- .../Unit/Content/DataSourceTests.cs | 7 ++++--- .../Unit/Content/Files/Aes256EncryptionFactoryTests.cs | 7 ++++--- .../Unit/Content/Files/ContentFileHandleTests.cs | 7 ++++--- .../Unit/Content/Files/ContentFileStoreTestBase.cs | 7 ++++--- .../Unit/Content/Files/ContentFileStreamTests.cs | 7 ++++--- .../Content/Files/DirectoryContentFileStoreTestBase.cs | 7 ++++--- .../Unit/Content/Files/DirectoryContentFileStoreTests.cs | 7 ++++--- .../Unit/Content/Files/EncryptedFileHandleTests.cs | 7 ++++--- .../Unit/Content/Files/EncryptedFileStoreTests.cs | 7 ++++--- .../Unit/Content/Files/EncryptedFileStreamTests.cs | 7 ++++--- .../Unit/Content/Files/IContentFileStoreTests.cs | 7 ++++--- .../Unit/Content/Files/MemoryContentFileStore.cs | 7 ++++--- .../Unit/Content/Files/MockXmlFileHandle.cs | 7 ++++--- .../Unit/Content/Files/SeekableCryptoStreamTests.cs | 7 ++++--- .../Unit/Content/Files/TableauFileEditorTests.cs | 7 ++++--- .../Unit/Content/Files/TableauFileXmlStreamTests.cs | 7 ++++--- .../Files/TemporaryDirectoryContentFileStoreTests.cs | 7 ++++--- .../Unit/Content/Files/WritableMemoryContentFileStream.cs | 7 ++++--- .../Unit/Content/Files/Xml/XContainerExtensionsTests.cs | 7 ++++--- .../Unit/Content/Files/Xml/XElementExtensionsTests.cs | 7 ++++--- .../Unit/Content/Files/Xml/XFeatureFlagNameTests.cs | 7 ++++--- .../Unit/Content/Files/Xml/XNameExtensionsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Content/GroupTests.cs | 7 ++++--- .../Unit/Content/MappableContainerContentBaseTests.cs | 7 ++++--- .../Unit/Content/Permissions/GranteeCapabilityTests.cs | 7 ++++--- .../Content/Permissions/GranteeCapabilityTypeExtensions.cs | 7 ++++--- .../Unit/Content/Permissions/IGranteeCapabilityComparer.cs | 7 ++++--- .../Unit/Content/Permissions/IPermissionsComparer.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Content/ProjectTests.cs | 7 ++++--- .../Content/Search/CachedContentReferenceFinderTests.cs | 7 ++++--- .../Unit/Content/Search/ContentReferenceCacheBaseTests.cs | 7 ++++--- .../Unit/Content/ServerSessionSettingsTests.cs | 7 ++++--- .../Unit/Content/ServerSessionTests.cs | 7 ++++--- .../Unit/Content/SiteSettingUpdateTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Content/SiteTests.cs | 7 ++++--- .../Unit/Content/TagLabelComparerTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Content/TagTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Content/UserTests.cs | 7 ++++--- .../Unit/Content/UsernameContentBaseTests.cs | 7 ++++--- .../Unit/Content/WorkbookDetailsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/ContentLocationTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/CsvExtensionsTests.cs | 7 ++++--- .../Unit/DateTimeExtensionsTests.cs | 7 ++++--- .../Unit/Engine/Actions/MigrateContentActionTests.cs | 7 ++++--- .../Unit/Engine/Actions/MigrationActionResultTests.cs | 7 ++++--- .../Unit/Engine/Actions/PreflightActionTests.cs | 7 ++++--- .../Unit/Engine/Endpoints/MigrationEndpointFactoryTests.cs | 7 ++++--- .../Engine/Endpoints/Search/BulkDestinationCacheTest.cs | 7 ++++--- .../Engine/Endpoints/Search/BulkDestinationCacheTests.cs | 7 ++++--- .../Endpoints/Search/BulkDestinationProjectCacheTests.cs | 7 ++++--- ...anifestDestinationContentReferenceFinderFactoryTests.cs | 7 ++++--- .../ManifestDestinationContentReferenceFinderTests.cs | 7 ++++--- .../ManifestSourceContentReferenceFinderFactoryTests.cs | 7 ++++--- .../Search/ManifestSourceContentReferenceFinderTests.cs | 7 ++++--- .../Engine/Endpoints/TableauApiDestinationEndpointTests.cs | 7 ++++--- .../Unit/Engine/Endpoints/TableauApiEndpointBaseTests.cs | 7 ++++--- .../Endpoints/TableauApiEndpointConfigurationTests.cs | 7 ++++--- .../Unit/Engine/Endpoints/TableauApiEndpointTestBase.cs | 7 ++++--- .../Unit/Engine/Endpoints/TableauApiSourceEndpointTests.cs | 7 ++++--- .../Unit/Engine/Hooks/CallbackHookWrapperTests.cs | 7 ++++--- .../Unit/Engine/Hooks/ContentTypeHookBuilderBaseTests.cs | 7 ++++--- .../Unit/Engine/Hooks/Filters/ContentFilterBaseTests.cs | 7 ++++--- .../Unit/Engine/Hooks/Filters/ContentFilterBuilderTests.cs | 7 ++++--- .../Unit/Engine/Hooks/Filters/ContentFilterRunnerTests.cs | 7 ++++--- .../Hooks/Filters/ContentLocationInPathCriterionTests.cs | 7 ++++--- .../Filters/Default/GroupAllUsersFilterOptionsTests.cs | 7 ++++--- .../Hooks/Filters/Default/GroupAllUsersFilterTests.cs | 7 ++++--- .../Hooks/Filters/Default/PreviouslyMigratedFilterTests.cs | 7 ++++--- .../Filters/Default/ProjectSystemOwnershipFilterTests.cs | 7 ++++--- .../Filters/Default/UserSiteRoleSupportUserFilterTests.cs | 7 ++++--- .../Unit/Engine/Hooks/Mappings/ContentMappingBaseTests.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingBuilderTests.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingContextTests.cs | 7 ++++--- .../Engine/Hooks/Mappings/ContentMappingRunnerTests.cs | 7 ++++--- .../Default/AuthenticationTypeDomainMappingBaseTests.cs | 7 ++++--- .../Default/AuthenticationTypeDomainMappingTests.cs | 7 ++++--- .../CallbackAuthenticationTypeDomainMappingTests.cs | 7 ++++--- .../Mappings/Default/TableauCloudUsernameMappingTests.cs | 7 ++++--- .../Unit/Engine/Hooks/MigrationHookBuilderBaseTests.cs | 7 ++++--- .../Unit/Engine/Hooks/MigrationHookBuilderTests.cs | 7 ++++--- .../Engine/Hooks/MigrationHookFactoryCollectionTests.cs | 7 ++++--- .../Unit/Engine/Hooks/MigrationHookFactoryTests.cs | 7 ++++--- .../Unit/Engine/Hooks/MigrationHookRunnerTests.cs | 7 ++++--- .../Hooks/PostPublish/BulkPostPublishContextTests.cs | 7 ++++--- .../PostPublish/ContentItemPostPublishContextTests.cs | 7 ++++--- .../Default/ChildItemsPermissionsPostPublishHookTests.cs | 7 ++++--- .../PostPublish/Default/OwnerItemPostPublishHookTests.cs | 7 ++++--- .../Default/PermissionPostPublishHookBaseTests.cs | 7 ++++--- .../Default/PermissionsItemPostPublishHookTests.cs | 7 ++++--- .../PostPublish/Default/ProjectPostPublishHookTests.cs | 7 ++++--- .../PostPublish/Default/TagItemPostPublishHookTests.cs | 7 ++++--- .../Hooks/Transformers/ContentTransformerBuilderTests.cs | 7 ++++--- .../Hooks/Transformers/ContentTransformerRunnerTests.cs | 7 ++++--- .../Transformers/Default/MappedUserTransformerTests.cs | 7 ++++--- .../Transformers/Default/OwnershipTransformerTests.cs | 7 ++++--- .../Transformers/Default/PermissionsTransformerTests.cs | 7 ++++--- .../Default/TableauServerConnectionUrlTransformerTests.cs | 7 ++++--- .../UserTableauCloudAuthenticationTypeTransformerTests.cs | 7 ++++--- .../Default/UserTableauCloudSiteRoleTransformerTests.cs | 7 ++++--- .../Hooks/Transformers/IXmlContentTransformerTests.cs | 7 ++++--- .../Hooks/Transformers/XmlContentTransformerBaseTests.cs | 7 ++++--- .../Unit/Engine/IMigrationExtensionsTests.cs | 7 ++++--- .../Unit/Engine/IServiceCollectionExtensionsTests.cs | 7 ++++--- .../Unit/Engine/Manifest/IMigrationManifestEditorTests.cs | 7 ++++--- .../Manifest/MigrationManifestContentTypePartitionTests.cs | 7 ++++--- .../Manifest/MigrationManifestEntryCollectionTests.cs | 7 ++++--- .../Unit/Engine/Manifest/MigrationManifestEntryTests.cs | 7 ++++--- .../Unit/Engine/Manifest/MigrationManifestFactoryTests.cs | 7 ++++--- .../Unit/Engine/Manifest/MigrationManifestTests.cs | 7 ++++--- .../Unit/Engine/MigrationDirectoryContentFileStoreTests.cs | 7 ++++--- .../Unit/Engine/MigrationInputTests.cs | 7 ++++--- .../Unit/Engine/MigrationPlanBuilderTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Engine/MigrationTests.cs | 7 ++++--- .../Batch/BulkPublishContentBatchMigratorTests.cs | 7 ++++--- .../Migrators/Batch/ContentBatchMigrationResultTests.cs | 7 ++++--- .../Migrators/Batch/ContentBatchMigratorBaseTests.cs | 7 ++++--- .../Engine/Migrators/Batch/ContentBatchMigratorTestBase.cs | 7 ++++--- .../Engine/Migrators/Batch/ContentMigrationBatchTests.cs | 7 ++++--- .../Batch/ItemPublishContentBatchMigratorTests.cs | 7 ++++--- .../Batch/ParallelContentBatchMigratorBatchBaseTests.cs | 7 ++++--- .../Batch/ParallelContentBatchMigratorBatchTestBase.cs | 7 ++++--- .../Engine/Migrators/ContentItemMigrationResultTests.cs | 7 ++++--- .../Unit/Engine/Migrators/ContentMigratorTests.cs | 7 ++++--- .../Unit/Engine/Migrators/MigratorTests.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsBuilderTests.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsCollectionTests.cs | 7 ++++--- .../Engine/Options/MigrationPlanOptionsProviderTests.cs | 7 ++++--- .../Unit/Engine/Pipelines/MigrationPipelineBaseTests.cs | 7 ++++--- .../MigrationPipelineContentTypeExtensionsTests.cs | 7 ++++--- .../Engine/Pipelines/MigrationPipelineContentTypeTests.cs | 7 ++++--- .../Unit/Engine/Pipelines/MigrationPipelineFactoryTests.cs | 7 ++++--- .../Unit/Engine/Pipelines/MigrationPipelineRunnerTests.cs | 7 ++++--- .../Unit/Engine/Pipelines/MigrationPipelineTestBase.cs | 7 ++++--- .../Engine/Pipelines/PipelineProfileExtensionsTests.cs | 7 ++++--- .../Pipelines/ServerToCloudMigrationPipelineTests.cs | 7 ++++--- .../Unit/Engine/Pipelines/TestAction.cs | 7 ++++--- .../Unit/Engine/Pipelines/TestPipeline.cs | 7 ++++--- .../Engine/Preparation/ContentItemPreparerBaseTests.cs | 7 ++++--- .../Unit/Engine/Preparation/ContentItemPreparerTestBase.cs | 7 ++++--- .../Engine/Preparation/EndpointContentItemPreparerTests.cs | 7 ++++--- .../Engine/Preparation/SourceContentItemPreparerTests.cs | 7 ++++--- .../Unit/Engine/ServerToCloudMigrationPlanBuilderTests.cs | 7 ++++--- .../Unit/ExceptionExtensionsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/FilePathTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/GuardTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/HttpClientExtensions.cs | 7 ++++--- .../Unit/IContentReferenceFinderFactoryExtensions.cs | 7 ++++--- .../Unit/IEnumerableExtensionsTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/IHttpClientExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/ILoggerTests.cs | 7 ++++--- .../Unit/IServiceCollectionExtensionsTests.cs | 7 ++++--- .../Unit/InheritedTypeComparerTests.cs | 7 ++++--- .../Unit/Interop/Hooks/Filters/ISyncContentFilterTests.cs | 7 ++++--- .../Hooks/ISyncContentBatchMigrationCompletedHookTests.cs | 7 ++++--- .../Unit/Interop/Hooks/ISyncContentMappingTests.cs | 7 ++++--- .../Unit/Interop/Hooks/ISyncContentTransformerTests.cs | 7 ++++--- .../Interop/Hooks/Mappings/ISyncContentMappingTests.cs | 7 ++++--- .../Hooks/PostPublish/ISyncBulkPostPublishHookTests.cs | 7 ++++--- .../PostPublish/ISyncContentItemPostPublishHookTests.cs | 7 ++++--- .../Hooks/Transformers/ISyncContentTransformerTests.cs | 7 ++++--- .../Hooks/Transformers/ISyncXmlContentTransformerTests.cs | 7 ++++--- .../Unit/LoggingServiceCollectionExtensionsTests.cs | 7 ++++--- .../Unit/MockHttpResponseMessage.cs | 7 ++++--- .../Unit/MockHttpResponseMessageExtensions.cs | 7 ++++--- .../Unit/MockIHttpClientExtensions.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/NameOfTests.cs | 7 ++++--- .../Unit/Net/DefaultHttpClientTests.cs | 7 ++++--- .../Unit/Net/Handlers/AuthenticationHandlerTests.cs | 7 ++++--- .../Unit/Net/Handlers/LoggingHandlerTests.cs | 7 ++++--- .../Unit/Net/Handlers/MockDelegatingHandler.cs | 7 ++++--- .../Unit/Net/Handlers/UserAgentHttpMessageHandlerTests.cs | 7 ++++--- .../Unit/Net/HttpContentExtensionsTests.cs | 7 ++++--- .../Unit/Net/HttpContentRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpContentSerializerTests.cs | 7 ++++--- .../Unit/Net/HttpDeleteRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpGetRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpPatchRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpPostRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpPutRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpRequestBuilderFactoryTests.cs | 7 ++++--- .../Unit/Net/HttpRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/HttpStreamProcessorTests.cs | 7 ++++--- .../Unit/Net/IServiceCollectionExtensionsTests.cs | 7 ++++--- .../Unit/Net/MediaTypeHeaderValueExtensionsTests.cs | 7 ++++--- .../Unit/Net/NetworkTraceLoggerTests.cs | 7 ++++--- .../Unit/Net/NetworkTraceRedactorTests.cs | 7 ++++--- .../Unit/Net/QueryStringBuilderTests.cs | 7 ++++--- .../Unit/Net/RequestBuilderTests.cs | 7 ++++--- .../Net/Resilience/ClientThrottleStrategyBuilderTests.cs | 7 ++++--- .../Net/Resilience/MaxConcurrentStrategyBuilderTests.cs | 7 ++++--- .../Net/Resilience/RequestTimeoutStrategyBuilderTests.cs | 7 ++++--- .../Unit/Net/Resilience/ResilienceContextExtensions.cs | 7 ++++--- .../Unit/Net/Resilience/ResilienceStrategyTestBase.cs | 7 ++++--- .../Unit/Net/Resilience/RetryStrategyBuilderTests.cs | 7 ++++--- .../Net/Resilience/ServerThrottleStrategyBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Fields/FieldBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Fields/FieldTests.cs | 7 ++++--- .../Unit/Net/Rest/Filtering/FilterBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Filtering/FilterOperatorTests.cs | 7 ++++--- .../Unit/Net/Rest/Filtering/FilterTests.cs | 7 ++++--- .../Unit/Net/Rest/GuidExtensionsTests.cs | 7 ++++--- .../Unit/Net/Rest/HttpRequestMessageExtensionsTests.cs | 7 ++++--- .../Unit/Net/Rest/IRestRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Paging/PageBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Paging/PageTests.cs | 7 ++++--- .../Unit/Net/Rest/RestRequestBuilderFactoryTests.cs | 7 ++++--- .../Unit/Net/Rest/RestRequestBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Sorting/SortBuilderTests.cs | 7 ++++--- .../Unit/Net/Rest/Sorting/SortTests.cs | 7 ++++--- .../Unit/Net/TableauSerializerTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/Net/UriExtensionsTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/ObjectExtensionsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/OptionsHookTestBase.cs | 7 ++++--- .../Unit/Paging/BreadthFirstPathHierarchyPagerTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/Paging/IPagerTests.cs | 7 ++++--- .../Unit/Paging/IndexedPagerBaseTests.cs | 7 ++++--- .../Unit/Paging/PagedResultTests.cs | 7 ++++--- .../Unit/Resources/AllUsersTranslationsTests.cs | 7 ++++--- .../Unit/Resources/ISharedResourcesLocalizerTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/ResultBuilderTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/ResultTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/SdkUserAgentTests.cs | 7 ++++--- .../Tableau.Migration.Tests/Unit/StreamExtensionsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/StringEnumTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/Unit/TaskExtensionsTests.cs | 7 ++++--- .../Unit/ValidationExtensionsTests.cs | 7 ++++--- tests/Tableau.Migration.Tests/ValuesAttribute.cs | 7 ++++--- 1217 files changed, 4766 insertions(+), 3583 deletions(-) diff --git a/src/Python/src/tableau_migration/__init__.py b/src/Python/src/tableau_migration/__init__.py index 112e768..1138a62 100644 --- a/src/Python/src/tableau_migration/__init__.py +++ b/src/Python/src/tableau_migration/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration.py b/src/Python/src/tableau_migration/migration.py index 7a0431a..1759660 100644 --- a/src/Python/src/tableau_migration/migration.py +++ b/src/Python/src/tableau_migration/migration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine.py b/src/Python/src/tableau_migration/migration_engine.py index 66e7ebc..55da554 100644 --- a/src/Python/src/tableau_migration/migration_engine.py +++ b/src/Python/src/tableau_migration/migration_engine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_hooks.py b/src/Python/src/tableau_migration/migration_engine_hooks.py index 74fb45d..7d8b157 100644 --- a/src/Python/src/tableau_migration/migration_engine_hooks.py +++ b/src/Python/src/tableau_migration/migration_engine_hooks.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_hooks_filters.py b/src/Python/src/tableau_migration/migration_engine_hooks_filters.py index 27b9a97..bf3950b 100644 --- a/src/Python/src/tableau_migration/migration_engine_hooks_filters.py +++ b/src/Python/src/tableau_migration/migration_engine_hooks_filters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_hooks_mappings.py b/src/Python/src/tableau_migration/migration_engine_hooks_mappings.py index b41ff09..af1a8dd 100644 --- a/src/Python/src/tableau_migration/migration_engine_hooks_mappings.py +++ b/src/Python/src/tableau_migration/migration_engine_hooks_mappings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_hooks_transformers.py b/src/Python/src/tableau_migration/migration_engine_hooks_transformers.py index 430a5c9..d6ae22b 100644 --- a/src/Python/src/tableau_migration/migration_engine_hooks_transformers.py +++ b/src/Python/src/tableau_migration/migration_engine_hooks_transformers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_migrators.py b/src/Python/src/tableau_migration/migration_engine_migrators.py index 3cccf33..3b92431 100644 --- a/src/Python/src/tableau_migration/migration_engine_migrators.py +++ b/src/Python/src/tableau_migration/migration_engine_migrators.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_engine_options.py b/src/Python/src/tableau_migration/migration_engine_options.py index f3d37c7..514109c 100644 --- a/src/Python/src/tableau_migration/migration_engine_options.py +++ b/src/Python/src/tableau_migration/migration_engine_options.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/src/tableau_migration/migration_logger.py b/src/Python/src/tableau_migration/migration_logger.py index 63974b8..30b7831 100644 --- a/src/Python/src/tableau_migration/migration_logger.py +++ b/src/Python/src/tableau_migration/migration_logger.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/__init__.py b/src/Python/tests/__init__.py index ce12ff3..0179ebe 100644 --- a/src/Python/tests/__init__.py +++ b/src/Python/tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/conftest.py b/src/Python/tests/conftest.py index d010bde..0bdc7e1 100644 --- a/src/Python/tests/conftest.py +++ b/src/Python/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_classes.py b/src/Python/tests/test_classes.py index ba1e989..a21df6c 100644 --- a/src/Python/tests/test_classes.py +++ b/src/Python/tests/test_classes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migration.py b/src/Python/tests/test_migration.py index 8768d70..b0414b3 100644 --- a/src/Python/tests/test_migration.py +++ b/src/Python/tests/test_migration.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migration_engine.py b/src/Python/tests/test_migration_engine.py index 94cf539..a48caa2 100644 --- a/src/Python/tests/test_migration_engine.py +++ b/src/Python/tests/test_migration_engine.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks.py b/src/Python/tests/test_migrations_engine_hooks.py index 2a31c04..7dda9ed 100644 --- a/src/Python/tests/test_migrations_engine_hooks.py +++ b/src/Python/tests/test_migrations_engine_hooks.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_filters.py b/src/Python/tests/test_migrations_engine_hooks_filters.py index 362f0ad..4afc1cc 100644 --- a/src/Python/tests/test_migrations_engine_hooks_filters.py +++ b/src/Python/tests/test_migrations_engine_hooks_filters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_filters_lifetime.py b/src/Python/tests/test_migrations_engine_hooks_filters_lifetime.py index ef0c089..c5a046d 100644 --- a/src/Python/tests/test_migrations_engine_hooks_filters_lifetime.py +++ b/src/Python/tests/test_migrations_engine_hooks_filters_lifetime.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_lifetime.py b/src/Python/tests/test_migrations_engine_hooks_lifetime.py index 650d1bf..458bb89 100644 --- a/src/Python/tests/test_migrations_engine_hooks_lifetime.py +++ b/src/Python/tests/test_migrations_engine_hooks_lifetime.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_mappings.py b/src/Python/tests/test_migrations_engine_hooks_mappings.py index 45b1c15..26cd620 100644 --- a/src/Python/tests/test_migrations_engine_hooks_mappings.py +++ b/src/Python/tests/test_migrations_engine_hooks_mappings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_mappings_lifetime.py b/src/Python/tests/test_migrations_engine_hooks_mappings_lifetime.py index 5d636a6..a09b5e1 100644 --- a/src/Python/tests/test_migrations_engine_hooks_mappings_lifetime.py +++ b/src/Python/tests/test_migrations_engine_hooks_mappings_lifetime.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_transformers.py b/src/Python/tests/test_migrations_engine_hooks_transformers.py index 8d462fe..e908235 100644 --- a/src/Python/tests/test_migrations_engine_hooks_transformers.py +++ b/src/Python/tests/test_migrations_engine_hooks_transformers.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_hooks_transformers_lifetime.py b/src/Python/tests/test_migrations_engine_hooks_transformers_lifetime.py index effa7af..002b870 100644 --- a/src/Python/tests/test_migrations_engine_hooks_transformers_lifetime.py +++ b/src/Python/tests/test_migrations_engine_hooks_transformers_lifetime.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_migrations_engine_options.py b/src/Python/tests/test_migrations_engine_options.py index 4edac77..26b361b 100644 --- a/src/Python/tests/test_migrations_engine_options.py +++ b/src/Python/tests/test_migrations_engine_options.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Python/tests/test_other.py b/src/Python/tests/test_other.py index 45d42b2..c5a9b3a 100644 --- a/src/Python/tests/test_other.py +++ b/src/Python/tests/test_other.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/src/Tableau.Migration/Api/ApiClient.cs b/src/Tableau.Migration/Api/ApiClient.cs index 20fc1c6..4123e41 100644 --- a/src/Tableau.Migration/Api/ApiClient.cs +++ b/src/Tableau.Migration/Api/ApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ApiClientBase.cs b/src/Tableau.Migration/Api/ApiClientBase.cs index f2e6443..6d2a714 100644 --- a/src/Tableau.Migration/Api/ApiClientBase.cs +++ b/src/Tableau.Migration/Api/ApiClientBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ApiClientInput.cs b/src/Tableau.Migration/Api/ApiClientInput.cs index b0ffd99..0b9db1b 100644 --- a/src/Tableau.Migration/Api/ApiClientInput.cs +++ b/src/Tableau.Migration/Api/ApiClientInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ApiListPager.cs b/src/Tableau.Migration/Api/ApiListPager.cs index 9c8742f..32df515 100644 --- a/src/Tableau.Migration/Api/ApiListPager.cs +++ b/src/Tableau.Migration/Api/ApiListPager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/AuthenticationTokenProvider.cs b/src/Tableau.Migration/Api/AuthenticationTokenProvider.cs index 5d65c96..7539fce 100644 --- a/src/Tableau.Migration/Api/AuthenticationTokenProvider.cs +++ b/src/Tableau.Migration/Api/AuthenticationTokenProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ClientXml/Models/FailedLogin.cs b/src/Tableau.Migration/Api/ClientXml/Models/FailedLogin.cs index 8f15c24..99fc310 100644 --- a/src/Tableau.Migration/Api/ClientXml/Models/FailedLogin.cs +++ b/src/Tableau.Migration/Api/ClientXml/Models/FailedLogin.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulLogin.cs b/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulLogin.cs index a003672..d2c3d97 100644 --- a/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulLogin.cs +++ b/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulLogin.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulOrFailedLogin.cs b/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulOrFailedLogin.cs index d1308f2..8c23460 100644 --- a/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulOrFailedLogin.cs +++ b/src/Tableau.Migration/Api/ClientXml/Models/SuccessfulOrFailedLogin.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ConnectionManager.cs b/src/Tableau.Migration/Api/ConnectionManager.cs index b06a2e2..a44bf6f 100644 --- a/src/Tableau.Migration/Api/ConnectionManager.cs +++ b/src/Tableau.Migration/Api/ConnectionManager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ContentApiClientBase.cs b/src/Tableau.Migration/Api/ContentApiClientBase.cs index 4ed42c5..e8e76db 100644 --- a/src/Tableau.Migration/Api/ContentApiClientBase.cs +++ b/src/Tableau.Migration/Api/ContentApiClientBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/DataSourcesApiClient.cs b/src/Tableau.Migration/Api/DataSourcesApiClient.cs index 33346b1..cf6fa5b 100644 --- a/src/Tableau.Migration/Api/DataSourcesApiClient.cs +++ b/src/Tableau.Migration/Api/DataSourcesApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/GroupsApiClient.cs b/src/Tableau.Migration/Api/GroupsApiClient.cs index 803faff..a8b9344 100644 --- a/src/Tableau.Migration/Api/GroupsApiClient.cs +++ b/src/Tableau.Migration/Api/GroupsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/GroupsResponseExtensions.cs b/src/Tableau.Migration/Api/GroupsResponseExtensions.cs index c0d181a..2f49882 100644 --- a/src/Tableau.Migration/Api/GroupsResponseExtensions.cs +++ b/src/Tableau.Migration/Api/GroupsResponseExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IApiClient.cs b/src/Tableau.Migration/Api/IApiClient.cs index ca3a878..b178260 100644 --- a/src/Tableau.Migration/Api/IApiClient.cs +++ b/src/Tableau.Migration/Api/IApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IApiClientInput.cs b/src/Tableau.Migration/Api/IApiClientInput.cs index 1038e50..c9f3df3 100644 --- a/src/Tableau.Migration/Api/IApiClientInput.cs +++ b/src/Tableau.Migration/Api/IApiClientInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IApiClientInputInitializer.cs b/src/Tableau.Migration/Api/IApiClientInputInitializer.cs index f85c385..abb5ce2 100644 --- a/src/Tableau.Migration/Api/IApiClientInputInitializer.cs +++ b/src/Tableau.Migration/Api/IApiClientInputInitializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IApiContentUrl.cs b/src/Tableau.Migration/Api/IApiContentUrl.cs index 78267e4..6b5af78 100644 --- a/src/Tableau.Migration/Api/IApiContentUrl.cs +++ b/src/Tableau.Migration/Api/IApiContentUrl.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IApiPageAccessor.cs b/src/Tableau.Migration/Api/IApiPageAccessor.cs index b0e7e6e..18ea954 100644 --- a/src/Tableau.Migration/Api/IApiPageAccessor.cs +++ b/src/Tableau.Migration/Api/IApiPageAccessor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IAuthenticationTokenProvider.cs b/src/Tableau.Migration/Api/IAuthenticationTokenProvider.cs index 99cdd42..1a2f1ee 100644 --- a/src/Tableau.Migration/Api/IAuthenticationTokenProvider.cs +++ b/src/Tableau.Migration/Api/IAuthenticationTokenProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IBatchPublishApiClient.cs b/src/Tableau.Migration/Api/IBatchPublishApiClient.cs index 567d150..44517d6 100644 --- a/src/Tableau.Migration/Api/IBatchPublishApiClient.cs +++ b/src/Tableau.Migration/Api/IBatchPublishApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IConnectionManager.cs b/src/Tableau.Migration/Api/IConnectionManager.cs index 2ae5b97..827954c 100644 --- a/src/Tableau.Migration/Api/IConnectionManager.cs +++ b/src/Tableau.Migration/Api/IConnectionManager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IConnectionsApiClient.cs b/src/Tableau.Migration/Api/IConnectionsApiClient.cs index d5d1a85..c265994 100644 --- a/src/Tableau.Migration/Api/IConnectionsApiClient.cs +++ b/src/Tableau.Migration/Api/IConnectionsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IContentApiClient.cs b/src/Tableau.Migration/Api/IContentApiClient.cs index a90059d..98a5b74 100644 --- a/src/Tableau.Migration/Api/IContentApiClient.cs +++ b/src/Tableau.Migration/Api/IContentApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IContentFileStoreExtensions.cs b/src/Tableau.Migration/Api/IContentFileStoreExtensions.cs index d7fd8bd..f1d81e3 100644 --- a/src/Tableau.Migration/Api/IContentFileStoreExtensions.cs +++ b/src/Tableau.Migration/Api/IContentFileStoreExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IContentReferenceFinderFactoryExtensions.cs b/src/Tableau.Migration/Api/IContentReferenceFinderFactoryExtensions.cs index fb08b93..3e7955a 100644 --- a/src/Tableau.Migration/Api/IContentReferenceFinderFactoryExtensions.cs +++ b/src/Tableau.Migration/Api/IContentReferenceFinderFactoryExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IDataSourcesApiClient.cs b/src/Tableau.Migration/Api/IDataSourcesApiClient.cs index 4c593a3..669043e 100644 --- a/src/Tableau.Migration/Api/IDataSourcesApiClient.cs +++ b/src/Tableau.Migration/Api/IDataSourcesApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IGroupsApiClient.cs b/src/Tableau.Migration/Api/IGroupsApiClient.cs index 1bfb2c8..7181a81 100644 --- a/src/Tableau.Migration/Api/IGroupsApiClient.cs +++ b/src/Tableau.Migration/Api/IGroupsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IHttpRequestBuilderExtensions.cs b/src/Tableau.Migration/Api/IHttpRequestBuilderExtensions.cs index 2c3747d..46c2a66 100644 --- a/src/Tableau.Migration/Api/IHttpRequestBuilderExtensions.cs +++ b/src/Tableau.Migration/Api/IHttpRequestBuilderExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IJobsApiClient.cs b/src/Tableau.Migration/Api/IJobsApiClient.cs index f0a673e..e9862b3 100644 --- a/src/Tableau.Migration/Api/IJobsApiClient.cs +++ b/src/Tableau.Migration/Api/IJobsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IOwnershipApiClient.cs b/src/Tableau.Migration/Api/IOwnershipApiClient.cs index 4b78e66..18592ac 100644 --- a/src/Tableau.Migration/Api/IOwnershipApiClient.cs +++ b/src/Tableau.Migration/Api/IOwnershipApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IPagedListApiClient.cs b/src/Tableau.Migration/Api/IPagedListApiClient.cs index 2319029..eab4867 100644 --- a/src/Tableau.Migration/Api/IPagedListApiClient.cs +++ b/src/Tableau.Migration/Api/IPagedListApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IProjectsApiClient.cs b/src/Tableau.Migration/Api/IProjectsApiClient.cs index 72148a7..489d4f1 100644 --- a/src/Tableau.Migration/Api/IProjectsApiClient.cs +++ b/src/Tableau.Migration/Api/IProjectsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IPublishApiClient.cs b/src/Tableau.Migration/Api/IPublishApiClient.cs index 837658e..7324836 100644 --- a/src/Tableau.Migration/Api/IPublishApiClient.cs +++ b/src/Tableau.Migration/Api/IPublishApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IPullApiClient.cs b/src/Tableau.Migration/Api/IPullApiClient.cs index e8a03cd..5ab834e 100644 --- a/src/Tableau.Migration/Api/IPullApiClient.cs +++ b/src/Tableau.Migration/Api/IPullApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IReadApiClient.cs b/src/Tableau.Migration/Api/IReadApiClient.cs index d6231ab..4d7d38a 100644 --- a/src/Tableau.Migration/Api/IReadApiClient.cs +++ b/src/Tableau.Migration/Api/IReadApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IRestRequestBuilderFactoryExtensions.cs b/src/Tableau.Migration/Api/IRestRequestBuilderFactoryExtensions.cs index 5cb7f53..aa898f2 100644 --- a/src/Tableau.Migration/Api/IRestRequestBuilderFactoryExtensions.cs +++ b/src/Tableau.Migration/Api/IRestRequestBuilderFactoryExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IScopedApiClientFactory.cs b/src/Tableau.Migration/Api/IScopedApiClientFactory.cs index e464758..9f4b11c 100644 --- a/src/Tableau.Migration/Api/IScopedApiClientFactory.cs +++ b/src/Tableau.Migration/Api/IScopedApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IServerSessionProvider.cs b/src/Tableau.Migration/Api/IServerSessionProvider.cs index 5621fbe..6ec1bec 100644 --- a/src/Tableau.Migration/Api/IServerSessionProvider.cs +++ b/src/Tableau.Migration/Api/IServerSessionProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ITableauServerVersionProvider.cs b/src/Tableau.Migration/Api/ITableauServerVersionProvider.cs index 4accd7e..2b98745 100644 --- a/src/Tableau.Migration/Api/ITableauServerVersionProvider.cs +++ b/src/Tableau.Migration/Api/ITableauServerVersionProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IUsersApiClient.cs b/src/Tableau.Migration/Api/IUsersApiClient.cs index 3d9d524..a28cce4 100644 --- a/src/Tableau.Migration/Api/IUsersApiClient.cs +++ b/src/Tableau.Migration/Api/IUsersApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IViewsApiClient.cs b/src/Tableau.Migration/Api/IViewsApiClient.cs index 789bc49..5130a38 100644 --- a/src/Tableau.Migration/Api/IViewsApiClient.cs +++ b/src/Tableau.Migration/Api/IViewsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IViewsApiClientFactory.cs b/src/Tableau.Migration/Api/IViewsApiClientFactory.cs index 90246ea..fe06112 100644 --- a/src/Tableau.Migration/Api/IViewsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/IViewsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/IWorkbooksApiClient.cs b/src/Tableau.Migration/Api/IWorkbooksApiClient.cs index 1bb4f0c..28f2f32 100644 --- a/src/Tableau.Migration/Api/IWorkbooksApiClient.cs +++ b/src/Tableau.Migration/Api/IWorkbooksApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/JobsApiClient.cs b/src/Tableau.Migration/Api/JobsApiClient.cs index 85ef5ab..41a4e07 100644 --- a/src/Tableau.Migration/Api/JobsApiClient.cs +++ b/src/Tableau.Migration/Api/JobsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Labels/ILabelsApiClient.cs b/src/Tableau.Migration/Api/Labels/ILabelsApiClient.cs index 3be6d3e..d9a43dd 100644 --- a/src/Tableau.Migration/Api/Labels/ILabelsApiClient.cs +++ b/src/Tableau.Migration/Api/Labels/ILabelsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Labels/ILabelsApiClientFactory.cs b/src/Tableau.Migration/Api/Labels/ILabelsApiClientFactory.cs index 9168078..7546fee 100644 --- a/src/Tableau.Migration/Api/Labels/ILabelsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Labels/ILabelsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Labels/ILabelsContentApiClient.cs b/src/Tableau.Migration/Api/Labels/ILabelsContentApiClient.cs index 3733bbf..6703041 100644 --- a/src/Tableau.Migration/Api/Labels/ILabelsContentApiClient.cs +++ b/src/Tableau.Migration/Api/Labels/ILabelsContentApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Labels/LabelsApiClient.cs b/src/Tableau.Migration/Api/Labels/LabelsApiClient.cs index 9e76e4d..4cd9fda 100644 --- a/src/Tableau.Migration/Api/Labels/LabelsApiClient.cs +++ b/src/Tableau.Migration/Api/Labels/LabelsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Labels/LabelsApiClientFactory.cs b/src/Tableau.Migration/Api/Labels/LabelsApiClientFactory.cs index b9b18b5..829a765 100644 --- a/src/Tableau.Migration/Api/Labels/LabelsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Labels/LabelsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/AddUserResult.cs b/src/Tableau.Migration/Api/Models/AddUserResult.cs index a489623..52ee7de 100644 --- a/src/Tableau.Migration/Api/Models/AddUserResult.cs +++ b/src/Tableau.Migration/Api/Models/AddUserResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/AddUserToGroupResult.cs b/src/Tableau.Migration/Api/Models/AddUserToGroupResult.cs index 516c4b7..55f1f12 100644 --- a/src/Tableau.Migration/Api/Models/AddUserToGroupResult.cs +++ b/src/Tableau.Migration/Api/Models/AddUserToGroupResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/CreateProjectOptions.cs b/src/Tableau.Migration/Api/Models/CreateProjectOptions.cs index 72b6d7d..03f433e 100644 --- a/src/Tableau.Migration/Api/Models/CreateProjectOptions.cs +++ b/src/Tableau.Migration/Api/Models/CreateProjectOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/FailedJobException.cs b/src/Tableau.Migration/Api/Models/FailedJobException.cs index 8f8f36d..5ef6dd4 100644 --- a/src/Tableau.Migration/Api/Models/FailedJobException.cs +++ b/src/Tableau.Migration/Api/Models/FailedJobException.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/FileDownload.cs b/src/Tableau.Migration/Api/Models/FileDownload.cs index c81d9ab..dcf3987 100644 --- a/src/Tableau.Migration/Api/Models/FileDownload.cs +++ b/src/Tableau.Migration/Api/Models/FileDownload.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IAddUserResult.cs b/src/Tableau.Migration/Api/Models/IAddUserResult.cs index a1bc3c0..d1bc8fb 100644 --- a/src/Tableau.Migration/Api/Models/IAddUserResult.cs +++ b/src/Tableau.Migration/Api/Models/IAddUserResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IAddUserToGroupResult.cs b/src/Tableau.Migration/Api/Models/IAddUserToGroupResult.cs index e556385..6a97fb0 100644 --- a/src/Tableau.Migration/Api/Models/IAddUserToGroupResult.cs +++ b/src/Tableau.Migration/Api/Models/IAddUserToGroupResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/ICreateProjectOptions.cs b/src/Tableau.Migration/Api/Models/ICreateProjectOptions.cs index d3feacd..b4d4868 100644 --- a/src/Tableau.Migration/Api/Models/ICreateProjectOptions.cs +++ b/src/Tableau.Migration/Api/Models/ICreateProjectOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IImportJob.cs b/src/Tableau.Migration/Api/Models/IImportJob.cs index 3bcd935..a8d1e0c 100644 --- a/src/Tableau.Migration/Api/Models/IImportJob.cs +++ b/src/Tableau.Migration/Api/Models/IImportJob.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IJob.cs b/src/Tableau.Migration/Api/Models/IJob.cs index 440ee75..65b8c2c 100644 --- a/src/Tableau.Migration/Api/Models/IJob.cs +++ b/src/Tableau.Migration/Api/Models/IJob.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/ILabelUpdateOptions.cs b/src/Tableau.Migration/Api/Models/ILabelUpdateOptions.cs index eec432a..e223ed6 100644 --- a/src/Tableau.Migration/Api/Models/ILabelUpdateOptions.cs +++ b/src/Tableau.Migration/Api/Models/ILabelUpdateOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IPublishDataSourceOptions.cs b/src/Tableau.Migration/Api/Models/IPublishDataSourceOptions.cs index 68b4438..925fed8 100644 --- a/src/Tableau.Migration/Api/Models/IPublishDataSourceOptions.cs +++ b/src/Tableau.Migration/Api/Models/IPublishDataSourceOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IPublishFileOptions.cs b/src/Tableau.Migration/Api/Models/IPublishFileOptions.cs index 11cc089..a143769 100644 --- a/src/Tableau.Migration/Api/Models/IPublishFileOptions.cs +++ b/src/Tableau.Migration/Api/Models/IPublishFileOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IPublishWorkbookOptions.cs b/src/Tableau.Migration/Api/Models/IPublishWorkbookOptions.cs index 5cd1df5..a6d6ce8 100644 --- a/src/Tableau.Migration/Api/Models/IPublishWorkbookOptions.cs +++ b/src/Tableau.Migration/Api/Models/IPublishWorkbookOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IServerInfo.cs b/src/Tableau.Migration/Api/Models/IServerInfo.cs index a81391c..74510f8 100644 --- a/src/Tableau.Migration/Api/Models/IServerInfo.cs +++ b/src/Tableau.Migration/Api/Models/IServerInfo.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/ISignInResult.cs b/src/Tableau.Migration/Api/Models/ISignInResult.cs index 6140755..0357e9d 100644 --- a/src/Tableau.Migration/Api/Models/ISignInResult.cs +++ b/src/Tableau.Migration/Api/Models/ISignInResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IStatusNote.cs b/src/Tableau.Migration/Api/Models/IStatusNote.cs index 5670733..5ce954c 100644 --- a/src/Tableau.Migration/Api/Models/IStatusNote.cs +++ b/src/Tableau.Migration/Api/Models/IStatusNote.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUpdateConnectionOptions.cs b/src/Tableau.Migration/Api/Models/IUpdateConnectionOptions.cs index 1d3b497..9c7093d 100644 --- a/src/Tableau.Migration/Api/Models/IUpdateConnectionOptions.cs +++ b/src/Tableau.Migration/Api/Models/IUpdateConnectionOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUpdateDataSourceResult.cs b/src/Tableau.Migration/Api/Models/IUpdateDataSourceResult.cs index 25a1bc1..dba7677 100644 --- a/src/Tableau.Migration/Api/Models/IUpdateDataSourceResult.cs +++ b/src/Tableau.Migration/Api/Models/IUpdateDataSourceResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUpdateProjectResult.cs b/src/Tableau.Migration/Api/Models/IUpdateProjectResult.cs index 6d9239a..51d3e84 100644 --- a/src/Tableau.Migration/Api/Models/IUpdateProjectResult.cs +++ b/src/Tableau.Migration/Api/Models/IUpdateProjectResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUpdateUserResult.cs b/src/Tableau.Migration/Api/Models/IUpdateUserResult.cs index 921bab6..ff7fa33 100644 --- a/src/Tableau.Migration/Api/Models/IUpdateUserResult.cs +++ b/src/Tableau.Migration/Api/Models/IUpdateUserResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUpdateWorkbookResult.cs b/src/Tableau.Migration/Api/Models/IUpdateWorkbookResult.cs index d46c8ab..bbc9c79 100644 --- a/src/Tableau.Migration/Api/Models/IUpdateWorkbookResult.cs +++ b/src/Tableau.Migration/Api/Models/IUpdateWorkbookResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/IUserExtensions.cs b/src/Tableau.Migration/Api/Models/IUserExtensions.cs index 0a57526..f4838cb 100644 --- a/src/Tableau.Migration/Api/Models/IUserExtensions.cs +++ b/src/Tableau.Migration/Api/Models/IUserExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/ImportJob.cs b/src/Tableau.Migration/Api/Models/ImportJob.cs index 81fea5d..d337990 100644 --- a/src/Tableau.Migration/Api/Models/ImportJob.cs +++ b/src/Tableau.Migration/Api/Models/ImportJob.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/Job.cs b/src/Tableau.Migration/Api/Models/Job.cs index a77934e..064f8d2 100644 --- a/src/Tableau.Migration/Api/Models/Job.cs +++ b/src/Tableau.Migration/Api/Models/Job.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/LabelUpdateOptions.cs b/src/Tableau.Migration/Api/Models/LabelUpdateOptions.cs index 13af669..2e2d6a0 100644 --- a/src/Tableau.Migration/Api/Models/LabelUpdateOptions.cs +++ b/src/Tableau.Migration/Api/Models/LabelUpdateOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/PublishDataSourceOptions.cs b/src/Tableau.Migration/Api/Models/PublishDataSourceOptions.cs index 741edd9..eb7f306 100644 --- a/src/Tableau.Migration/Api/Models/PublishDataSourceOptions.cs +++ b/src/Tableau.Migration/Api/Models/PublishDataSourceOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/PublishWorkbookOptions.cs b/src/Tableau.Migration/Api/Models/PublishWorkbookOptions.cs index 21615bd..c3ce46f 100644 --- a/src/Tableau.Migration/Api/Models/PublishWorkbookOptions.cs +++ b/src/Tableau.Migration/Api/Models/PublishWorkbookOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/ServerInfo.cs b/src/Tableau.Migration/Api/Models/ServerInfo.cs index d2d0f21..344f0e6 100644 --- a/src/Tableau.Migration/Api/Models/ServerInfo.cs +++ b/src/Tableau.Migration/Api/Models/ServerInfo.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/SignInResult.cs b/src/Tableau.Migration/Api/Models/SignInResult.cs index 70a3d4f..45e8a6e 100644 --- a/src/Tableau.Migration/Api/Models/SignInResult.cs +++ b/src/Tableau.Migration/Api/Models/SignInResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/StatusNote.cs b/src/Tableau.Migration/Api/Models/StatusNote.cs index c308ac5..f92a0d1 100644 --- a/src/Tableau.Migration/Api/Models/StatusNote.cs +++ b/src/Tableau.Migration/Api/Models/StatusNote.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/TimeoutJobException.cs b/src/Tableau.Migration/Api/Models/TimeoutJobException.cs index f0f808d..e99058d 100644 --- a/src/Tableau.Migration/Api/Models/TimeoutJobException.cs +++ b/src/Tableau.Migration/Api/Models/TimeoutJobException.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/UpdateConnectionOptions.cs b/src/Tableau.Migration/Api/Models/UpdateConnectionOptions.cs index 8a0b590..a6ab1e3 100644 --- a/src/Tableau.Migration/Api/Models/UpdateConnectionOptions.cs +++ b/src/Tableau.Migration/Api/Models/UpdateConnectionOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/UpdateDataSourceResult.cs b/src/Tableau.Migration/Api/Models/UpdateDataSourceResult.cs index b1c6f1b..d5025e3 100644 --- a/src/Tableau.Migration/Api/Models/UpdateDataSourceResult.cs +++ b/src/Tableau.Migration/Api/Models/UpdateDataSourceResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/UpdateProjectResult.cs b/src/Tableau.Migration/Api/Models/UpdateProjectResult.cs index c7ffe7d..bb265f6 100644 --- a/src/Tableau.Migration/Api/Models/UpdateProjectResult.cs +++ b/src/Tableau.Migration/Api/Models/UpdateProjectResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/UpdateUserResult.cs b/src/Tableau.Migration/Api/Models/UpdateUserResult.cs index 5fe004c..0e4ec93 100644 --- a/src/Tableau.Migration/Api/Models/UpdateUserResult.cs +++ b/src/Tableau.Migration/Api/Models/UpdateUserResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Models/UpdateWorkbookResult.cs b/src/Tableau.Migration/Api/Models/UpdateWorkbookResult.cs index ac5a518..54689c5 100644 --- a/src/Tableau.Migration/Api/Models/UpdateWorkbookResult.cs +++ b/src/Tableau.Migration/Api/Models/UpdateWorkbookResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/DefaultPermissionsApiClient.cs b/src/Tableau.Migration/Api/Permissions/DefaultPermissionsApiClient.cs index ec88242..a3fb9d6 100644 --- a/src/Tableau.Migration/Api/Permissions/DefaultPermissionsApiClient.cs +++ b/src/Tableau.Migration/Api/Permissions/DefaultPermissionsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/IDefaultPermissionsApiClient.cs b/src/Tableau.Migration/Api/Permissions/IDefaultPermissionsApiClient.cs index cbb3a92..f19aa1e 100644 --- a/src/Tableau.Migration/Api/Permissions/IDefaultPermissionsApiClient.cs +++ b/src/Tableau.Migration/Api/Permissions/IDefaultPermissionsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/IPermissionsApiClient.cs b/src/Tableau.Migration/Api/Permissions/IPermissionsApiClient.cs index 5ab7a9b..2e1ceba 100644 --- a/src/Tableau.Migration/Api/Permissions/IPermissionsApiClient.cs +++ b/src/Tableau.Migration/Api/Permissions/IPermissionsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/IPermissionsApiClientFactory.cs b/src/Tableau.Migration/Api/Permissions/IPermissionsApiClientFactory.cs index 1707b2f..f9d9eab 100644 --- a/src/Tableau.Migration/Api/Permissions/IPermissionsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Permissions/IPermissionsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/IPermissionsContentApiClient.cs b/src/Tableau.Migration/Api/Permissions/IPermissionsContentApiClient.cs index bdc8be9..9bbfb23 100644 --- a/src/Tableau.Migration/Api/Permissions/IPermissionsContentApiClient.cs +++ b/src/Tableau.Migration/Api/Permissions/IPermissionsContentApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/PermissionsApiClient.cs b/src/Tableau.Migration/Api/Permissions/PermissionsApiClient.cs index 5cf8da6..714793a 100644 --- a/src/Tableau.Migration/Api/Permissions/PermissionsApiClient.cs +++ b/src/Tableau.Migration/Api/Permissions/PermissionsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Permissions/PermissionsApiClientFactory.cs b/src/Tableau.Migration/Api/Permissions/PermissionsApiClientFactory.cs index 490199e..bccf565 100644 --- a/src/Tableau.Migration/Api/Permissions/PermissionsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Permissions/PermissionsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ProjectsApiClient.cs b/src/Tableau.Migration/Api/ProjectsApiClient.cs index e347586..8687a18 100644 --- a/src/Tableau.Migration/Api/ProjectsApiClient.cs +++ b/src/Tableau.Migration/Api/ProjectsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/DataSourcePublisher.cs b/src/Tableau.Migration/Api/Publishing/DataSourcePublisher.cs index 108e8c5..11596dd 100644 --- a/src/Tableau.Migration/Api/Publishing/DataSourcePublisher.cs +++ b/src/Tableau.Migration/Api/Publishing/DataSourcePublisher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/FilePublisherBase.cs b/src/Tableau.Migration/Api/Publishing/FilePublisherBase.cs index d64317f..f081e90 100644 --- a/src/Tableau.Migration/Api/Publishing/FilePublisherBase.cs +++ b/src/Tableau.Migration/Api/Publishing/FilePublisherBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/IDataSourcePublisher.cs b/src/Tableau.Migration/Api/Publishing/IDataSourcePublisher.cs index 21fb559..cbdfc22 100644 --- a/src/Tableau.Migration/Api/Publishing/IDataSourcePublisher.cs +++ b/src/Tableau.Migration/Api/Publishing/IDataSourcePublisher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/IFilePublisher.cs b/src/Tableau.Migration/Api/Publishing/IFilePublisher.cs index 417ecde..6a65abc 100644 --- a/src/Tableau.Migration/Api/Publishing/IFilePublisher.cs +++ b/src/Tableau.Migration/Api/Publishing/IFilePublisher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/IWorkbookPublisher.cs b/src/Tableau.Migration/Api/Publishing/IWorkbookPublisher.cs index 88e969b..0435f32 100644 --- a/src/Tableau.Migration/Api/Publishing/IWorkbookPublisher.cs +++ b/src/Tableau.Migration/Api/Publishing/IWorkbookPublisher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Publishing/WorkbookPublisher.cs b/src/Tableau.Migration/Api/Publishing/WorkbookPublisher.cs index 23fa01a..1134029 100644 --- a/src/Tableau.Migration/Api/Publishing/WorkbookPublisher.cs +++ b/src/Tableau.Migration/Api/Publishing/WorkbookPublisher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/RefreshAuthenticationTokenDelegate.cs b/src/Tableau.Migration/Api/RefreshAuthenticationTokenDelegate.cs index 30fda37..9b05258 100644 --- a/src/Tableau.Migration/Api/RefreshAuthenticationTokenDelegate.cs +++ b/src/Tableau.Migration/Api/RefreshAuthenticationTokenDelegate.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/ContentItemUriBuilderBase.cs b/src/Tableau.Migration/Api/Rest/ContentItemUriBuilderBase.cs index acdd005..f508174 100644 --- a/src/Tableau.Migration/Api/Rest/ContentItemUriBuilderBase.cs +++ b/src/Tableau.Migration/Api/Rest/ContentItemUriBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/INamedContent.cs b/src/Tableau.Migration/Api/Rest/INamedContent.cs index 4a05898..741e533 100644 --- a/src/Tableau.Migration/Api/Rest/INamedContent.cs +++ b/src/Tableau.Migration/Api/Rest/INamedContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/IPermissionsUriBuilder.cs b/src/Tableau.Migration/Api/Rest/IPermissionsUriBuilder.cs index 1ffb54f..0a14ec2 100644 --- a/src/Tableau.Migration/Api/Rest/IPermissionsUriBuilder.cs +++ b/src/Tableau.Migration/Api/Rest/IPermissionsUriBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/IProjectsResponseApiClient.cs b/src/Tableau.Migration/Api/Rest/IProjectsResponseApiClient.cs index 160fe86..0bcd3bc 100644 --- a/src/Tableau.Migration/Api/Rest/IProjectsResponseApiClient.cs +++ b/src/Tableau.Migration/Api/Rest/IProjectsResponseApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/IRestIdentifiable.cs b/src/Tableau.Migration/Api/Rest/IRestIdentifiable.cs index 7195a6b..90d1b13 100644 --- a/src/Tableau.Migration/Api/Rest/IRestIdentifiable.cs +++ b/src/Tableau.Migration/Api/Rest/IRestIdentifiable.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/AdministratorLevels.cs b/src/Tableau.Migration/Api/Rest/Models/AdministratorLevels.cs index c0e82aa..315e18f 100644 --- a/src/Tableau.Migration/Api/Rest/Models/AdministratorLevels.cs +++ b/src/Tableau.Migration/Api/Rest/Models/AdministratorLevels.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ContentPermissions.cs b/src/Tableau.Migration/Api/Rest/Models/ContentPermissions.cs index c12b1a3..db49187 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ContentPermissions.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ContentPermissions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Error.cs b/src/Tableau.Migration/Api/Rest/Models/Error.cs index a60b42c..9c5f0dc 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Error.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Error.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ExtractEncryptionModes.cs b/src/Tableau.Migration/Api/Rest/Models/ExtractEncryptionModes.cs index 8883d3e..506ef12 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ExtractEncryptionModes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ExtractEncryptionModes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/GroupUsersResponsePager.cs b/src/Tableau.Migration/Api/Rest/Models/GroupUsersResponsePager.cs index 758784b..c68f1fa 100644 --- a/src/Tableau.Migration/Api/Rest/Models/GroupUsersResponsePager.cs +++ b/src/Tableau.Migration/Api/Rest/Models/GroupUsersResponsePager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IConnectionType.cs b/src/Tableau.Migration/Api/Rest/Models/IConnectionType.cs index bc97491..041fdc4 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IConnectionType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IConnectionType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IDataSourceDetailsType.cs b/src/Tableau.Migration/Api/Rest/Models/IDataSourceDetailsType.cs index 4d741bd..a06f3ad 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IDataSourceDetailsType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IDataSourceDetailsType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IDataSourceType.cs b/src/Tableau.Migration/Api/Rest/Models/IDataSourceType.cs index 07bd24a..b2e0b07 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IDataSourceType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IDataSourceType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ILocationType.cs b/src/Tableau.Migration/Api/Rest/Models/ILocationType.cs index 6ca7bdd..1d89929 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ILocationType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ILocationType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IOwnerType.cs b/src/Tableau.Migration/Api/Rest/Models/IOwnerType.cs index 6553042..4647a86 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IOwnerType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IOwnerType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IProjectReferenceType.cs b/src/Tableau.Migration/Api/Rest/Models/IProjectReferenceType.cs index 64f27cc..d9a4860 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IProjectReferenceType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IProjectReferenceType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IProjectType.cs b/src/Tableau.Migration/Api/Rest/Models/IProjectType.cs index 9be8a8c..549ea52 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IProjectType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IProjectType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IProjectTypeExtensions.cs b/src/Tableau.Migration/Api/Rest/Models/IProjectTypeExtensions.cs index bd49e72..2a00e84 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IProjectTypeExtensions.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IProjectTypeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ITableauServerListResponse.cs b/src/Tableau.Migration/Api/Rest/Models/ITableauServerListResponse.cs index 5203e74..3f70f53 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ITableauServerListResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ITableauServerListResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ITableauServerResponse.cs b/src/Tableau.Migration/Api/Rest/Models/ITableauServerResponse.cs index 185ea66..c037cf3 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ITableauServerResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ITableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ITableauServerWithParentResponse.cs b/src/Tableau.Migration/Api/Rest/Models/ITableauServerWithParentResponse.cs index 52501b6..687cf60 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ITableauServerWithParentResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ITableauServerWithParentResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ITagType.cs b/src/Tableau.Migration/Api/Rest/Models/ITagType.cs index 1474df4..0ed8875 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ITagType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ITagType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IViewReferenceType.cs b/src/Tableau.Migration/Api/Rest/Models/IViewReferenceType.cs index bd1e16d..c8ffa6b 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IViewReferenceType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IViewReferenceType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IViewType.cs b/src/Tableau.Migration/Api/Rest/Models/IViewType.cs index c649ff1..2be5f7a 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IViewType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IViewType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWithOwnerType.cs b/src/Tableau.Migration/Api/Rest/Models/IWithOwnerType.cs index c16eb4d..fd79564 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWithOwnerType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWithOwnerType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWithProjectType.cs b/src/Tableau.Migration/Api/Rest/Models/IWithProjectType.cs index e0059ef..8d51a33 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWithProjectType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWithProjectType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWithTagTypes.cs b/src/Tableau.Migration/Api/Rest/Models/IWithTagTypes.cs index 65fdbb3..89c7e99 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWithTagTypes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWithTagTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWithWorkbookType.cs b/src/Tableau.Migration/Api/Rest/Models/IWithWorkbookType.cs index d97927d..1cd83d6 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWithWorkbookType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWithWorkbookType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWorkbookDetailsType.cs b/src/Tableau.Migration/Api/Rest/Models/IWorkbookDetailsType.cs index 825314e..32ab60f 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWorkbookDetailsType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWorkbookDetailsType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWorkbookReferenceType.cs b/src/Tableau.Migration/Api/Rest/Models/IWorkbookReferenceType.cs index fd166f4..8f6758a 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWorkbookReferenceType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWorkbookReferenceType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/IWorkbookType.cs b/src/Tableau.Migration/Api/Rest/Models/IWorkbookType.cs index cd44fce..6455576 100644 --- a/src/Tableau.Migration/Api/Rest/Models/IWorkbookType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/IWorkbookType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/LabelCategories.cs b/src/Tableau.Migration/Api/Rest/Models/LabelCategories.cs index eb614b2..1e8e08e 100644 --- a/src/Tableau.Migration/Api/Rest/Models/LabelCategories.cs +++ b/src/Tableau.Migration/Api/Rest/Models/LabelCategories.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/LabelContentTypes.cs b/src/Tableau.Migration/Api/Rest/Models/LabelContentTypes.cs index 92a1f36..67e5d53 100644 --- a/src/Tableau.Migration/Api/Rest/Models/LabelContentTypes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/LabelContentTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/LicenseLevels.cs b/src/Tableau.Migration/Api/Rest/Models/LicenseLevels.cs index 145e6c5..59800c7 100644 --- a/src/Tableau.Migration/Api/Rest/Models/LicenseLevels.cs +++ b/src/Tableau.Migration/Api/Rest/Models/LicenseLevels.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Pagination.cs b/src/Tableau.Migration/Api/Rest/Models/Pagination.cs index 2c8ac1f..dd96ac2 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Pagination.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Pagination.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/ParentContentTypeNames.cs b/src/Tableau.Migration/Api/Rest/Models/ParentContentTypeNames.cs index 056e0f8..2ca10a7 100644 --- a/src/Tableau.Migration/Api/Rest/Models/ParentContentTypeNames.cs +++ b/src/Tableau.Migration/Api/Rest/Models/ParentContentTypeNames.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityModes.cs b/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityModes.cs index 11d61ef..0ebaa0b 100644 --- a/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityModes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityModes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityNames.cs b/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityNames.cs index 1231b4c..062b239 100644 --- a/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityNames.cs +++ b/src/Tableau.Migration/Api/Rest/Models/PermissionsCapabilityNames.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/AddTagsRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/AddTagsRequest.cs index 4703669..68f1ede 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/AddTagsRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/AddTagsRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToGroupRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToGroupRequest.cs index a1990b0..6cd5ed9 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToGroupRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToGroupRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToSiteRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToSiteRequest.cs index 4a4fe9d..b061677 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToSiteRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/AddUserToSiteRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/CommitDataSourcePublishRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitDataSourcePublishRequest.cs index a176268..d6c598f 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/CommitDataSourcePublishRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitDataSourcePublishRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/CommitWorkbookPublishRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitWorkbookPublishRequest.cs index 11b2302..9c62fa3 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/CommitWorkbookPublishRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitWorkbookPublishRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/CreateLocalGroupRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/CreateLocalGroupRequest.cs index 1925c70..20714eb 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/CreateLocalGroupRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/CreateLocalGroupRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/CreateProjectRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/CreateProjectRequest.cs index f8c25b9..44f9a62 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/CreateProjectRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/CreateProjectRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/GetLabelsRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/GetLabelsRequest.cs index 4e48742..9552042 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/GetLabelsRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/GetLabelsRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/ImportGroupRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/ImportGroupRequest.cs index 78945fd..d8cd4d5 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/ImportGroupRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/ImportGroupRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/ImportUsersFromCsvRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/ImportUsersFromCsvRequest.cs index 1d21b86..e0bc5c7 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/ImportUsersFromCsvRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/ImportUsersFromCsvRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/PermissionsAddRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/PermissionsAddRequest.cs index 8f5ea85..97aec81 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/PermissionsAddRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/PermissionsAddRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/SignInRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/SignInRequest.cs index 9a62f5e..c7a4917 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/SignInRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/SignInRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/TableauServerRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/TableauServerRequest.cs index 422d26e..7a1f50d 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/TableauServerRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/TableauServerRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateConnectionRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateConnectionRequest.cs index 156cc39..1741908 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateConnectionRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateConnectionRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateDataSourceRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateDataSourceRequest.cs index aa1e159..3649cbc 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateDataSourceRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateDataSourceRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateLabelsRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateLabelsRequest.cs index 6c0b838..6518823 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateLabelsRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateLabelsRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateProjectRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateProjectRequest.cs index 7dd0921..4d5c8f7 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateProjectRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateProjectRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateSiteRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateSiteRequest.cs index c28fcd6..cdfed8c 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateSiteRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateSiteRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateUserRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateUserRequest.cs index ca6e83d..f0bd161 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateUserRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateUserRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateWorkbookRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateWorkbookRequest.cs index 3313056..012e4f4 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateWorkbookRequest.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/UpdateWorkbookRequest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/AddTagsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/AddTagsResponse.cs index df5ddca..2d4ccb9 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/AddTagsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/AddTagsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/AddUserResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/AddUserResponse.cs index efb201b..ab1cf6b 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/AddUserResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/AddUserResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionResponse.cs index af4ae96..cb4dab6 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionsResponse.cs index 765482f..b27393c 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ConnectionsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/CreateGroupResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/CreateGroupResponse.cs index 01dbc05..6e0caea 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/CreateGroupResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/CreateGroupResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/CreateProjectResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/CreateProjectResponse.cs index e3f823a..99061f9 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/CreateProjectResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/CreateProjectResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/CustomViewsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/CustomViewsResponse.cs index d7748ad..e7d45f0 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/CustomViewsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/CustomViewsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourceResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourceResponse.cs index 471662e..a2cc292 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourceResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourceResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourcesResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourcesResponse.cs index daa3bbc..1ae4583 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourcesResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/DataSourcesResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/EmptyTableauServerResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/EmptyTableauServerResponse.cs index cc20672..fb6b837 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/EmptyTableauServerResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/EmptyTableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/FileUploadResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/FileUploadResponse.cs index 06bfc4c..161e367 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/FileUploadResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/FileUploadResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/GroupResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/GroupResponse.cs index cc6f88d..0b4ef11 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/GroupResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/GroupResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/GroupsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/GroupsResponse.cs index cf31bcd..6f905b1 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/GroupsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/GroupsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ImportJobResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ImportJobResponse.cs index 55b5b17..0acaa85 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ImportJobResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ImportJobResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/JobResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/JobResponse.cs index e5b3db2..9e489f3 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/JobResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/JobResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/LabelsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/LabelsResponse.cs index c75c359..6b49c06 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/LabelsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/LabelsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/MetricsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/MetricsResponse.cs index 5f8f958..d669891 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/MetricsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/MetricsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/PagedTableauServerResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/PagedTableauServerResponse.cs index 2df8a9f..45942dd 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/PagedTableauServerResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/PagedTableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/PermissionsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/PermissionsResponse.cs index 18de4f6..2ffabab 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/PermissionsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/PermissionsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ProjectsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ProjectsResponse.cs index 481a1ad..caa9a79 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ProjectsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ProjectsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ServerInfoResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ServerInfoResponse.cs index cec6113..6698d03 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ServerInfoResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ServerInfoResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ServerSessionResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ServerSessionResponse.cs index ac0aeef..3eece7e 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ServerSessionResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ServerSessionResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/SignInResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/SignInResponse.cs index 4937f53..0ddc22c 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/SignInResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/SignInResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/SiteResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/SiteResponse.cs index 1b1679a..714a569 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/SiteResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/SiteResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/SitesResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/SitesResponse.cs index c146a0b..c763273 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/SitesResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/SitesResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerListResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerListResponse.cs index 651cfc8..7a47865 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerListResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerListResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerResponse.cs index ad7aa5c..43c503e 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/TableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateDataSourceResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateDataSourceResponse.cs index 8a279a8..700403a 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateDataSourceResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateDataSourceResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateProjectResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateProjectResponse.cs index bfd0baa..a76aa91 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateProjectResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateProjectResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateUserResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateUserResponse.cs index 7e11b45..cac24a3 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateUserResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateUserResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateWorkbookResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateWorkbookResponse.cs index b191e4d..d9e362f 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateWorkbookResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UpdateWorkbookResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UserResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UserResponse.cs index 2103357..dfe94f2 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UserResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UserResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/UsersResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/UsersResponse.cs index 48c7627..39baee2 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/UsersResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/UsersResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/ViewResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/ViewResponse.cs index c46a85c..04af2fb 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/ViewResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/ViewResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/VirtualConnectionsResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/VirtualConnectionsResponse.cs index 91a0be7..2284e84 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/VirtualConnectionsResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/VirtualConnectionsResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbookResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbookResponse.cs index 2bbf439..2589b41 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbookResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbookResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbooksResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbooksResponse.cs index 8183201..3c1b5b9 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbooksResponse.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/WorkbooksResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilder.cs b/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilder.cs index dedffef..bcad263 100644 --- a/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilder.cs +++ b/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilderPager.cs b/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilderPager.cs index 4920416..4d23939 100644 --- a/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilderPager.cs +++ b/src/Tableau.Migration/Api/Rest/Models/RestProjectBuilderPager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/RestProjectResponsePager.cs b/src/Tableau.Migration/Api/Rest/Models/RestProjectResponsePager.cs index a8eee2c..9800d8e 100644 --- a/src/Tableau.Migration/Api/Rest/Models/RestProjectResponsePager.cs +++ b/src/Tableau.Migration/Api/Rest/Models/RestProjectResponsePager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/SiteRoleMapping.cs b/src/Tableau.Migration/Api/Rest/Models/SiteRoleMapping.cs index 4850bfe..8006414 100644 --- a/src/Tableau.Migration/Api/Rest/Models/SiteRoleMapping.cs +++ b/src/Tableau.Migration/Api/Rest/Models/SiteRoleMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/SiteRoleMappingItem.cs b/src/Tableau.Migration/Api/Rest/Models/SiteRoleMappingItem.cs index 05a7823..72fb9e7 100644 --- a/src/Tableau.Migration/Api/Rest/Models/SiteRoleMappingItem.cs +++ b/src/Tableau.Migration/Api/Rest/Models/SiteRoleMappingItem.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/SiteRoles.cs b/src/Tableau.Migration/Api/Rest/Models/SiteRoles.cs index 1d4285e..f19cc85 100644 --- a/src/Tableau.Migration/Api/Rest/Models/SiteRoles.cs +++ b/src/Tableau.Migration/Api/Rest/Models/SiteRoles.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/AuthenticationTypes.cs b/src/Tableau.Migration/Api/Rest/Models/Types/AuthenticationTypes.cs index d5086db..c6bda1d 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/AuthenticationTypes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/AuthenticationTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/CapabilityType.cs b/src/Tableau.Migration/Api/Rest/Models/Types/CapabilityType.cs index 09f4f78..1777560 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/CapabilityType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/CapabilityType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/DataSourceFileTypes.cs b/src/Tableau.Migration/Api/Rest/Models/Types/DataSourceFileTypes.cs index cec2630..ffd66f0 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/DataSourceFileTypes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/DataSourceFileTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/GranteeCapabilityType.cs b/src/Tableau.Migration/Api/Rest/Models/Types/GranteeCapabilityType.cs index 20b63a4..a8a9a0f 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/GranteeCapabilityType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/GranteeCapabilityType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/ParentContentType.cs b/src/Tableau.Migration/Api/Rest/Models/Types/ParentContentType.cs index 74e549d..095634c 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/ParentContentType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/ParentContentType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsContentItemType.cs b/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsContentItemType.cs index 2c0abbe..465b587 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsContentItemType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsContentItemType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsType.cs b/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsType.cs index e9c11d0..aa3e027 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsType.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/PermissionsType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/WorkbookFileTypes.cs b/src/Tableau.Migration/Api/Rest/Models/Types/WorkbookFileTypes.cs index 0956f0f..a338f8c 100644 --- a/src/Tableau.Migration/Api/Rest/Models/Types/WorkbookFileTypes.cs +++ b/src/Tableau.Migration/Api/Rest/Models/Types/WorkbookFileTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/PermissionsUriBuilder.cs b/src/Tableau.Migration/Api/Rest/PermissionsUriBuilder.cs index 2bb1951..b243b8e 100644 --- a/src/Tableau.Migration/Api/Rest/PermissionsUriBuilder.cs +++ b/src/Tableau.Migration/Api/Rest/PermissionsUriBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Rest/TagsUriBuilder.cs b/src/Tableau.Migration/Api/Rest/TagsUriBuilder.cs index ffbaabc..c03aab8 100644 --- a/src/Tableau.Migration/Api/Rest/TagsUriBuilder.cs +++ b/src/Tableau.Migration/Api/Rest/TagsUriBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ScopedApiClientFactory.cs b/src/Tableau.Migration/Api/ScopedApiClientFactory.cs index ca839ec..9f40ed4 100644 --- a/src/Tableau.Migration/Api/ScopedApiClientFactory.cs +++ b/src/Tableau.Migration/Api/ScopedApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Search/ApiContentReferenceFinderFactory.cs b/src/Tableau.Migration/Api/Search/ApiContentReferenceFinderFactory.cs index d0e5722..86a0fb5 100644 --- a/src/Tableau.Migration/Api/Search/ApiContentReferenceFinderFactory.cs +++ b/src/Tableau.Migration/Api/Search/ApiContentReferenceFinderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Search/BulkApiContentReferenceCache.cs b/src/Tableau.Migration/Api/Search/BulkApiContentReferenceCache.cs index c87076c..4393e56 100644 --- a/src/Tableau.Migration/Api/Search/BulkApiContentReferenceCache.cs +++ b/src/Tableau.Migration/Api/Search/BulkApiContentReferenceCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ServerSessionProvider.cs b/src/Tableau.Migration/Api/ServerSessionProvider.cs index 2199d88..dc2a90c 100644 --- a/src/Tableau.Migration/Api/ServerSessionProvider.cs +++ b/src/Tableau.Migration/Api/ServerSessionProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorCollection.cs b/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorCollection.cs index 605c9a0..80ac4f6 100644 --- a/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorCollection.cs +++ b/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorFactory.cs b/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorFactory.cs index 1e90e4c..d177af4 100644 --- a/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorFactory.cs +++ b/src/Tableau.Migration/Api/Simulation/ITableauApiSimulatorFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/AuthRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/AuthRestApiSimulator.cs index 8b6702c..95afe45 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/AuthRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/AuthRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/DataSourcesRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/DataSourcesRestApiSimulator.cs index 162a66b..b977c58 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/DataSourcesRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/DataSourcesRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/FileUploadsRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/FileUploadsRestApiSimulator.cs index 427a7c4..a994ed2 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/FileUploadsRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/FileUploadsRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/GroupsRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/GroupsRestApiSimulator.cs index 34839c6..66e1e9e 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/GroupsRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/GroupsRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/JobsRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/JobsRestApiSimulator.cs index b773786..96a42ad 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/JobsRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/JobsRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/PermissionsRestApiSimulatorBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/PermissionsRestApiSimulatorBase.cs index 88a9296..8eeb532 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/PermissionsRestApiSimulatorBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/PermissionsRestApiSimulatorBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/ProjectsRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/ProjectsRestApiSimulator.cs index 0dbe650..56f1f5d 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/ProjectsRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/ProjectsRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/SitesRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/SitesRestApiSimulator.cs index 78b2ca7..893436d 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/SitesRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/SitesRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/TagsRestApiSimulatorBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/TagsRestApiSimulatorBase.cs index e3a14ec..6a5a62b 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/TagsRestApiSimulatorBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/TagsRestApiSimulatorBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/UsersRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/UsersRestApiSimulator.cs index 8f0f504..a246094 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/UsersRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/UsersRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/ViewsRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/ViewsRestApiSimulator.cs index 4367512..e35dfbe 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/ViewsRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/ViewsRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Api/WorkbooksRestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/Api/WorkbooksRestApiSimulator.cs index 76d51ee..686873d 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Api/WorkbooksRestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Api/WorkbooksRestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/MethodSimulatorExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/MethodSimulatorExtensions.cs index b341e28..eee6896 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/MethodSimulatorExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/MethodSimulatorExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/HttpStatusCodeExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/HttpStatusCodeExtensions.cs index 1c96eb9..530f49f 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/HttpStatusCodeExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/HttpStatusCodeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/FilterExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/FilterExtensions.cs index 0d3b370..9aca112 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/FilterExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/FilterExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/HttpRequestMessageExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/HttpRequestMessageExtensions.cs index dfc4696..9994a1a 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/HttpRequestMessageExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/HttpRequestMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestApiRequestMatcher.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestApiRequestMatcher.cs index dff6591..a74411c 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestApiRequestMatcher.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestApiRequestMatcher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestUrlPatterns.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestUrlPatterns.cs index 6f6dc12..7b5a243 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestUrlPatterns.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/RestUrlPatterns.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/UriExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/UriExtensions.cs index f790786..9ebab95 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/UriExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Requests/UriExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/ResponseSimulatorExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/ResponseSimulatorExtensions.cs index a0209d7..176f4ba 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/ResponseSimulatorExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/ResponseSimulatorExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/BuildResponseException.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/BuildResponseException.cs index 84303f8..5180a23 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/BuildResponseException.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/BuildResponseException.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/EmptyRestResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/EmptyRestResponseBuilder.cs index 9abfd1f..bf42578 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/EmptyRestResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/EmptyRestResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IEntityResponsePager.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IEntityResponsePager.cs index f5a419f..827fd94 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IEntityResponsePager.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IEntityResponsePager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilder.cs index 8fa21f4..89a4eff 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilderExtensions.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilderExtensions.cs index c510233..0831506 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilderExtensions.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestApiResponseBuilderExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestErrorBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestErrorBuilder.cs index bba7a9f..7c079cd 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestErrorBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/IRestErrorBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestApiResponseBuilderBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestApiResponseBuilderBase.cs index 72df7db..798577a 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestApiResponseBuilderBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestApiResponseBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitDataSourceUploadResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitDataSourceUploadResponseBuilder.cs index 6c0c515..6d65eb7 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitDataSourceUploadResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitDataSourceUploadResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitUploadResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitUploadResponseBuilder.cs index cf8a016..7bd01cb 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitUploadResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitUploadResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitWorkbookUploadResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitWorkbookUploadResponseBuilder.cs index abdfc25..2479b70 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitWorkbookUploadResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestCommitWorkbookUploadResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDefaultPermissionsCreateResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDefaultPermissionsCreateResponseBuilder.cs index a46e882..2e7bea2 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDefaultPermissionsCreateResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDefaultPermissionsCreateResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteByIdResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteByIdResponseBuilder.cs index 0c69350..834e825 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteByIdResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteByIdResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteResponseBuilder.cs index d79751c..f64db5b 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDeleteResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDownloadFileByIdResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDownloadFileByIdResponseBuilder.cs index 37da530..e97e4b1 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDownloadFileByIdResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestDownloadFileByIdResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityIdResponseBuilderBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityIdResponseBuilderBase.cs index 45a37a0..8a43aa1 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityIdResponseBuilderBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityIdResponseBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityListResponseBuilderBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityListResponseBuilderBase.cs index 9e1fbb3..97a8038 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityListResponseBuilderBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityListResponseBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityResponsePager.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityResponsePager.cs index b0c02c4..efbeaf1 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityResponsePager.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestEntityResponsePager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByContentUrlResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByContentUrlResponseBuilder.cs index a49fbb8..842ac56 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByContentUrlResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByContentUrlResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilder.cs index 76efea0..4f21518 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGroupAddResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGroupAddResponseBuilder.cs index 63c15e9..64ba02c 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGroupAddResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestGroupAddResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestInitiateFileUploadResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestInitiateFileUploadResponseBuilder.cs index b5250d2..d6a11d5 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestInitiateFileUploadResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestInitiateFileUploadResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestListResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestListResponseBuilder.cs index 16b17ff..70fdcdc 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestListResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestListResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilder.cs index 82370c7..3b1782b 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilder.cs index 58e46fa..27a0bb5 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsGetResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsGetResponseBuilder.cs index a5175ff..7f9f5ff 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsGetResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPermissionsGetResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilder.cs index 17340b4..e7c6a4a 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestProjectCreateResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestProjectCreateResponseBuilder.cs index 7ae7770..23cfab8 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestProjectCreateResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestProjectCreateResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPutByIdResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPutByIdResponseBuilder.cs index 408650f..488d883 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPutByIdResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestPutByIdResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSearchEntityResponseBuilderBase.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSearchEntityResponseBuilderBase.cs index 92f3a21..9a4ea34 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSearchEntityResponseBuilderBase.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSearchEntityResponseBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSingleEntityResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSingleEntityResponseBuilder.cs index 4bfd056..bb6e544 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSingleEntityResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestSingleEntityResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateConnectionResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateConnectionResponseBuilder.cs index 03149f5..97a7bca 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateConnectionResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateConnectionResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateFileUploadResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateFileUploadResponseBuilder.cs index 2447bb6..0783b2a 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateFileUploadResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUpdateFileUploadResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddResponseBuilder.cs index abcbff1..f831aa3 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddToGroupResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddToGroupResponseBuilder.cs index 096e89e..a466f80 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddToGroupResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserAddToGroupResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserImportResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserImportResponseBuilder.cs index 71132f6..7304537 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserImportResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserImportResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserUpdateResponseBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserUpdateResponseBuilder.cs index 451f8ff..a00368f 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserUpdateResponseBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/RestUserUpdateResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/StaticRestErrorBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/StaticRestErrorBuilder.cs index ff4eddd..ea84a6d 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/StaticRestErrorBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/StaticRestErrorBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/UnauthorizedRestErrorBuilder.cs b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/UnauthorizedRestErrorBuilder.cs index 3f6d266..1e6220d 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/UnauthorizedRestErrorBuilder.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/Net/Responses/UnauthorizedRestErrorBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/Rest/RestApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/Rest/RestApiSimulator.cs index ac472ff..189643c 100644 --- a/src/Tableau.Migration/Api/Simulation/Rest/RestApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/Rest/RestApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/SimulatedConnection.cs b/src/Tableau.Migration/Api/Simulation/SimulatedConnection.cs index b4cb814..3d9fcff 100644 --- a/src/Tableau.Migration/Api/Simulation/SimulatedConnection.cs +++ b/src/Tableau.Migration/Api/Simulation/SimulatedConnection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/SimulatedConnectionCredentials.cs b/src/Tableau.Migration/Api/Simulation/SimulatedConnectionCredentials.cs index 00eba50..edf08c7 100644 --- a/src/Tableau.Migration/Api/Simulation/SimulatedConnectionCredentials.cs +++ b/src/Tableau.Migration/Api/Simulation/SimulatedConnectionCredentials.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/SimulatedDataSourceData.cs b/src/Tableau.Migration/Api/Simulation/SimulatedDataSourceData.cs index d4cf038..c0c751e 100644 --- a/src/Tableau.Migration/Api/Simulation/SimulatedDataSourceData.cs +++ b/src/Tableau.Migration/Api/Simulation/SimulatedDataSourceData.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/SimulatedDataWithConnections.cs b/src/Tableau.Migration/Api/Simulation/SimulatedDataWithConnections.cs index 7307634..95f2ac0 100644 --- a/src/Tableau.Migration/Api/Simulation/SimulatedDataWithConnections.cs +++ b/src/Tableau.Migration/Api/Simulation/SimulatedDataWithConnections.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/SimulatedWorkbookData.cs b/src/Tableau.Migration/Api/Simulation/SimulatedWorkbookData.cs index e31a97a..4b33d72 100644 --- a/src/Tableau.Migration/Api/Simulation/SimulatedWorkbookData.cs +++ b/src/Tableau.Migration/Api/Simulation/SimulatedWorkbookData.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulator.cs b/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulator.cs index d768e4b..789f4c2 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulatorProvider.cs b/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulatorProvider.cs index a82f87f..5d51614 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulatorProvider.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauApiResponseSimulatorProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauApiSimulator.cs b/src/Tableau.Migration/Api/Simulation/TableauApiSimulator.cs index 20c6a3e..d7d0b60 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauApiSimulator.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauApiSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorCollection.cs b/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorCollection.cs index 2c8e5f9..faa2c9f 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorCollection.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorFactory.cs b/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorFactory.cs index a9f38a4..d94fca2 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorFactory.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauApiSimulatorFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Simulation/TableauData.cs b/src/Tableau.Migration/Api/Simulation/TableauData.cs index ab985b7..fbc07ed 100644 --- a/src/Tableau.Migration/Api/Simulation/TableauData.cs +++ b/src/Tableau.Migration/Api/Simulation/TableauData.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/TableauServerVersion.cs b/src/Tableau.Migration/Api/TableauServerVersion.cs index b4dca85..eb7eb29 100644 --- a/src/Tableau.Migration/Api/TableauServerVersion.cs +++ b/src/Tableau.Migration/Api/TableauServerVersion.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/TableauServerVersionProvider.cs b/src/Tableau.Migration/Api/TableauServerVersionProvider.cs index f0aae3e..5fbf69d 100644 --- a/src/Tableau.Migration/Api/TableauServerVersionProvider.cs +++ b/src/Tableau.Migration/Api/TableauServerVersionProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/TableauSiteConnectionConfiguration.cs b/src/Tableau.Migration/Api/TableauSiteConnectionConfiguration.cs index 6b730ba..4946316 100644 --- a/src/Tableau.Migration/Api/TableauSiteConnectionConfiguration.cs +++ b/src/Tableau.Migration/Api/TableauSiteConnectionConfiguration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Tags/ITagsApiClient.cs b/src/Tableau.Migration/Api/Tags/ITagsApiClient.cs index e67a704..99e7402 100644 --- a/src/Tableau.Migration/Api/Tags/ITagsApiClient.cs +++ b/src/Tableau.Migration/Api/Tags/ITagsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Tags/ITagsApiClientFactory.cs b/src/Tableau.Migration/Api/Tags/ITagsApiClientFactory.cs index 49a0c08..bb86803 100644 --- a/src/Tableau.Migration/Api/Tags/ITagsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Tags/ITagsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Tags/ITagsContentApiClient.cs b/src/Tableau.Migration/Api/Tags/ITagsContentApiClient.cs index c673779..90cbdfc 100644 --- a/src/Tableau.Migration/Api/Tags/ITagsContentApiClient.cs +++ b/src/Tableau.Migration/Api/Tags/ITagsContentApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Tags/TagsApiClient.cs b/src/Tableau.Migration/Api/Tags/TagsApiClient.cs index 479bec0..63c28f4 100644 --- a/src/Tableau.Migration/Api/Tags/TagsApiClient.cs +++ b/src/Tableau.Migration/Api/Tags/TagsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/Tags/TagsApiClientFactory.cs b/src/Tableau.Migration/Api/Tags/TagsApiClientFactory.cs index 608488f..852f75b 100644 --- a/src/Tableau.Migration/Api/Tags/TagsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/Tags/TagsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/UsersApiClient.cs b/src/Tableau.Migration/Api/UsersApiClient.cs index 88d4cb8..17ab3d4 100644 --- a/src/Tableau.Migration/Api/UsersApiClient.cs +++ b/src/Tableau.Migration/Api/UsersApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/UsersResponseExtensions.cs b/src/Tableau.Migration/Api/UsersResponseExtensions.cs index 11356f8..75db1da 100644 --- a/src/Tableau.Migration/Api/UsersResponseExtensions.cs +++ b/src/Tableau.Migration/Api/UsersResponseExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ViewsApiClient.cs b/src/Tableau.Migration/Api/ViewsApiClient.cs index 5a7f42d..9ad69b6 100644 --- a/src/Tableau.Migration/Api/ViewsApiClient.cs +++ b/src/Tableau.Migration/Api/ViewsApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/ViewsApiClientFactory.cs b/src/Tableau.Migration/Api/ViewsApiClientFactory.cs index 332c7ce..3c83f2a 100644 --- a/src/Tableau.Migration/Api/ViewsApiClientFactory.cs +++ b/src/Tableau.Migration/Api/ViewsApiClientFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Api/WorkbooksApiClient.cs b/src/Tableau.Migration/Api/WorkbooksApiClient.cs index e5c2bcf..032013d 100644 --- a/src/Tableau.Migration/Api/WorkbooksApiClient.cs +++ b/src/Tableau.Migration/Api/WorkbooksApiClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/AsyncDisposableResult.cs b/src/Tableau.Migration/AsyncDisposableResult.cs index 0dc2616..7388e97 100644 --- a/src/Tableau.Migration/AsyncDisposableResult.cs +++ b/src/Tableau.Migration/AsyncDisposableResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ComparerBase.cs b/src/Tableau.Migration/ComparerBase.cs index 4e72d36..38e6f24 100644 --- a/src/Tableau.Migration/ComparerBase.cs +++ b/src/Tableau.Migration/ComparerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ConcurrentDictionaryExtensions.cs b/src/Tableau.Migration/ConcurrentDictionaryExtensions.cs index 68c1d6f..487ffb1 100644 --- a/src/Tableau.Migration/ConcurrentDictionaryExtensions.cs +++ b/src/Tableau.Migration/ConcurrentDictionaryExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/ConfigReader.cs b/src/Tableau.Migration/Config/ConfigReader.cs index 40706c3..1d99a19 100644 --- a/src/Tableau.Migration/Config/ConfigReader.cs +++ b/src/Tableau.Migration/Config/ConfigReader.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/ContentTypesOptions.cs b/src/Tableau.Migration/Config/ContentTypesOptions.cs index 46f8598..a987773 100644 --- a/src/Tableau.Migration/Config/ContentTypesOptions.cs +++ b/src/Tableau.Migration/Config/ContentTypesOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/DefaultPermissionsContentTypeOptions.cs b/src/Tableau.Migration/Config/DefaultPermissionsContentTypeOptions.cs index fc6e5ed..f093cac 100644 --- a/src/Tableau.Migration/Config/DefaultPermissionsContentTypeOptions.cs +++ b/src/Tableau.Migration/Config/DefaultPermissionsContentTypeOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/FileOptions.cs b/src/Tableau.Migration/Config/FileOptions.cs index 1346eec..d06eefd 100644 --- a/src/Tableau.Migration/Config/FileOptions.cs +++ b/src/Tableau.Migration/Config/FileOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/IConfigReader.cs b/src/Tableau.Migration/Config/IConfigReader.cs index 1ebbb27..b4363e6 100644 --- a/src/Tableau.Migration/Config/IConfigReader.cs +++ b/src/Tableau.Migration/Config/IConfigReader.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/JobOptions.cs b/src/Tableau.Migration/Config/JobOptions.cs index 254f3d6..64c8f7b 100644 --- a/src/Tableau.Migration/Config/JobOptions.cs +++ b/src/Tableau.Migration/Config/JobOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/MigrationSDKOptions.cs b/src/Tableau.Migration/Config/MigrationSDKOptions.cs index 19fe4d0..4a38181 100644 --- a/src/Tableau.Migration/Config/MigrationSDKOptions.cs +++ b/src/Tableau.Migration/Config/MigrationSDKOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/NetworkOptions.cs b/src/Tableau.Migration/Config/NetworkOptions.cs index f600324..e67d125 100644 --- a/src/Tableau.Migration/Config/NetworkOptions.cs +++ b/src/Tableau.Migration/Config/NetworkOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/PreflightOptions.cs b/src/Tableau.Migration/Config/PreflightOptions.cs index 732fcb8..1b1e2f2 100644 --- a/src/Tableau.Migration/Config/PreflightOptions.cs +++ b/src/Tableau.Migration/Config/PreflightOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Config/ResilienceOptions.cs b/src/Tableau.Migration/Config/ResilienceOptions.cs index 7ae56dc..a2ebbe3 100644 --- a/src/Tableau.Migration/Config/ResilienceOptions.cs +++ b/src/Tableau.Migration/Config/ResilienceOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Constants.cs b/src/Tableau.Migration/Constants.cs index da556ae..8fb83f2 100644 --- a/src/Tableau.Migration/Constants.cs +++ b/src/Tableau.Migration/Constants.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ConcurrentSet.cs b/src/Tableau.Migration/Content/ConcurrentSet.cs index 7551f57..7316937 100644 --- a/src/Tableau.Migration/Content/ConcurrentSet.cs +++ b/src/Tableau.Migration/Content/ConcurrentSet.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Connection.cs b/src/Tableau.Migration/Content/Connection.cs index 8f9aa37..7663c62 100644 --- a/src/Tableau.Migration/Content/Connection.cs +++ b/src/Tableau.Migration/Content/Connection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ContainerContentBase.cs b/src/Tableau.Migration/Content/ContainerContentBase.cs index 085c9a4..f3023b8 100644 --- a/src/Tableau.Migration/Content/ContainerContentBase.cs +++ b/src/Tableau.Migration/Content/ContainerContentBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ContentBase.cs b/src/Tableau.Migration/Content/ContentBase.cs index b329d2f..2fd776e 100644 --- a/src/Tableau.Migration/Content/ContentBase.cs +++ b/src/Tableau.Migration/Content/ContentBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ContentLocationComparer.cs b/src/Tableau.Migration/Content/ContentLocationComparer.cs index ed0e1ad..5ebcf4c 100644 --- a/src/Tableau.Migration/Content/ContentLocationComparer.cs +++ b/src/Tableau.Migration/Content/ContentLocationComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ContentReferenceStub.cs b/src/Tableau.Migration/Content/ContentReferenceStub.cs index d756e03..67fec4a 100644 --- a/src/Tableau.Migration/Content/ContentReferenceStub.cs +++ b/src/Tableau.Migration/Content/ContentReferenceStub.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/DataSource.cs b/src/Tableau.Migration/Content/DataSource.cs index fa86398..ed620ea 100644 --- a/src/Tableau.Migration/Content/DataSource.cs +++ b/src/Tableau.Migration/Content/DataSource.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/DataSourceDetails.cs b/src/Tableau.Migration/Content/DataSourceDetails.cs index d057156..a198cb6 100644 --- a/src/Tableau.Migration/Content/DataSourceDetails.cs +++ b/src/Tableau.Migration/Content/DataSourceDetails.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/Aes256EncryptionFactory.cs b/src/Tableau.Migration/Content/Files/Aes256EncryptionFactory.cs index 4ec2c6f..7f6cde0 100644 --- a/src/Tableau.Migration/Content/Files/Aes256EncryptionFactory.cs +++ b/src/Tableau.Migration/Content/Files/Aes256EncryptionFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/ContentFileHandle.cs b/src/Tableau.Migration/Content/Files/ContentFileHandle.cs index 8ad53c2..6edd5a6 100644 --- a/src/Tableau.Migration/Content/Files/ContentFileHandle.cs +++ b/src/Tableau.Migration/Content/Files/ContentFileHandle.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/ContentFileStream.cs b/src/Tableau.Migration/Content/Files/ContentFileStream.cs index ef60616..521b84b 100644 --- a/src/Tableau.Migration/Content/Files/ContentFileStream.cs +++ b/src/Tableau.Migration/Content/Files/ContentFileStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/DirectoryContentFileStore.cs b/src/Tableau.Migration/Content/Files/DirectoryContentFileStore.cs index 25bc92f..e342b06 100644 --- a/src/Tableau.Migration/Content/Files/DirectoryContentFileStore.cs +++ b/src/Tableau.Migration/Content/Files/DirectoryContentFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/EncryptedFileHandle.cs b/src/Tableau.Migration/Content/Files/EncryptedFileHandle.cs index a5638c7..dc54353 100644 --- a/src/Tableau.Migration/Content/Files/EncryptedFileHandle.cs +++ b/src/Tableau.Migration/Content/Files/EncryptedFileHandle.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/EncryptedFileStore.cs b/src/Tableau.Migration/Content/Files/EncryptedFileStore.cs index bb3142f..ac85050 100644 --- a/src/Tableau.Migration/Content/Files/EncryptedFileStore.cs +++ b/src/Tableau.Migration/Content/Files/EncryptedFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/EncryptedFileStream.cs b/src/Tableau.Migration/Content/Files/EncryptedFileStream.cs index e07ea2f..6122fdc 100644 --- a/src/Tableau.Migration/Content/Files/EncryptedFileStream.cs +++ b/src/Tableau.Migration/Content/Files/EncryptedFileStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/IContentFileHandle.cs b/src/Tableau.Migration/Content/Files/IContentFileHandle.cs index 7d6bbbb..90362e9 100644 --- a/src/Tableau.Migration/Content/Files/IContentFileHandle.cs +++ b/src/Tableau.Migration/Content/Files/IContentFileHandle.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/IContentFileHandleExtensions.cs b/src/Tableau.Migration/Content/Files/IContentFileHandleExtensions.cs index b6f1b59..f30e546 100644 --- a/src/Tableau.Migration/Content/Files/IContentFileHandleExtensions.cs +++ b/src/Tableau.Migration/Content/Files/IContentFileHandleExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/IContentFilePathResolver.cs b/src/Tableau.Migration/Content/Files/IContentFilePathResolver.cs index fc7752c..07f9deb 100644 --- a/src/Tableau.Migration/Content/Files/IContentFilePathResolver.cs +++ b/src/Tableau.Migration/Content/Files/IContentFilePathResolver.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/IContentFileStore.cs b/src/Tableau.Migration/Content/Files/IContentFileStore.cs index 52e8c40..1564132 100644 --- a/src/Tableau.Migration/Content/Files/IContentFileStore.cs +++ b/src/Tableau.Migration/Content/Files/IContentFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/IContentFileStream.cs b/src/Tableau.Migration/Content/Files/IContentFileStream.cs index 1670326..3b8d3d5 100644 --- a/src/Tableau.Migration/Content/Files/IContentFileStream.cs +++ b/src/Tableau.Migration/Content/Files/IContentFileStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/ISymmetricEncryptionFactory.cs b/src/Tableau.Migration/Content/Files/ISymmetricEncryptionFactory.cs index 37b530c..f39b9be 100644 --- a/src/Tableau.Migration/Content/Files/ISymmetricEncryptionFactory.cs +++ b/src/Tableau.Migration/Content/Files/ISymmetricEncryptionFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/ITableauFileEditor.cs b/src/Tableau.Migration/Content/Files/ITableauFileEditor.cs index 1f67aa8..c18b877 100644 --- a/src/Tableau.Migration/Content/Files/ITableauFileEditor.cs +++ b/src/Tableau.Migration/Content/Files/ITableauFileEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/ITableauFileXmlStream.cs b/src/Tableau.Migration/Content/Files/ITableauFileXmlStream.cs index d018aba..9c391e1 100644 --- a/src/Tableau.Migration/Content/Files/ITableauFileXmlStream.cs +++ b/src/Tableau.Migration/Content/Files/ITableauFileXmlStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/SeekableCryptoStream.cs b/src/Tableau.Migration/Content/Files/SeekableCryptoStream.cs index 4c8017d..89858f2 100644 --- a/src/Tableau.Migration/Content/Files/SeekableCryptoStream.cs +++ b/src/Tableau.Migration/Content/Files/SeekableCryptoStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/StreamExtensions.cs b/src/Tableau.Migration/Content/Files/StreamExtensions.cs index b588c39..63f288a 100644 --- a/src/Tableau.Migration/Content/Files/StreamExtensions.cs +++ b/src/Tableau.Migration/Content/Files/StreamExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/TableauFileEditor.cs b/src/Tableau.Migration/Content/Files/TableauFileEditor.cs index 51cb209..79340fd 100644 --- a/src/Tableau.Migration/Content/Files/TableauFileEditor.cs +++ b/src/Tableau.Migration/Content/Files/TableauFileEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/TableauFileXmlStream.cs b/src/Tableau.Migration/Content/Files/TableauFileXmlStream.cs index c69bebb..ea72bce 100644 --- a/src/Tableau.Migration/Content/Files/TableauFileXmlStream.cs +++ b/src/Tableau.Migration/Content/Files/TableauFileXmlStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/TemporaryDirectoryContentFileStore.cs b/src/Tableau.Migration/Content/Files/TemporaryDirectoryContentFileStore.cs index 1e707d5..8c236fb 100644 --- a/src/Tableau.Migration/Content/Files/TemporaryDirectoryContentFileStore.cs +++ b/src/Tableau.Migration/Content/Files/TemporaryDirectoryContentFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/Xml/XContainerExtensions.cs b/src/Tableau.Migration/Content/Files/Xml/XContainerExtensions.cs index be45078..a3ea382 100644 --- a/src/Tableau.Migration/Content/Files/Xml/XContainerExtensions.cs +++ b/src/Tableau.Migration/Content/Files/Xml/XContainerExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/Xml/XElementExtensions.cs b/src/Tableau.Migration/Content/Files/Xml/XElementExtensions.cs index 850e713..338f7dc 100644 --- a/src/Tableau.Migration/Content/Files/Xml/XElementExtensions.cs +++ b/src/Tableau.Migration/Content/Files/Xml/XElementExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/Xml/XFeatureFlagName.cs b/src/Tableau.Migration/Content/Files/Xml/XFeatureFlagName.cs index c19b99c..95c0a16 100644 --- a/src/Tableau.Migration/Content/Files/Xml/XFeatureFlagName.cs +++ b/src/Tableau.Migration/Content/Files/Xml/XFeatureFlagName.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Files/Xml/XNameExtensions.cs b/src/Tableau.Migration/Content/Files/Xml/XNameExtensions.cs index 35e75dc..a1a96bc 100644 --- a/src/Tableau.Migration/Content/Files/Xml/XNameExtensions.cs +++ b/src/Tableau.Migration/Content/Files/Xml/XNameExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Group.cs b/src/Tableau.Migration/Content/Group.cs index a79e67b..c91fb62 100644 --- a/src/Tableau.Migration/Content/Group.cs +++ b/src/Tableau.Migration/Content/Group.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/GroupUser.cs b/src/Tableau.Migration/Content/GroupUser.cs index 66642c2..b53048b 100644 --- a/src/Tableau.Migration/Content/GroupUser.cs +++ b/src/Tableau.Migration/Content/GroupUser.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IChildPermissionsContent.cs b/src/Tableau.Migration/Content/IChildPermissionsContent.cs index fd4e2d0..e3e70d0 100644 --- a/src/Tableau.Migration/Content/IChildPermissionsContent.cs +++ b/src/Tableau.Migration/Content/IChildPermissionsContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IConnection.cs b/src/Tableau.Migration/Content/IConnection.cs index 8e5e196..300bef1 100644 --- a/src/Tableau.Migration/Content/IConnection.cs +++ b/src/Tableau.Migration/Content/IConnection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IConnectionsContent.cs b/src/Tableau.Migration/Content/IConnectionsContent.cs index adc0765..260cd23 100644 --- a/src/Tableau.Migration/Content/IConnectionsContent.cs +++ b/src/Tableau.Migration/Content/IConnectionsContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IContainerContent.cs b/src/Tableau.Migration/Content/IContainerContent.cs index e44e198..a60cf64 100644 --- a/src/Tableau.Migration/Content/IContainerContent.cs +++ b/src/Tableau.Migration/Content/IContainerContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IDataSource.cs b/src/Tableau.Migration/Content/IDataSource.cs index 8380e22..7576c18 100644 --- a/src/Tableau.Migration/Content/IDataSource.cs +++ b/src/Tableau.Migration/Content/IDataSource.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IDataSourceDetails.cs b/src/Tableau.Migration/Content/IDataSourceDetails.cs index 368247a..9e231c5 100644 --- a/src/Tableau.Migration/Content/IDataSourceDetails.cs +++ b/src/Tableau.Migration/Content/IDataSourceDetails.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IDescriptionContent.cs b/src/Tableau.Migration/Content/IDescriptionContent.cs index b9fbf2c..77b9b3d 100644 --- a/src/Tableau.Migration/Content/IDescriptionContent.cs +++ b/src/Tableau.Migration/Content/IDescriptionContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IExtractContent.cs b/src/Tableau.Migration/Content/IExtractContent.cs index ba354bc..8813f50 100644 --- a/src/Tableau.Migration/Content/IExtractContent.cs +++ b/src/Tableau.Migration/Content/IExtractContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IFileContent.cs b/src/Tableau.Migration/Content/IFileContent.cs index b9ccf56..e65f667 100644 --- a/src/Tableau.Migration/Content/IFileContent.cs +++ b/src/Tableau.Migration/Content/IFileContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IGroup.cs b/src/Tableau.Migration/Content/IGroup.cs index 983f93d..2ce5f20 100644 --- a/src/Tableau.Migration/Content/IGroup.cs +++ b/src/Tableau.Migration/Content/IGroup.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IGroupUser.cs b/src/Tableau.Migration/Content/IGroupUser.cs index 1dd3e64..ecdbb05 100644 --- a/src/Tableau.Migration/Content/IGroupUser.cs +++ b/src/Tableau.Migration/Content/IGroupUser.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ILabel.cs b/src/Tableau.Migration/Content/ILabel.cs index ac0fcce..4bd8aa5 100644 --- a/src/Tableau.Migration/Content/ILabel.cs +++ b/src/Tableau.Migration/Content/ILabel.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IMappableContainerContent.cs b/src/Tableau.Migration/Content/IMappableContainerContent.cs index 87b532a..5fb2d9d 100644 --- a/src/Tableau.Migration/Content/IMappableContainerContent.cs +++ b/src/Tableau.Migration/Content/IMappableContainerContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IMappableContent.cs b/src/Tableau.Migration/Content/IMappableContent.cs index 40cfa98..c4a4601 100644 --- a/src/Tableau.Migration/Content/IMappableContent.cs +++ b/src/Tableau.Migration/Content/IMappableContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IPermissionsContent.cs b/src/Tableau.Migration/Content/IPermissionsContent.cs index d20db70..e5fdab4 100644 --- a/src/Tableau.Migration/Content/IPermissionsContent.cs +++ b/src/Tableau.Migration/Content/IPermissionsContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IProject.cs b/src/Tableau.Migration/Content/IProject.cs index 19d0402..d871b3f 100644 --- a/src/Tableau.Migration/Content/IProject.cs +++ b/src/Tableau.Migration/Content/IProject.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IPublishableDataSource.cs b/src/Tableau.Migration/Content/IPublishableDataSource.cs index 64c870a..06eb4c7 100644 --- a/src/Tableau.Migration/Content/IPublishableDataSource.cs +++ b/src/Tableau.Migration/Content/IPublishableDataSource.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IPublishableGroup.cs b/src/Tableau.Migration/Content/IPublishableGroup.cs index f292da9..68f0c1a 100644 --- a/src/Tableau.Migration/Content/IPublishableGroup.cs +++ b/src/Tableau.Migration/Content/IPublishableGroup.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IPublishableWorkbook.cs b/src/Tableau.Migration/Content/IPublishableWorkbook.cs index 297a7f0..f6bcf95 100644 --- a/src/Tableau.Migration/Content/IPublishableWorkbook.cs +++ b/src/Tableau.Migration/Content/IPublishableWorkbook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IPublishedContent.cs b/src/Tableau.Migration/Content/IPublishedContent.cs index f0c410d..78d4cb8 100644 --- a/src/Tableau.Migration/Content/IPublishedContent.cs +++ b/src/Tableau.Migration/Content/IPublishedContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IRequiresLabelUpdate.cs b/src/Tableau.Migration/Content/IRequiresLabelUpdate.cs index c0ff582..8365840 100644 --- a/src/Tableau.Migration/Content/IRequiresLabelUpdate.cs +++ b/src/Tableau.Migration/Content/IRequiresLabelUpdate.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IRequiresOwnerUpdate.cs b/src/Tableau.Migration/Content/IRequiresOwnerUpdate.cs index d4a0477..42063e6 100644 --- a/src/Tableau.Migration/Content/IRequiresOwnerUpdate.cs +++ b/src/Tableau.Migration/Content/IRequiresOwnerUpdate.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IServerSession.cs b/src/Tableau.Migration/Content/IServerSession.cs index 6f653ea..4336b56 100644 --- a/src/Tableau.Migration/Content/IServerSession.cs +++ b/src/Tableau.Migration/Content/IServerSession.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ISite.cs b/src/Tableau.Migration/Content/ISite.cs index 7e83dba..56bdad4 100644 --- a/src/Tableau.Migration/Content/ISite.cs +++ b/src/Tableau.Migration/Content/ISite.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ISiteSettings.cs b/src/Tableau.Migration/Content/ISiteSettings.cs index cd3ab43..b12b6b3 100644 --- a/src/Tableau.Migration/Content/ISiteSettings.cs +++ b/src/Tableau.Migration/Content/ISiteSettings.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ISiteSettingsUpdate.cs b/src/Tableau.Migration/Content/ISiteSettingsUpdate.cs index df3f25b..d0561ea 100644 --- a/src/Tableau.Migration/Content/ISiteSettingsUpdate.cs +++ b/src/Tableau.Migration/Content/ISiteSettingsUpdate.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ITag.cs b/src/Tableau.Migration/Content/ITag.cs index 4e9be56..ff11a66 100644 --- a/src/Tableau.Migration/Content/ITag.cs +++ b/src/Tableau.Migration/Content/ITag.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ITagExtensions.cs b/src/Tableau.Migration/Content/ITagExtensions.cs index 710e8d5..8a29801 100644 --- a/src/Tableau.Migration/Content/ITagExtensions.cs +++ b/src/Tableau.Migration/Content/ITagExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IUser.cs b/src/Tableau.Migration/Content/IUser.cs index 5336b97..b6009c2 100644 --- a/src/Tableau.Migration/Content/IUser.cs +++ b/src/Tableau.Migration/Content/IUser.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IUsernameContent.cs b/src/Tableau.Migration/Content/IUsernameContent.cs index 7119d3b..12e816f 100644 --- a/src/Tableau.Migration/Content/IUsernameContent.cs +++ b/src/Tableau.Migration/Content/IUsernameContent.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IView.cs b/src/Tableau.Migration/Content/IView.cs index 50dc2d6..db2e81b 100644 --- a/src/Tableau.Migration/Content/IView.cs +++ b/src/Tableau.Migration/Content/IView.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWithConnections.cs b/src/Tableau.Migration/Content/IWithConnections.cs index 66843d8..2c50555 100644 --- a/src/Tableau.Migration/Content/IWithConnections.cs +++ b/src/Tableau.Migration/Content/IWithConnections.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWithDomain.cs b/src/Tableau.Migration/Content/IWithDomain.cs index 7a392ec..d81ed2f 100644 --- a/src/Tableau.Migration/Content/IWithDomain.cs +++ b/src/Tableau.Migration/Content/IWithDomain.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWithLabels.cs b/src/Tableau.Migration/Content/IWithLabels.cs index c4ee7a3..301795b 100644 --- a/src/Tableau.Migration/Content/IWithLabels.cs +++ b/src/Tableau.Migration/Content/IWithLabels.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWithOwner.cs b/src/Tableau.Migration/Content/IWithOwner.cs index 5657de8..a7b3fd6 100644 --- a/src/Tableau.Migration/Content/IWithOwner.cs +++ b/src/Tableau.Migration/Content/IWithOwner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWithTags.cs b/src/Tableau.Migration/Content/IWithTags.cs index c0d88a2..1b193a7 100644 --- a/src/Tableau.Migration/Content/IWithTags.cs +++ b/src/Tableau.Migration/Content/IWithTags.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWorkbook.cs b/src/Tableau.Migration/Content/IWorkbook.cs index 32a7866..3f4cffb 100644 --- a/src/Tableau.Migration/Content/IWorkbook.cs +++ b/src/Tableau.Migration/Content/IWorkbook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/IWorkbookDetails.cs b/src/Tableau.Migration/Content/IWorkbookDetails.cs index 63b73c2..71cf5c9 100644 --- a/src/Tableau.Migration/Content/IWorkbookDetails.cs +++ b/src/Tableau.Migration/Content/IWorkbookDetails.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Label.cs b/src/Tableau.Migration/Content/Label.cs index 4e8f1e2..37e9274 100644 --- a/src/Tableau.Migration/Content/Label.cs +++ b/src/Tableau.Migration/Content/Label.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/MappableContainerContentBase.cs b/src/Tableau.Migration/Content/MappableContainerContentBase.cs index 59bfc87..6eaf053 100644 --- a/src/Tableau.Migration/Content/MappableContainerContentBase.cs +++ b/src/Tableau.Migration/Content/MappableContainerContentBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/Capability.cs b/src/Tableau.Migration/Content/Permissions/Capability.cs index 033017a..542d134 100644 --- a/src/Tableau.Migration/Content/Permissions/Capability.cs +++ b/src/Tableau.Migration/Content/Permissions/Capability.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/DefaultPermissionsContentTypeUrlSegments.cs b/src/Tableau.Migration/Content/Permissions/DefaultPermissionsContentTypeUrlSegments.cs index 563a473..37322f5 100644 --- a/src/Tableau.Migration/Content/Permissions/DefaultPermissionsContentTypeUrlSegments.cs +++ b/src/Tableau.Migration/Content/Permissions/DefaultPermissionsContentTypeUrlSegments.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/GranteeCapability.cs b/src/Tableau.Migration/Content/Permissions/GranteeCapability.cs index bb6f787..f08c88f 100644 --- a/src/Tableau.Migration/Content/Permissions/GranteeCapability.cs +++ b/src/Tableau.Migration/Content/Permissions/GranteeCapability.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/GranteeType.cs b/src/Tableau.Migration/Content/Permissions/GranteeType.cs index 9515adb..1022fff 100644 --- a/src/Tableau.Migration/Content/Permissions/GranteeType.cs +++ b/src/Tableau.Migration/Content/Permissions/GranteeType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/GranteeTypeExtensions.cs b/src/Tableau.Migration/Content/Permissions/GranteeTypeExtensions.cs index 105a927..cfdb613 100644 --- a/src/Tableau.Migration/Content/Permissions/GranteeTypeExtensions.cs +++ b/src/Tableau.Migration/Content/Permissions/GranteeTypeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/ICapability.cs b/src/Tableau.Migration/Content/Permissions/ICapability.cs index c84b9e8..e121bae 100644 --- a/src/Tableau.Migration/Content/Permissions/ICapability.cs +++ b/src/Tableau.Migration/Content/Permissions/ICapability.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/ICapabilityComparer.cs b/src/Tableau.Migration/Content/Permissions/ICapabilityComparer.cs index 92b008a..514311c 100644 --- a/src/Tableau.Migration/Content/Permissions/ICapabilityComparer.cs +++ b/src/Tableau.Migration/Content/Permissions/ICapabilityComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/IGranteeCapability.cs b/src/Tableau.Migration/Content/Permissions/IGranteeCapability.cs index 0d5749d..1081e3a 100644 --- a/src/Tableau.Migration/Content/Permissions/IGranteeCapability.cs +++ b/src/Tableau.Migration/Content/Permissions/IGranteeCapability.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/IGranteeCapabilityExtensions.cs b/src/Tableau.Migration/Content/Permissions/IGranteeCapabilityExtensions.cs index 74b63f6..0d1cc88 100644 --- a/src/Tableau.Migration/Content/Permissions/IGranteeCapabilityExtensions.cs +++ b/src/Tableau.Migration/Content/Permissions/IGranteeCapabilityExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/IPermissions.cs b/src/Tableau.Migration/Content/Permissions/IPermissions.cs index 9000423..00533b8 100644 --- a/src/Tableau.Migration/Content/Permissions/IPermissions.cs +++ b/src/Tableau.Migration/Content/Permissions/IPermissions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Permissions/Permissions.cs b/src/Tableau.Migration/Content/Permissions/Permissions.cs index 9358e5e..e398264 100644 --- a/src/Tableau.Migration/Content/Permissions/Permissions.cs +++ b/src/Tableau.Migration/Content/Permissions/Permissions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Project.cs b/src/Tableau.Migration/Content/Project.cs index d4a3796..b7eacea 100644 --- a/src/Tableau.Migration/Content/Project.cs +++ b/src/Tableau.Migration/Content/Project.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/PublishableDataSource.cs b/src/Tableau.Migration/Content/PublishableDataSource.cs index 4d8c7c8..5cc3b92 100644 --- a/src/Tableau.Migration/Content/PublishableDataSource.cs +++ b/src/Tableau.Migration/Content/PublishableDataSource.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/PublishableGroup.cs b/src/Tableau.Migration/Content/PublishableGroup.cs index dd0de98..1888a6b 100644 --- a/src/Tableau.Migration/Content/PublishableGroup.cs +++ b/src/Tableau.Migration/Content/PublishableGroup.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/PublishableWorkbook.cs b/src/Tableau.Migration/Content/PublishableWorkbook.cs index 2c955f6..1920dbc 100644 --- a/src/Tableau.Migration/Content/PublishableWorkbook.cs +++ b/src/Tableau.Migration/Content/PublishableWorkbook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Search/CachedContentReferenceFinder.cs b/src/Tableau.Migration/Content/Search/CachedContentReferenceFinder.cs index de59267..b344036 100644 --- a/src/Tableau.Migration/Content/Search/CachedContentReferenceFinder.cs +++ b/src/Tableau.Migration/Content/Search/CachedContentReferenceFinder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Search/ContentReferenceCacheBase.cs b/src/Tableau.Migration/Content/Search/ContentReferenceCacheBase.cs index 5b2e1fc..fb54683 100644 --- a/src/Tableau.Migration/Content/Search/ContentReferenceCacheBase.cs +++ b/src/Tableau.Migration/Content/Search/ContentReferenceCacheBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Search/IContentReferenceCache.cs b/src/Tableau.Migration/Content/Search/IContentReferenceCache.cs index 1ce7d40..a874a45 100644 --- a/src/Tableau.Migration/Content/Search/IContentReferenceCache.cs +++ b/src/Tableau.Migration/Content/Search/IContentReferenceCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Search/IContentReferenceFinder.cs b/src/Tableau.Migration/Content/Search/IContentReferenceFinder.cs index dd4a3af..9fcbb8e 100644 --- a/src/Tableau.Migration/Content/Search/IContentReferenceFinder.cs +++ b/src/Tableau.Migration/Content/Search/IContentReferenceFinder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Search/IContentReferenceFinderFactory.cs b/src/Tableau.Migration/Content/Search/IContentReferenceFinderFactory.cs index 44ead94..6f4a227 100644 --- a/src/Tableau.Migration/Content/Search/IContentReferenceFinderFactory.cs +++ b/src/Tableau.Migration/Content/Search/IContentReferenceFinderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ServerSession.cs b/src/Tableau.Migration/Content/ServerSession.cs index 1d9226c..e066951 100644 --- a/src/Tableau.Migration/Content/ServerSession.cs +++ b/src/Tableau.Migration/Content/ServerSession.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/ServerSessionSettings.cs b/src/Tableau.Migration/Content/ServerSessionSettings.cs index c82f3f8..6b3bbb4 100644 --- a/src/Tableau.Migration/Content/ServerSessionSettings.cs +++ b/src/Tableau.Migration/Content/ServerSessionSettings.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Site.cs b/src/Tableau.Migration/Content/Site.cs index e0d2531..88c1e10 100644 --- a/src/Tableau.Migration/Content/Site.cs +++ b/src/Tableau.Migration/Content/Site.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/SiteSettingsUpdate.cs b/src/Tableau.Migration/Content/SiteSettingsUpdate.cs index 86ac649..06c6e3b 100644 --- a/src/Tableau.Migration/Content/SiteSettingsUpdate.cs +++ b/src/Tableau.Migration/Content/SiteSettingsUpdate.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Tag.cs b/src/Tableau.Migration/Content/Tag.cs index 4b0a607..8863366 100644 --- a/src/Tableau.Migration/Content/Tag.cs +++ b/src/Tableau.Migration/Content/Tag.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/TagLabelComparer.cs b/src/Tableau.Migration/Content/TagLabelComparer.cs index ecf5fba..42ec06f 100644 --- a/src/Tableau.Migration/Content/TagLabelComparer.cs +++ b/src/Tableau.Migration/Content/TagLabelComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/User.cs b/src/Tableau.Migration/Content/User.cs index 6140d77..8c20261 100644 --- a/src/Tableau.Migration/Content/User.cs +++ b/src/Tableau.Migration/Content/User.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/UsernameContentBase.cs b/src/Tableau.Migration/Content/UsernameContentBase.cs index 57cb82c..0ab0905 100644 --- a/src/Tableau.Migration/Content/UsernameContentBase.cs +++ b/src/Tableau.Migration/Content/UsernameContentBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/View.cs b/src/Tableau.Migration/Content/View.cs index d56befd..2976244 100644 --- a/src/Tableau.Migration/Content/View.cs +++ b/src/Tableau.Migration/Content/View.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/Workbook.cs b/src/Tableau.Migration/Content/Workbook.cs index 9b1032c..cd7a582 100644 --- a/src/Tableau.Migration/Content/Workbook.cs +++ b/src/Tableau.Migration/Content/Workbook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Content/WorkbookDetails.cs b/src/Tableau.Migration/Content/WorkbookDetails.cs index 52052bf..bcf0844 100644 --- a/src/Tableau.Migration/Content/WorkbookDetails.cs +++ b/src/Tableau.Migration/Content/WorkbookDetails.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ContentLocation.cs b/src/Tableau.Migration/ContentLocation.cs index 0cc60ce..29c5bb3 100644 --- a/src/Tableau.Migration/ContentLocation.cs +++ b/src/Tableau.Migration/ContentLocation.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/CsvExtensions.cs b/src/Tableau.Migration/CsvExtensions.cs index 85f0a90..0876cf2 100644 --- a/src/Tableau.Migration/CsvExtensions.cs +++ b/src/Tableau.Migration/CsvExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/DateTimeExtensions.cs b/src/Tableau.Migration/DateTimeExtensions.cs index f95443e..3d6501b 100644 --- a/src/Tableau.Migration/DateTimeExtensions.cs +++ b/src/Tableau.Migration/DateTimeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/IMigrateContentAction.cs b/src/Tableau.Migration/Engine/Actions/IMigrateContentAction.cs index 67b121e..10c133a 100644 --- a/src/Tableau.Migration/Engine/Actions/IMigrateContentAction.cs +++ b/src/Tableau.Migration/Engine/Actions/IMigrateContentAction.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/IMigrationAction.cs b/src/Tableau.Migration/Engine/Actions/IMigrationAction.cs index 43ac705..5740f5c 100644 --- a/src/Tableau.Migration/Engine/Actions/IMigrationAction.cs +++ b/src/Tableau.Migration/Engine/Actions/IMigrationAction.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/IMigrationActionResult.cs b/src/Tableau.Migration/Engine/Actions/IMigrationActionResult.cs index 5c6b21e..fa16ce6 100644 --- a/src/Tableau.Migration/Engine/Actions/IMigrationActionResult.cs +++ b/src/Tableau.Migration/Engine/Actions/IMigrationActionResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/MigrateContentAction.cs b/src/Tableau.Migration/Engine/Actions/MigrateContentAction.cs index e4f3191..e53e797 100644 --- a/src/Tableau.Migration/Engine/Actions/MigrateContentAction.cs +++ b/src/Tableau.Migration/Engine/Actions/MigrateContentAction.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/MigrationActionResult.cs b/src/Tableau.Migration/Engine/Actions/MigrationActionResult.cs index fb02b0c..c10e0d0 100644 --- a/src/Tableau.Migration/Engine/Actions/MigrationActionResult.cs +++ b/src/Tableau.Migration/Engine/Actions/MigrationActionResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Actions/PreflightAction.cs b/src/Tableau.Migration/Engine/Actions/PreflightAction.cs index e8c343e..e5880fe 100644 --- a/src/Tableau.Migration/Engine/Actions/PreflightAction.cs +++ b/src/Tableau.Migration/Engine/Actions/PreflightAction.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/ContentMigrationItem.cs b/src/Tableau.Migration/Engine/ContentMigrationItem.cs index f1f3dad..5ed32f2 100644 --- a/src/Tableau.Migration/Engine/ContentMigrationItem.cs +++ b/src/Tableau.Migration/Engine/ContentMigrationItem.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IDestinationApiEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/IDestinationApiEndpoint.cs index 7d06e70..0004a93 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IDestinationApiEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IDestinationApiEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IDestinationEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/IDestinationEndpoint.cs index b8c09d0..cf88359 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IDestinationEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IDestinationEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IMigrationApiEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/IMigrationApiEndpoint.cs index 57bf47d..86bb739 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IMigrationApiEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IMigrationApiEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpoint.cs index 8942ba8..ffa8844 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpointFactory.cs b/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpointFactory.cs index d2c58dd..4a46782 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpointFactory.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IMigrationEndpointFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/IMigrationPlanEndpointConfiguration.cs b/src/Tableau.Migration/Engine/Endpoints/IMigrationPlanEndpointConfiguration.cs index 0b990f7..0fe45d3 100644 --- a/src/Tableau.Migration/Engine/Endpoints/IMigrationPlanEndpointConfiguration.cs +++ b/src/Tableau.Migration/Engine/Endpoints/IMigrationPlanEndpointConfiguration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/ISourceApiEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/ISourceApiEndpoint.cs index c0d73d7..a2e8ce4 100644 --- a/src/Tableau.Migration/Engine/Endpoints/ISourceApiEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/ISourceApiEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/ISourceEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/ISourceEndpoint.cs index b30ed6b..b33ee36 100644 --- a/src/Tableau.Migration/Engine/Endpoints/ISourceEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/ISourceEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/ITableauApiEndpointConfiguration.cs b/src/Tableau.Migration/Engine/Endpoints/ITableauApiEndpointConfiguration.cs index d629b7d..de5f62c 100644 --- a/src/Tableau.Migration/Engine/Endpoints/ITableauApiEndpointConfiguration.cs +++ b/src/Tableau.Migration/Engine/Endpoints/ITableauApiEndpointConfiguration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/MigrationEndpointFactory.cs b/src/Tableau.Migration/Engine/Endpoints/MigrationEndpointFactory.cs index a643645..f130b2d 100644 --- a/src/Tableau.Migration/Engine/Endpoints/MigrationEndpointFactory.cs +++ b/src/Tableau.Migration/Engine/Endpoints/MigrationEndpointFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationCache.cs b/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationCache.cs index 12e31a8..8f21e5e 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationCache.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationProjectCache.cs b/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationProjectCache.cs index 0cabb93..06109b1 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationProjectCache.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/BulkDestinationProjectCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/BulkSourceCache.cs b/src/Tableau.Migration/Engine/Endpoints/Search/BulkSourceCache.cs index 809612a..d077fc6 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/BulkSourceCache.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/BulkSourceCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/ILockedProjectCache.cs b/src/Tableau.Migration/Engine/Endpoints/Search/ILockedProjectCache.cs index dddbbaa..f5398dc 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/ILockedProjectCache.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/ILockedProjectCache.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/IMappedContentReferenceFinder.cs b/src/Tableau.Migration/Engine/Endpoints/Search/IMappedContentReferenceFinder.cs index 0ff4f52..4acac9d 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/IMappedContentReferenceFinder.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/IMappedContentReferenceFinder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinder.cs b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinder.cs index 5a7a81f..5ff1c18 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinder.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactory.cs b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactory.cs index c4e3a01..333b7de 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactory.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinder.cs b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinder.cs index 4aff6ac..5183008 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinder.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactory.cs b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactory.cs index 8f38386..e314b4e 100644 --- a/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactory.cs +++ b/src/Tableau.Migration/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/TableauApiDestinationEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/TableauApiDestinationEndpoint.cs index 5d48c6d..8854e09 100644 --- a/src/Tableau.Migration/Engine/Endpoints/TableauApiDestinationEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/TableauApiDestinationEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointBase.cs b/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointBase.cs index 696da34..52929e4 100644 --- a/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointBase.cs +++ b/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointConfiguration.cs b/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointConfiguration.cs index bab5dfc..870ad33 100644 --- a/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointConfiguration.cs +++ b/src/Tableau.Migration/Engine/Endpoints/TableauApiEndpointConfiguration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Endpoints/TableauApiSourceEndpoint.cs b/src/Tableau.Migration/Engine/Endpoints/TableauApiSourceEndpoint.cs index ab66df7..66565d2 100644 --- a/src/Tableau.Migration/Engine/Endpoints/TableauApiSourceEndpoint.cs +++ b/src/Tableau.Migration/Engine/Endpoints/TableauApiSourceEndpoint.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/CallbackHookWrapper.cs b/src/Tableau.Migration/Engine/Hooks/CallbackHookWrapper.cs index a0e4eaa..d7d2941 100644 --- a/src/Tableau.Migration/Engine/Hooks/CallbackHookWrapper.cs +++ b/src/Tableau.Migration/Engine/Hooks/CallbackHookWrapper.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/ContentTypeHookBuilderBase.cs b/src/Tableau.Migration/Engine/Hooks/ContentTypeHookBuilderBase.cs index 2f2272f..34c400e 100644 --- a/src/Tableau.Migration/Engine/Hooks/ContentTypeHookBuilderBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/ContentTypeHookBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBase.cs b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBase.cs index c929b3c..8b8be32 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBuilder.cs index 6194fb1..fa35cb0 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterRunner.cs b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterRunner.cs index b2cc71a..4b48185 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/ContentFilterRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/ContentLocationInPathFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/ContentLocationInPathFilter.cs index 000dae4..d403c3e 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/ContentLocationInPathFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/ContentLocationInPathFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilter.cs index d1fe4ef..a1133d2 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptions.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptions.cs index 701642a..76f51df 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptions.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilter.cs index 261a701..28820aa 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterOptions.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterOptions.cs index 15800fa..2cc8444 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterOptions.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/SystemOwnershipFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/SystemOwnershipFilter.cs index db58742..9e87049 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/SystemOwnershipFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/SystemOwnershipFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilter.cs index 3956bc4..f818981 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilter.cs b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilter.cs index 67902ba..b55a3cf 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilter.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterBuilder.cs index 907da55..f79c82f 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterRunner.cs b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterRunner.cs index 5f7be01..7c10f0e 100644 --- a/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Filters/IContentFilterRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IContentBatchMigrationCompletedHook.cs b/src/Tableau.Migration/Engine/Hooks/IContentBatchMigrationCompletedHook.cs index 2bb140c..5fe7fcf 100644 --- a/src/Tableau.Migration/Engine/Hooks/IContentBatchMigrationCompletedHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/IContentBatchMigrationCompletedHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IContentTypeHookBuilder.cs b/src/Tableau.Migration/Engine/Hooks/IContentTypeHookBuilder.cs index 68b37c6..8bbc2e8 100644 --- a/src/Tableau.Migration/Engine/Hooks/IContentTypeHookBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/IContentTypeHookBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationActionCompletedHook.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationActionCompletedHook.cs index e83899b..bb2b03e 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationActionCompletedHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationActionCompletedHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationHook.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationHook.cs index d56de94..aab5f91 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationHookBuilder.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationHookBuilder.cs index a7bd9ae..317fb6f 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationHookBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationHookBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactory.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactory.cs index bcebde1..71bce63 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactory.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactoryCollection.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactoryCollection.cs index caa6299..658e65c 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactoryCollection.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationHookFactoryCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/IMigrationHookRunner.cs b/src/Tableau.Migration/Engine/Hooks/IMigrationHookRunner.cs index a8998d3..da7ed7e 100644 --- a/src/Tableau.Migration/Engine/Hooks/IMigrationHookRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/IMigrationHookRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBase.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBase.cs index 7550b13..e9503e8 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBuilder.cs index ccf1794..1494759 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingContext.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingContext.cs index c94f661..e67f93b 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingContext.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingContext.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingRunner.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingRunner.cs index 8320aa2..837fb37 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/ContentMappingRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMapping.cs index cc4ff0e..e0ae39a 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBase.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBase.cs index aa39cc6..c260f43 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingOptions.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingOptions.cs index 492014c..cbf2269 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingOptions.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMapping.cs index deb5f01..5d26046 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/IAuthenticationTypeDomainMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/IAuthenticationTypeDomainMapping.cs index 3bb2f58..f6919e4 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/IAuthenticationTypeDomainMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/IAuthenticationTypeDomainMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/ITableauCloudUsernameMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/ITableauCloudUsernameMapping.cs index efe658b..3aedba4 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/ITableauCloudUsernameMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/ITableauCloudUsernameMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMapping.cs index 8f2aeaa..5259b5b 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingOptions.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingOptions.cs index 8d5f0ec..30b1702 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingOptions.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMapping.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMapping.cs index 66af861..e312c99 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMapping.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingBuilder.cs index 2eedf06..3ba7382 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingRunner.cs b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingRunner.cs index b799fc5..254e198 100644 --- a/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Mappings/IContentMappingRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilder.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilder.cs index cbed338..771056a 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilderBase.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilderBase.cs index 695615f..6f1157a 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilderBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookFactory.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookFactory.cs index a0b0322..ea3d796 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookFactory.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookFactoryCollection.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookFactoryCollection.cs index 4f90137..ecf82c0 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookFactoryCollection.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookFactoryCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookRunner.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookRunner.cs index dc1d740..3bfbcc0 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/MigrationHookRunnerBase.cs b/src/Tableau.Migration/Engine/Hooks/MigrationHookRunnerBase.cs index 48c2689..915ba19 100644 --- a/src/Tableau.Migration/Engine/Hooks/MigrationHookRunnerBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/MigrationHookRunnerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishContext.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishContext.cs index c5b4709..0ea1a97 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishContext.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishContext.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishHookBase.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishHookBase.cs index 5124458..c70f108 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishHookBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/BulkPostPublishHookBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishContext.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishContext.cs index 7644030..97a61fd 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishContext.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishContext.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishHookBase.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishHookBase.cs index 0a1941c..9dd423c 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishHookBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/ContentItemPostPublishHookBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHook.cs index d790d0c..f4768e6 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHook.cs index b75d4fb..ced1048 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBase.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBase.cs index 8041be9..9e41fc2 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHook.cs index c98c6cd..8e9ff7b 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ProjectPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ProjectPostPublishHook.cs index fbbac00..d3f5f8d 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ProjectPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/ProjectPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/TagItemPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/TagItemPostPublishHook.cs index 0a438d9..c6cee59 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/TagItemPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/Default/TagItemPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/IBulkPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/IBulkPostPublishHook.cs index 4166a45..df4426c 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/IBulkPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/IBulkPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/PostPublish/IContentItemPostPublishHook.cs b/src/Tableau.Migration/Engine/Hooks/PostPublish/IContentItemPostPublishHook.cs index 7739df2..546d3b1 100644 --- a/src/Tableau.Migration/Engine/Hooks/PostPublish/IContentItemPostPublishHook.cs +++ b/src/Tableau.Migration/Engine/Hooks/PostPublish/IContentItemPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBase.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBase.cs index 8480c25..cb04e13 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBuilder.cs index 1480645..66493ca 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerRunner.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerRunner.cs index 275272d..0522945 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/ContentTransformerRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/GroupUsersTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/GroupUsersTransformer.cs index 8c1412a..2b1343d 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/GroupUsersTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/GroupUsersTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IMappedUserTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IMappedUserTransformer.cs index d90b5d5..7592981 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IMappedUserTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IMappedUserTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IPermissionsTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IPermissionsTransformer.cs index 9ab147a..b74cb08 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IPermissionsTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IPermissionsTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IUserReferenceTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IUserReferenceTransformer.cs index 12ec652..2ac0f4f 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IUserReferenceTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/IUserReferenceTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/MappedUserTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/MappedUserTransformer.cs index da8e766..a81431c 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/MappedUserTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/MappedUserTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/OwnershipTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/OwnershipTransformer.cs index ec05cee..1602701 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/OwnershipTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/OwnershipTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/PermissionsTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/PermissionsTransformer.cs index 302db63..0911698 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/PermissionsTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/PermissionsTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformer.cs index 7c0f143..7fbecc6 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformer.cs index b664c5f..a1e7b17 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformerOptions.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformerOptions.cs index 7a0d3e9..3742aa6 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformerOptions.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserAuthenticationTypeTransformerOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformer.cs index 016059f..5413a04 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformer.cs index 54c79e2..f49ec9c 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerBuilder.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerBuilder.cs index 2c2e734..1af318e 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerBuilder.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerRunner.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerRunner.cs index 3c8c110..f9a8eb5 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerRunner.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/IContentTransformerRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/IXmlContentTransformer.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/IXmlContentTransformer.cs index 5e4e966..23b9030 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/IXmlContentTransformer.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/IXmlContentTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Hooks/Transformers/XmlContentTransformerBase.cs b/src/Tableau.Migration/Engine/Hooks/Transformers/XmlContentTransformerBase.cs index 020940f..fc7b95b 100644 --- a/src/Tableau.Migration/Engine/Hooks/Transformers/XmlContentTransformerBase.cs +++ b/src/Tableau.Migration/Engine/Hooks/Transformers/XmlContentTransformerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/IMigration.cs b/src/Tableau.Migration/Engine/IMigration.cs index d3aef42..4b99afe 100644 --- a/src/Tableau.Migration/Engine/IMigration.cs +++ b/src/Tableau.Migration/Engine/IMigration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/IMigrationExtensions.cs b/src/Tableau.Migration/Engine/IMigrationExtensions.cs index f040722..012b933 100644 --- a/src/Tableau.Migration/Engine/IMigrationExtensions.cs +++ b/src/Tableau.Migration/Engine/IMigrationExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/IMigrationInput.cs b/src/Tableau.Migration/Engine/IMigrationInput.cs index 332a6e9..2b718fa 100644 --- a/src/Tableau.Migration/Engine/IMigrationInput.cs +++ b/src/Tableau.Migration/Engine/IMigrationInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/IMigrationInputInitializer.cs b/src/Tableau.Migration/Engine/IMigrationInputInitializer.cs index bb5cdd8..46ef6d7 100644 --- a/src/Tableau.Migration/Engine/IMigrationInputInitializer.cs +++ b/src/Tableau.Migration/Engine/IMigrationInputInitializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/IServiceCollectionExtensions.cs b/src/Tableau.Migration/Engine/IServiceCollectionExtensions.cs index d3202fb..71096e5 100644 --- a/src/Tableau.Migration/Engine/IServiceCollectionExtensions.cs +++ b/src/Tableau.Migration/Engine/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartition.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartition.cs index e8c3d5b..7576ab3 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartition.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartition.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartitionEditor.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartitionEditor.cs index fbc3336..0c14396 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartitionEditor.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestContentTypePartitionEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEditor.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEditor.cs index a593047..8fd7fcd 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEditor.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntry.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntry.cs index 9b0192f..f1c8a71 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntry.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntry.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryBuilder.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryBuilder.cs index b0e5e64..bee30fb 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryBuilder.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollection.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollection.cs index 4034a5f..cf33686 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollection.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollectionEditor.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollectionEditor.cs index 02422f5..3160edc 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollectionEditor.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryCollectionEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryEditor.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryEditor.cs index 21f1313..baecf64 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryEditor.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestEntryEditor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestFactory.cs b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestFactory.cs index 0c59d43..f17b840 100644 --- a/src/Tableau.Migration/Engine/Manifest/IMigrationManifestFactory.cs +++ b/src/Tableau.Migration/Engine/Manifest/IMigrationManifestFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifest.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifest.cs index 6c00ca8..7351c1e 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifest.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifestContentTypePartition.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifestContentTypePartition.cs index 59501c1..2f620b6 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifestContentTypePartition.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifestContentTypePartition.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntry.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntry.cs index 7549793..b10fb1d 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntry.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntry.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryCollection.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryCollection.cs index 26b14df..76d27d4 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryCollection.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryStatus.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryStatus.cs index fdd1000..33ee356 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryStatus.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifestEntryStatus.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Manifest/MigrationManifestFactory.cs b/src/Tableau.Migration/Engine/Manifest/MigrationManifestFactory.cs index 6e946d6..81f0a96 100644 --- a/src/Tableau.Migration/Engine/Manifest/MigrationManifestFactory.cs +++ b/src/Tableau.Migration/Engine/Manifest/MigrationManifestFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migration.cs b/src/Tableau.Migration/Engine/Migration.cs index 98e2a3d..474ade4 100644 --- a/src/Tableau.Migration/Engine/Migration.cs +++ b/src/Tableau.Migration/Engine/Migration.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/MigrationDirectoryContentFileStore.cs b/src/Tableau.Migration/Engine/MigrationDirectoryContentFileStore.cs index b02c379..924510f 100644 --- a/src/Tableau.Migration/Engine/MigrationDirectoryContentFileStore.cs +++ b/src/Tableau.Migration/Engine/MigrationDirectoryContentFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/MigrationInput.cs b/src/Tableau.Migration/Engine/MigrationInput.cs index 1aa29b0..380e8c2 100644 --- a/src/Tableau.Migration/Engine/MigrationInput.cs +++ b/src/Tableau.Migration/Engine/MigrationInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/MigrationPlan.cs b/src/Tableau.Migration/Engine/MigrationPlan.cs index 75e2b2e..a3be2cd 100644 --- a/src/Tableau.Migration/Engine/MigrationPlan.cs +++ b/src/Tableau.Migration/Engine/MigrationPlan.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/MigrationPlanBuilder.cs b/src/Tableau.Migration/Engine/MigrationPlanBuilder.cs index c211860..f0070b4 100644 --- a/src/Tableau.Migration/Engine/MigrationPlanBuilder.cs +++ b/src/Tableau.Migration/Engine/MigrationPlanBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/BulkPublishContentBatchMigrator.cs b/src/Tableau.Migration/Engine/Migrators/Batch/BulkPublishContentBatchMigrator.cs index a1b2dc0..644bec3 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/BulkPublishContentBatchMigrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/BulkPublishContentBatchMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigrationResult.cs b/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigrationResult.cs index 6756c8a..01e103f 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigrationResult.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigrationResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigratorBase.cs b/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigratorBase.cs index b939a4f..1897b09 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigratorBase.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/ContentBatchMigratorBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/ContentMigrationBatch.cs b/src/Tableau.Migration/Engine/Migrators/Batch/ContentMigrationBatch.cs index 77434e0..6e8f104 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/ContentMigrationBatch.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/ContentMigrationBatch.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrationResult.cs b/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrationResult.cs index 8a9aae4..1972850 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrationResult.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrationResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrator.cs b/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrator.cs index e550074..12c6a53 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/IContentBatchMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/ItemPublishContentBatchMigrator.cs b/src/Tableau.Migration/Engine/Migrators/Batch/ItemPublishContentBatchMigrator.cs index afb9383..c81b64c 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/ItemPublishContentBatchMigrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/ItemPublishContentBatchMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Batch/ParallelContentBatchMigratorBase.cs b/src/Tableau.Migration/Engine/Migrators/Batch/ParallelContentBatchMigratorBase.cs index eeb340f..f90c4d3 100644 --- a/src/Tableau.Migration/Engine/Migrators/Batch/ParallelContentBatchMigratorBase.cs +++ b/src/Tableau.Migration/Engine/Migrators/Batch/ParallelContentBatchMigratorBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/ContentItemMigrationResult.cs b/src/Tableau.Migration/Engine/Migrators/ContentItemMigrationResult.cs index 9fbb1ab..c3d93d9 100644 --- a/src/Tableau.Migration/Engine/Migrators/ContentItemMigrationResult.cs +++ b/src/Tableau.Migration/Engine/Migrators/ContentItemMigrationResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/ContentMigrator.cs b/src/Tableau.Migration/Engine/Migrators/ContentMigrator.cs index e929ef1..d57481e 100644 --- a/src/Tableau.Migration/Engine/Migrators/ContentMigrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/ContentMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/IContentItemMigrationResult.cs b/src/Tableau.Migration/Engine/Migrators/IContentItemMigrationResult.cs index df1dd0e..bf90eac 100644 --- a/src/Tableau.Migration/Engine/Migrators/IContentItemMigrationResult.cs +++ b/src/Tableau.Migration/Engine/Migrators/IContentItemMigrationResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/IContentMigrationHook.cs b/src/Tableau.Migration/Engine/Migrators/IContentMigrationHook.cs index a502e0e..1e5858d 100644 --- a/src/Tableau.Migration/Engine/Migrators/IContentMigrationHook.cs +++ b/src/Tableau.Migration/Engine/Migrators/IContentMigrationHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/IContentMigrator.cs b/src/Tableau.Migration/Engine/Migrators/IContentMigrator.cs index deaab34..ba0da56 100644 --- a/src/Tableau.Migration/Engine/Migrators/IContentMigrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/IContentMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Migrators/Migrator.cs b/src/Tableau.Migration/Engine/Migrators/Migrator.cs index 67beee6..a8856a9 100644 --- a/src/Tableau.Migration/Engine/Migrators/Migrator.cs +++ b/src/Tableau.Migration/Engine/Migrators/Migrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsBuilder.cs b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsBuilder.cs index 98a4968..c6707aa 100644 --- a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsBuilder.cs +++ b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsCollection.cs b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsCollection.cs index 426049c..b821f99 100644 --- a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsCollection.cs +++ b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsProvider.cs b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsProvider.cs index cf00197..a439ec6 100644 --- a/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsProvider.cs +++ b/src/Tableau.Migration/Engine/Options/IMigrationPlanOptionsProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsBuilder.cs b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsBuilder.cs index f106fad..5985b1a 100644 --- a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsBuilder.cs +++ b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsCollection.cs b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsCollection.cs index 27bd6a0..71e16a5 100644 --- a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsCollection.cs +++ b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsCollection.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsProvider.cs b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsProvider.cs index b5a374f..a991d88 100644 --- a/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsProvider.cs +++ b/src/Tableau.Migration/Engine/Options/MigrationPlanOptionsProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipeline.cs b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipeline.cs index 47a0400..e3fe233 100644 --- a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipeline.cs +++ b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipeline.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineFactory.cs b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineFactory.cs index 3fc457f..474945c 100644 --- a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineFactory.cs +++ b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineRunner.cs b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineRunner.cs index f2dc24d..87b8270 100644 --- a/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineRunner.cs +++ b/src/Tableau.Migration/Engine/Pipelines/IMigrationPipelineRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineBase.cs b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineBase.cs index f946e91..d0cd9d0 100644 --- a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineBase.cs +++ b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentType.cs b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentType.cs index ec98f1c..a0d637d 100644 --- a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentType.cs +++ b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentTypeExtensions.cs b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentTypeExtensions.cs index 19f8726..36ea130 100644 --- a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentTypeExtensions.cs +++ b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineContentTypeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineFactory.cs b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineFactory.cs index 357aa59..aa72243 100644 --- a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineFactory.cs +++ b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineRunner.cs b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineRunner.cs index e88b2e6..754d006 100644 --- a/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineRunner.cs +++ b/src/Tableau.Migration/Engine/Pipelines/MigrationPipelineRunner.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/PipelineProfileExtensions.cs b/src/Tableau.Migration/Engine/Pipelines/PipelineProfileExtensions.cs index 9dec2e0..2bd53ef 100644 --- a/src/Tableau.Migration/Engine/Pipelines/PipelineProfileExtensions.cs +++ b/src/Tableau.Migration/Engine/Pipelines/PipelineProfileExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Pipelines/ServerToCloudMigrationPipeline.cs b/src/Tableau.Migration/Engine/Pipelines/ServerToCloudMigrationPipeline.cs index cff84b9..32b6b4e 100644 --- a/src/Tableau.Migration/Engine/Pipelines/ServerToCloudMigrationPipeline.cs +++ b/src/Tableau.Migration/Engine/Pipelines/ServerToCloudMigrationPipeline.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Preparation/ContentItemPreparerBase.cs b/src/Tableau.Migration/Engine/Preparation/ContentItemPreparerBase.cs index a170e4e..fd12d75 100644 --- a/src/Tableau.Migration/Engine/Preparation/ContentItemPreparerBase.cs +++ b/src/Tableau.Migration/Engine/Preparation/ContentItemPreparerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Preparation/EndpointContentItemPreparer.cs b/src/Tableau.Migration/Engine/Preparation/EndpointContentItemPreparer.cs index a70b56e..4e76807 100644 --- a/src/Tableau.Migration/Engine/Preparation/EndpointContentItemPreparer.cs +++ b/src/Tableau.Migration/Engine/Preparation/EndpointContentItemPreparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Preparation/IContentItemPreparer.cs b/src/Tableau.Migration/Engine/Preparation/IContentItemPreparer.cs index a4d5d9e..1a40837 100644 --- a/src/Tableau.Migration/Engine/Preparation/IContentItemPreparer.cs +++ b/src/Tableau.Migration/Engine/Preparation/IContentItemPreparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/Preparation/SourceContentItemPreparer.cs b/src/Tableau.Migration/Engine/Preparation/SourceContentItemPreparer.cs index 6916711..82d05cf 100644 --- a/src/Tableau.Migration/Engine/Preparation/SourceContentItemPreparer.cs +++ b/src/Tableau.Migration/Engine/Preparation/SourceContentItemPreparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Engine/ServerToCloudMigrationPlanBuilder.cs b/src/Tableau.Migration/Engine/ServerToCloudMigrationPlanBuilder.cs index 73ff7e4..f3a5ec5 100644 --- a/src/Tableau.Migration/Engine/ServerToCloudMigrationPlanBuilder.cs +++ b/src/Tableau.Migration/Engine/ServerToCloudMigrationPlanBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ExceptionExtensions.cs b/src/Tableau.Migration/ExceptionExtensions.cs index 95b679e..8c69b83 100644 --- a/src/Tableau.Migration/ExceptionExtensions.cs +++ b/src/Tableau.Migration/ExceptionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/FilePath.cs b/src/Tableau.Migration/FilePath.cs index 2ad0970..81fb1a1 100644 --- a/src/Tableau.Migration/FilePath.cs +++ b/src/Tableau.Migration/FilePath.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Guard.cs b/src/Tableau.Migration/Guard.cs index 32b36d3..5eafba2 100644 --- a/src/Tableau.Migration/Guard.cs +++ b/src/Tableau.Migration/Guard.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IAsyncDisposableResult.cs b/src/Tableau.Migration/IAsyncDisposableResult.cs index fb082f1..3c4f785 100644 --- a/src/Tableau.Migration/IAsyncDisposableResult.cs +++ b/src/Tableau.Migration/IAsyncDisposableResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IContentReference.cs b/src/Tableau.Migration/IContentReference.cs index b0e946d..08b256d 100644 --- a/src/Tableau.Migration/IContentReference.cs +++ b/src/Tableau.Migration/IContentReference.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IContentReferenceExtensions.cs b/src/Tableau.Migration/IContentReferenceExtensions.cs index 9cb2995..ca51c5e 100644 --- a/src/Tableau.Migration/IContentReferenceExtensions.cs +++ b/src/Tableau.Migration/IContentReferenceExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IEnumerableExtensions.cs b/src/Tableau.Migration/IEnumerableExtensions.cs index 2f46690..dbff628 100644 --- a/src/Tableau.Migration/IEnumerableExtensions.cs +++ b/src/Tableau.Migration/IEnumerableExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMemoryStreamManager.cs b/src/Tableau.Migration/IMemoryStreamManager.cs index f4e0f36..a1c5d9f 100644 --- a/src/Tableau.Migration/IMemoryStreamManager.cs +++ b/src/Tableau.Migration/IMemoryStreamManager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMigrationManifest.cs b/src/Tableau.Migration/IMigrationManifest.cs index 76685c7..a1292d6 100644 --- a/src/Tableau.Migration/IMigrationManifest.cs +++ b/src/Tableau.Migration/IMigrationManifest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMigrationPlan.cs b/src/Tableau.Migration/IMigrationPlan.cs index 45e9bf7..ae295ba 100644 --- a/src/Tableau.Migration/IMigrationPlan.cs +++ b/src/Tableau.Migration/IMigrationPlan.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMigrationPlanBuilder.cs b/src/Tableau.Migration/IMigrationPlanBuilder.cs index c348034..9801ddd 100644 --- a/src/Tableau.Migration/IMigrationPlanBuilder.cs +++ b/src/Tableau.Migration/IMigrationPlanBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMigrationSdk.cs b/src/Tableau.Migration/IMigrationSdk.cs index c86728a..cadb2f3 100644 --- a/src/Tableau.Migration/IMigrationSdk.cs +++ b/src/Tableau.Migration/IMigrationSdk.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IMigrator.cs b/src/Tableau.Migration/IMigrator.cs index 65bde70..bcd1360 100644 --- a/src/Tableau.Migration/IMigrator.cs +++ b/src/Tableau.Migration/IMigrator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IResult.cs b/src/Tableau.Migration/IResult.cs index 6595918..bd4fab0 100644 --- a/src/Tableau.Migration/IResult.cs +++ b/src/Tableau.Migration/IResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IServerToCloudMigrationPlanBuilder.cs b/src/Tableau.Migration/IServerToCloudMigrationPlanBuilder.cs index a24b0c1..d88a0a3 100644 --- a/src/Tableau.Migration/IServerToCloudMigrationPlanBuilder.cs +++ b/src/Tableau.Migration/IServerToCloudMigrationPlanBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IServiceCollectionExtensions.cs b/src/Tableau.Migration/IServiceCollectionExtensions.cs index 89c395a..9d19c9f 100644 --- a/src/Tableau.Migration/IServiceCollectionExtensions.cs +++ b/src/Tableau.Migration/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ISetExtensions.cs b/src/Tableau.Migration/ISetExtensions.cs index 481cc63..47bfab4 100644 --- a/src/Tableau.Migration/ISetExtensions.cs +++ b/src/Tableau.Migration/ISetExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ITaskDelayer.cs b/src/Tableau.Migration/ITaskDelayer.cs index 445f325..aa68bfd 100644 --- a/src/Tableau.Migration/ITaskDelayer.cs +++ b/src/Tableau.Migration/ITaskDelayer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/IUserAgentSuffixProvider.cs b/src/Tableau.Migration/IUserAgentSuffixProvider.cs index a8bc492..945ea62 100644 --- a/src/Tableau.Migration/IUserAgentSuffixProvider.cs +++ b/src/Tableau.Migration/IUserAgentSuffixProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/InheritedTypeComparer.cs b/src/Tableau.Migration/InheritedTypeComparer.cs index ade7645..4e6bdbc 100644 --- a/src/Tableau.Migration/InheritedTypeComparer.cs +++ b/src/Tableau.Migration/InheritedTypeComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/Filters/ISyncContentFilter.cs b/src/Tableau.Migration/Interop/Hooks/Filters/ISyncContentFilter.cs index 3333b70..65ef6b2 100644 --- a/src/Tableau.Migration/Interop/Hooks/Filters/ISyncContentFilter.cs +++ b/src/Tableau.Migration/Interop/Hooks/Filters/ISyncContentFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/ISyncContentBatchMigrationCompletedHook.cs b/src/Tableau.Migration/Interop/Hooks/ISyncContentBatchMigrationCompletedHook.cs index 2eb5e6b..016e303 100644 --- a/src/Tableau.Migration/Interop/Hooks/ISyncContentBatchMigrationCompletedHook.cs +++ b/src/Tableau.Migration/Interop/Hooks/ISyncContentBatchMigrationCompletedHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/ISyncMigrationActionCompletedHook.cs b/src/Tableau.Migration/Interop/Hooks/ISyncMigrationActionCompletedHook.cs index b2191df..3802b60 100644 --- a/src/Tableau.Migration/Interop/Hooks/ISyncMigrationActionCompletedHook.cs +++ b/src/Tableau.Migration/Interop/Hooks/ISyncMigrationActionCompletedHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/ISyncMigrationHook.cs b/src/Tableau.Migration/Interop/Hooks/ISyncMigrationHook.cs index b29af98..aca3941 100644 --- a/src/Tableau.Migration/Interop/Hooks/ISyncMigrationHook.cs +++ b/src/Tableau.Migration/Interop/Hooks/ISyncMigrationHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/Mappings/ISyncContentMapping.cs b/src/Tableau.Migration/Interop/Hooks/Mappings/ISyncContentMapping.cs index ff44d29..7c4d86c 100644 --- a/src/Tableau.Migration/Interop/Hooks/Mappings/ISyncContentMapping.cs +++ b/src/Tableau.Migration/Interop/Hooks/Mappings/ISyncContentMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncBulkPostPublishHook.cs b/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncBulkPostPublishHook.cs index c318707..0b8c7c6 100644 --- a/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncBulkPostPublishHook.cs +++ b/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncBulkPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHook.cs b/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHook.cs index 4beaa6b..05cb97a 100644 --- a/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHook.cs +++ b/src/Tableau.Migration/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncContentTransformer.cs b/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncContentTransformer.cs index 45c0c5e..0e5e540 100644 --- a/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncContentTransformer.cs +++ b/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncContentTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncXmlContentTransformer.cs b/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncXmlContentTransformer.cs index b06b91f..35b29de 100644 --- a/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncXmlContentTransformer.cs +++ b/src/Tableau.Migration/Interop/Hooks/Transformers/ISyncXmlContentTransformer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/IServiceCollectionExtensions.cs b/src/Tableau.Migration/Interop/IServiceCollectionExtensions.cs index d15a816..5710944 100644 --- a/src/Tableau.Migration/Interop/IServiceCollectionExtensions.cs +++ b/src/Tableau.Migration/Interop/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/InteropHelper.cs b/src/Tableau.Migration/Interop/InteropHelper.cs index d89dad7..a5f96e7 100644 --- a/src/Tableau.Migration/Interop/InteropHelper.cs +++ b/src/Tableau.Migration/Interop/InteropHelper.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Logging/INonGenericLogger.cs b/src/Tableau.Migration/Interop/Logging/INonGenericLogger.cs index 90fcb74..d7defc9 100644 --- a/src/Tableau.Migration/Interop/Logging/INonGenericLogger.cs +++ b/src/Tableau.Migration/Interop/Logging/INonGenericLogger.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Logging/NonGenericLoggerBase.cs b/src/Tableau.Migration/Interop/Logging/NonGenericLoggerBase.cs index 088374e..6b8b944 100644 --- a/src/Tableau.Migration/Interop/Logging/NonGenericLoggerBase.cs +++ b/src/Tableau.Migration/Interop/Logging/NonGenericLoggerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/Logging/NonGenericLoggerProvider.cs b/src/Tableau.Migration/Interop/Logging/NonGenericLoggerProvider.cs index eee50c7..1a0d16f 100644 --- a/src/Tableau.Migration/Interop/Logging/NonGenericLoggerProvider.cs +++ b/src/Tableau.Migration/Interop/Logging/NonGenericLoggerProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Interop/PythonUserAgentSuffixProvider.cs b/src/Tableau.Migration/Interop/PythonUserAgentSuffixProvider.cs index 915e063..bc89092 100644 --- a/src/Tableau.Migration/Interop/PythonUserAgentSuffixProvider.cs +++ b/src/Tableau.Migration/Interop/PythonUserAgentSuffixProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/MemoryStreamManager.cs b/src/Tableau.Migration/MemoryStreamManager.cs index 58e173f..291e9a1 100644 --- a/src/Tableau.Migration/MemoryStreamManager.cs +++ b/src/Tableau.Migration/MemoryStreamManager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/MigrationCompletionStatus.cs b/src/Tableau.Migration/MigrationCompletionStatus.cs index 884a035..c2ee6a9 100644 --- a/src/Tableau.Migration/MigrationCompletionStatus.cs +++ b/src/Tableau.Migration/MigrationCompletionStatus.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/MigrationResult.cs b/src/Tableau.Migration/MigrationResult.cs index ad7ed5a..7104798 100644 --- a/src/Tableau.Migration/MigrationResult.cs +++ b/src/Tableau.Migration/MigrationResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/MigrationSdk.cs b/src/Tableau.Migration/MigrationSdk.cs index c1c695f..aecbf53 100644 --- a/src/Tableau.Migration/MigrationSdk.cs +++ b/src/Tableau.Migration/MigrationSdk.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/NameOf.cs b/src/Tableau.Migration/NameOf.cs index 0f00518..d668031 100644 --- a/src/Tableau.Migration/NameOf.cs +++ b/src/Tableau.Migration/NameOf.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/DefaultHttpClient.cs b/src/Tableau.Migration/Net/DefaultHttpClient.cs index 022385a..67ca283 100644 --- a/src/Tableau.Migration/Net/DefaultHttpClient.cs +++ b/src/Tableau.Migration/Net/DefaultHttpClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/DefaultHttpResponseMessage.cs b/src/Tableau.Migration/Net/DefaultHttpResponseMessage.cs index 3a68ef8..2517de7 100644 --- a/src/Tableau.Migration/Net/DefaultHttpResponseMessage.cs +++ b/src/Tableau.Migration/Net/DefaultHttpResponseMessage.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Handlers/AuthenticationHandler.cs b/src/Tableau.Migration/Net/Handlers/AuthenticationHandler.cs index 4c78a32..fccb3aa 100644 --- a/src/Tableau.Migration/Net/Handlers/AuthenticationHandler.cs +++ b/src/Tableau.Migration/Net/Handlers/AuthenticationHandler.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Handlers/LoggingHandler.cs b/src/Tableau.Migration/Net/Handlers/LoggingHandler.cs index e6c08f2..151b783 100644 --- a/src/Tableau.Migration/Net/Handlers/LoggingHandler.cs +++ b/src/Tableau.Migration/Net/Handlers/LoggingHandler.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Handlers/UserAgentHttpMessageHandler.cs b/src/Tableau.Migration/Net/Handlers/UserAgentHttpMessageHandler.cs index cc2a0b5..4cb7a3f 100644 --- a/src/Tableau.Migration/Net/Handlers/UserAgentHttpMessageHandler.cs +++ b/src/Tableau.Migration/Net/Handlers/UserAgentHttpMessageHandler.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpContentExtensions.cs b/src/Tableau.Migration/Net/HttpContentExtensions.cs index b0c45d3..fd87107 100644 --- a/src/Tableau.Migration/Net/HttpContentExtensions.cs +++ b/src/Tableau.Migration/Net/HttpContentExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpContentRequestBuilder.cs b/src/Tableau.Migration/Net/HttpContentRequestBuilder.cs index 3e79637..b8c381a 100644 --- a/src/Tableau.Migration/Net/HttpContentRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpContentRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpContentSerializer.cs b/src/Tableau.Migration/Net/HttpContentSerializer.cs index d47de80..99c9d2e 100644 --- a/src/Tableau.Migration/Net/HttpContentSerializer.cs +++ b/src/Tableau.Migration/Net/HttpContentSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpDeleteRequestBuilder.cs b/src/Tableau.Migration/Net/HttpDeleteRequestBuilder.cs index 225bf67..bc5ff0d 100644 --- a/src/Tableau.Migration/Net/HttpDeleteRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpDeleteRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpGetRequestBuilder.cs b/src/Tableau.Migration/Net/HttpGetRequestBuilder.cs index 91b79b7..8dc8059 100644 --- a/src/Tableau.Migration/Net/HttpGetRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpGetRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpPatchRequestBuilder.cs b/src/Tableau.Migration/Net/HttpPatchRequestBuilder.cs index f3dc22a..02344c8 100644 --- a/src/Tableau.Migration/Net/HttpPatchRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpPatchRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpPostRequestBuilder.cs b/src/Tableau.Migration/Net/HttpPostRequestBuilder.cs index 45946b9..cc627c8 100644 --- a/src/Tableau.Migration/Net/HttpPostRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpPostRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpPutRequestBuilder.cs b/src/Tableau.Migration/Net/HttpPutRequestBuilder.cs index 0478c9c..f46514d 100644 --- a/src/Tableau.Migration/Net/HttpPutRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpPutRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpRequestBuilder.cs b/src/Tableau.Migration/Net/HttpRequestBuilder.cs index 7e5ad0a..d1dad7b 100644 --- a/src/Tableau.Migration/Net/HttpRequestBuilder.cs +++ b/src/Tableau.Migration/Net/HttpRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpRequestBuilderFactory.cs b/src/Tableau.Migration/Net/HttpRequestBuilderFactory.cs index c0e815c..c65b73c 100644 --- a/src/Tableau.Migration/Net/HttpRequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/HttpRequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/HttpStreamProcessor.cs b/src/Tableau.Migration/Net/HttpStreamProcessor.cs index 977837c..df8f98c 100644 --- a/src/Tableau.Migration/Net/HttpStreamProcessor.cs +++ b/src/Tableau.Migration/Net/HttpStreamProcessor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpClient.cs b/src/Tableau.Migration/Net/IHttpClient.cs index 3943f15..c74ac32 100644 --- a/src/Tableau.Migration/Net/IHttpClient.cs +++ b/src/Tableau.Migration/Net/IHttpClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpContentRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpContentRequestBuilder.cs index be126fa..199934e 100644 --- a/src/Tableau.Migration/Net/IHttpContentRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpContentRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpContentSerializer.cs b/src/Tableau.Migration/Net/IHttpContentSerializer.cs index 7193fc7..6e3f282 100644 --- a/src/Tableau.Migration/Net/IHttpContentSerializer.cs +++ b/src/Tableau.Migration/Net/IHttpContentSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpDeleteRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpDeleteRequestBuilder.cs index f91e70f..f27f753 100644 --- a/src/Tableau.Migration/Net/IHttpDeleteRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpDeleteRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpGetRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpGetRequestBuilder.cs index c6672ec..3dd845f 100644 --- a/src/Tableau.Migration/Net/IHttpGetRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpGetRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpPatchRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpPatchRequestBuilder.cs index cf808df..a705e1b 100644 --- a/src/Tableau.Migration/Net/IHttpPatchRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpPatchRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpPostRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpPostRequestBuilder.cs index a9c52aa..dfb9bd8 100644 --- a/src/Tableau.Migration/Net/IHttpPostRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpPostRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpPutRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpPutRequestBuilder.cs index 0e4d8c9..8661823 100644 --- a/src/Tableau.Migration/Net/IHttpPutRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpPutRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpRequestBuilder.cs b/src/Tableau.Migration/Net/IHttpRequestBuilder.cs index 7c866f1..19f3153 100644 --- a/src/Tableau.Migration/Net/IHttpRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IHttpRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpRequestBuilderFactory.cs b/src/Tableau.Migration/Net/IHttpRequestBuilderFactory.cs index c2be369..d3f8bdf 100644 --- a/src/Tableau.Migration/Net/IHttpRequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/IHttpRequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpResponseMessage.cs b/src/Tableau.Migration/Net/IHttpResponseMessage.cs index e7c5256..d3809b4 100644 --- a/src/Tableau.Migration/Net/IHttpResponseMessage.cs +++ b/src/Tableau.Migration/Net/IHttpResponseMessage.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IHttpStreamProcessor.cs b/src/Tableau.Migration/Net/IHttpStreamProcessor.cs index 4bcda68..5bbd3be 100644 --- a/src/Tableau.Migration/Net/IHttpStreamProcessor.cs +++ b/src/Tableau.Migration/Net/IHttpStreamProcessor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/INetworkTraceLogger.cs b/src/Tableau.Migration/Net/INetworkTraceLogger.cs index 12a88d5..f34a46a 100644 --- a/src/Tableau.Migration/Net/INetworkTraceLogger.cs +++ b/src/Tableau.Migration/Net/INetworkTraceLogger.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/INetworkTraceRedactor.cs b/src/Tableau.Migration/Net/INetworkTraceRedactor.cs index 6f70372..fe18e6e 100644 --- a/src/Tableau.Migration/Net/INetworkTraceRedactor.cs +++ b/src/Tableau.Migration/Net/INetworkTraceRedactor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IQueryStringBuilder.cs b/src/Tableau.Migration/Net/IQueryStringBuilder.cs index a71da65..cb3f812 100644 --- a/src/Tableau.Migration/Net/IQueryStringBuilder.cs +++ b/src/Tableau.Migration/Net/IQueryStringBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IRequestBuilder.cs b/src/Tableau.Migration/Net/IRequestBuilder.cs index 48829c9..6d633a2 100644 --- a/src/Tableau.Migration/Net/IRequestBuilder.cs +++ b/src/Tableau.Migration/Net/IRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IRequestBuilderFactory.cs b/src/Tableau.Migration/Net/IRequestBuilderFactory.cs index 6acc9a0..c2706ed 100644 --- a/src/Tableau.Migration/Net/IRequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/IRequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IRequestBuilderFactoryInput.cs b/src/Tableau.Migration/Net/IRequestBuilderFactoryInput.cs index afc904d..4c84223 100644 --- a/src/Tableau.Migration/Net/IRequestBuilderFactoryInput.cs +++ b/src/Tableau.Migration/Net/IRequestBuilderFactoryInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IRequestBuilderFactoryInputInitializer.cs b/src/Tableau.Migration/Net/IRequestBuilderFactoryInputInitializer.cs index cc3a607..2dd412c 100644 --- a/src/Tableau.Migration/Net/IRequestBuilderFactoryInputInitializer.cs +++ b/src/Tableau.Migration/Net/IRequestBuilderFactoryInputInitializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/IServiceCollectionExtensions.cs b/src/Tableau.Migration/Net/IServiceCollectionExtensions.cs index a4b214d..619e36c 100644 --- a/src/Tableau.Migration/Net/IServiceCollectionExtensions.cs +++ b/src/Tableau.Migration/Net/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/ITableauSerializer.cs b/src/Tableau.Migration/Net/ITableauSerializer.cs index 61856ee..192e26b 100644 --- a/src/Tableau.Migration/Net/ITableauSerializer.cs +++ b/src/Tableau.Migration/Net/ITableauSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/JsonOptions.cs b/src/Tableau.Migration/Net/JsonOptions.cs index 9ad8641..05fc414 100644 --- a/src/Tableau.Migration/Net/JsonOptions.cs +++ b/src/Tableau.Migration/Net/JsonOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/MediaTypeHeaderValueExtensions.cs b/src/Tableau.Migration/Net/MediaTypeHeaderValueExtensions.cs index 5d7d328..3269bc3 100644 --- a/src/Tableau.Migration/Net/MediaTypeHeaderValueExtensions.cs +++ b/src/Tableau.Migration/Net/MediaTypeHeaderValueExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/MediaTypes.cs b/src/Tableau.Migration/Net/MediaTypes.cs index 7149e09..e4f88c0 100644 --- a/src/Tableau.Migration/Net/MediaTypes.cs +++ b/src/Tableau.Migration/Net/MediaTypes.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/NetworkTraceLogger.cs b/src/Tableau.Migration/Net/NetworkTraceLogger.cs index 2a50849..0b49a85 100644 --- a/src/Tableau.Migration/Net/NetworkTraceLogger.cs +++ b/src/Tableau.Migration/Net/NetworkTraceLogger.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/NetworkTraceRedactor.cs b/src/Tableau.Migration/Net/NetworkTraceRedactor.cs index 5a76f5e..0c43ec9 100644 --- a/src/Tableau.Migration/Net/NetworkTraceRedactor.cs +++ b/src/Tableau.Migration/Net/NetworkTraceRedactor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/ObjectExtensions.cs b/src/Tableau.Migration/Net/ObjectExtensions.cs index 1dce347..903a8fd 100644 --- a/src/Tableau.Migration/Net/ObjectExtensions.cs +++ b/src/Tableau.Migration/Net/ObjectExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/QueryStringBuilder.cs b/src/Tableau.Migration/Net/QueryStringBuilder.cs index e37bc43..accee47 100644 --- a/src/Tableau.Migration/Net/QueryStringBuilder.cs +++ b/src/Tableau.Migration/Net/QueryStringBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/RequestBuilder.cs b/src/Tableau.Migration/Net/RequestBuilder.cs index bd4224b..1f38fa7 100644 --- a/src/Tableau.Migration/Net/RequestBuilder.cs +++ b/src/Tableau.Migration/Net/RequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/RequestBuilderBase.cs b/src/Tableau.Migration/Net/RequestBuilderBase.cs index 6cecb2e..54f734f 100644 --- a/src/Tableau.Migration/Net/RequestBuilderBase.cs +++ b/src/Tableau.Migration/Net/RequestBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/RequestBuilderFactory.cs b/src/Tableau.Migration/Net/RequestBuilderFactory.cs index f6a4a5b..c396718 100644 --- a/src/Tableau.Migration/Net/RequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/RequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/RequestBuilderFactoryInput.cs b/src/Tableau.Migration/Net/RequestBuilderFactoryInput.cs index 848f4f1..5f328be 100644 --- a/src/Tableau.Migration/Net/RequestBuilderFactoryInput.cs +++ b/src/Tableau.Migration/Net/RequestBuilderFactoryInput.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/ClientThrottleStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/ClientThrottleStrategyBuilder.cs index 82bd433..b51d978 100644 --- a/src/Tableau.Migration/Net/Resilience/ClientThrottleStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/ClientThrottleStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/IResilienceStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/IResilienceStrategyBuilder.cs index 4b97f7e..33b22f4 100644 --- a/src/Tableau.Migration/Net/Resilience/IResilienceStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/IResilienceStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/MaxConcurrencyStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/MaxConcurrencyStrategyBuilder.cs index 8ebafe2..1a8a357 100644 --- a/src/Tableau.Migration/Net/Resilience/MaxConcurrencyStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/MaxConcurrencyStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/RequestTimeoutStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/RequestTimeoutStrategyBuilder.cs index 931f3b0..28dab91 100644 --- a/src/Tableau.Migration/Net/Resilience/RequestTimeoutStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/RequestTimeoutStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/ResilienceContextExtensions.cs b/src/Tableau.Migration/Net/Resilience/ResilienceContextExtensions.cs index f857b29..3a4d22c 100644 --- a/src/Tableau.Migration/Net/Resilience/ResilienceContextExtensions.cs +++ b/src/Tableau.Migration/Net/Resilience/ResilienceContextExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/RetryStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/RetryStrategyBuilder.cs index 8c0b320..b7fbe5c 100644 --- a/src/Tableau.Migration/Net/Resilience/RetryStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/RetryStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Resilience/ServerThrottleStrategyBuilder.cs b/src/Tableau.Migration/Net/Resilience/ServerThrottleStrategyBuilder.cs index bfd0598..16871b4 100644 --- a/src/Tableau.Migration/Net/Resilience/ServerThrottleStrategyBuilder.cs +++ b/src/Tableau.Migration/Net/Resilience/ServerThrottleStrategyBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Fields/Field.cs b/src/Tableau.Migration/Net/Rest/Fields/Field.cs index 1dbcb42..2e0b740 100644 --- a/src/Tableau.Migration/Net/Rest/Fields/Field.cs +++ b/src/Tableau.Migration/Net/Rest/Fields/Field.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Fields/FieldBuilder.cs b/src/Tableau.Migration/Net/Rest/Fields/FieldBuilder.cs index 90a9b81..2fecf99 100644 --- a/src/Tableau.Migration/Net/Rest/Fields/FieldBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Fields/FieldBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Fields/IFieldBuilder.cs b/src/Tableau.Migration/Net/Rest/Fields/IFieldBuilder.cs index 754fb5b..ef54c28 100644 --- a/src/Tableau.Migration/Net/Rest/Fields/IFieldBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Fields/IFieldBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Filtering/Filter.cs b/src/Tableau.Migration/Net/Rest/Filtering/Filter.cs index 79f7c82..3909ca6 100644 --- a/src/Tableau.Migration/Net/Rest/Filtering/Filter.cs +++ b/src/Tableau.Migration/Net/Rest/Filtering/Filter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Filtering/FilterBuilder.cs b/src/Tableau.Migration/Net/Rest/Filtering/FilterBuilder.cs index 918ac86..b2f59e2 100644 --- a/src/Tableau.Migration/Net/Rest/Filtering/FilterBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Filtering/FilterBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Filtering/FilterOperator.cs b/src/Tableau.Migration/Net/Rest/Filtering/FilterOperator.cs index 0e008d0..feca0f6 100644 --- a/src/Tableau.Migration/Net/Rest/Filtering/FilterOperator.cs +++ b/src/Tableau.Migration/Net/Rest/Filtering/FilterOperator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Filtering/IFilterBuilder.cs b/src/Tableau.Migration/Net/Rest/Filtering/IFilterBuilder.cs index cb37e67..ebfb403 100644 --- a/src/Tableau.Migration/Net/Rest/Filtering/IFilterBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Filtering/IFilterBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/GuidExtensions.cs b/src/Tableau.Migration/Net/Rest/GuidExtensions.cs index e4cb0af..20ad7c8 100644 --- a/src/Tableau.Migration/Net/Rest/GuidExtensions.cs +++ b/src/Tableau.Migration/Net/Rest/GuidExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/HttpRequestMessageExtensions.cs b/src/Tableau.Migration/Net/Rest/HttpRequestMessageExtensions.cs index c9ff330..9fc933d 100644 --- a/src/Tableau.Migration/Net/Rest/HttpRequestMessageExtensions.cs +++ b/src/Tableau.Migration/Net/Rest/HttpRequestMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/IRestRequestBuilder.cs b/src/Tableau.Migration/Net/Rest/IRestRequestBuilder.cs index a83c618..3cb6dfb 100644 --- a/src/Tableau.Migration/Net/Rest/IRestRequestBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/IRestRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/IRestRequestBuilderFactory.cs b/src/Tableau.Migration/Net/Rest/IRestRequestBuilderFactory.cs index b055faa..3bc36fc 100644 --- a/src/Tableau.Migration/Net/Rest/IRestRequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/Rest/IRestRequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/ListSortDirectionExtensions.cs b/src/Tableau.Migration/Net/Rest/ListSortDirectionExtensions.cs index 614051c..7672800 100644 --- a/src/Tableau.Migration/Net/Rest/ListSortDirectionExtensions.cs +++ b/src/Tableau.Migration/Net/Rest/ListSortDirectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Paging/IPageBuilder.cs b/src/Tableau.Migration/Net/Rest/Paging/IPageBuilder.cs index 7bfa7ac..8ebd2d5 100644 --- a/src/Tableau.Migration/Net/Rest/Paging/IPageBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Paging/IPageBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Paging/Page.cs b/src/Tableau.Migration/Net/Rest/Paging/Page.cs index efb0000..7f2360b 100644 --- a/src/Tableau.Migration/Net/Rest/Paging/Page.cs +++ b/src/Tableau.Migration/Net/Rest/Paging/Page.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Paging/PageBuilder.cs b/src/Tableau.Migration/Net/Rest/Paging/PageBuilder.cs index 8f43aa8..935127c 100644 --- a/src/Tableau.Migration/Net/Rest/Paging/PageBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Paging/PageBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/RestHeaders.cs b/src/Tableau.Migration/Net/Rest/RestHeaders.cs index 908beec..5b48012 100644 --- a/src/Tableau.Migration/Net/Rest/RestHeaders.cs +++ b/src/Tableau.Migration/Net/Rest/RestHeaders.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/RestQueryBuilderBase.cs b/src/Tableau.Migration/Net/Rest/RestQueryBuilderBase.cs index b04e600..c7e2f4d 100644 --- a/src/Tableau.Migration/Net/Rest/RestQueryBuilderBase.cs +++ b/src/Tableau.Migration/Net/Rest/RestQueryBuilderBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/RestRequestBuilder.cs b/src/Tableau.Migration/Net/Rest/RestRequestBuilder.cs index 8204cd3..1c074dd 100644 --- a/src/Tableau.Migration/Net/Rest/RestRequestBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/RestRequestBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/RestRequestBuilderFactory.cs b/src/Tableau.Migration/Net/Rest/RestRequestBuilderFactory.cs index 4beae49..ea00895 100644 --- a/src/Tableau.Migration/Net/Rest/RestRequestBuilderFactory.cs +++ b/src/Tableau.Migration/Net/Rest/RestRequestBuilderFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Sorting/ISortBuilder.cs b/src/Tableau.Migration/Net/Rest/Sorting/ISortBuilder.cs index 8bfc58c..63a4ee1 100644 --- a/src/Tableau.Migration/Net/Rest/Sorting/ISortBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Sorting/ISortBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Sorting/Sort.cs b/src/Tableau.Migration/Net/Rest/Sorting/Sort.cs index 1176606..c3e7c20 100644 --- a/src/Tableau.Migration/Net/Rest/Sorting/Sort.cs +++ b/src/Tableau.Migration/Net/Rest/Sorting/Sort.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/Sorting/SortBuilder.cs b/src/Tableau.Migration/Net/Rest/Sorting/SortBuilder.cs index edf6fab..448d609 100644 --- a/src/Tableau.Migration/Net/Rest/Sorting/SortBuilder.cs +++ b/src/Tableau.Migration/Net/Rest/Sorting/SortBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Rest/UriExtensions.cs b/src/Tableau.Migration/Net/Rest/UriExtensions.cs index 8968b53..8c7b5bf 100644 --- a/src/Tableau.Migration/Net/Rest/UriExtensions.cs +++ b/src/Tableau.Migration/Net/Rest/UriExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/BaseUrlComparer.cs b/src/Tableau.Migration/Net/Simulation/BaseUrlComparer.cs index 486583a..65c5ac7 100644 --- a/src/Tableau.Migration/Net/Simulation/BaseUrlComparer.cs +++ b/src/Tableau.Migration/Net/Simulation/BaseUrlComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/IResponseSimulator.cs b/src/Tableau.Migration/Net/Simulation/IResponseSimulator.cs index 63a1e6b..a29447c 100644 --- a/src/Tableau.Migration/Net/Simulation/IResponseSimulator.cs +++ b/src/Tableau.Migration/Net/Simulation/IResponseSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/IResponseSimulatorProvider.cs b/src/Tableau.Migration/Net/Simulation/IResponseSimulatorProvider.cs index e5f7759..36d584d 100644 --- a/src/Tableau.Migration/Net/Simulation/IResponseSimulatorProvider.cs +++ b/src/Tableau.Migration/Net/Simulation/IResponseSimulatorProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/MethodSimulator.cs b/src/Tableau.Migration/Net/Simulation/MethodSimulator.cs index d0794d5..e0b514b 100644 --- a/src/Tableau.Migration/Net/Simulation/MethodSimulator.cs +++ b/src/Tableau.Migration/Net/Simulation/MethodSimulator.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/NullResponseSimulatorProvider.cs b/src/Tableau.Migration/Net/Simulation/NullResponseSimulatorProvider.cs index e44efe9..63077a0 100644 --- a/src/Tableau.Migration/Net/Simulation/NullResponseSimulatorProvider.cs +++ b/src/Tableau.Migration/Net/Simulation/NullResponseSimulatorProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Requests/IPathRequestMatcher.cs b/src/Tableau.Migration/Net/Simulation/Requests/IPathRequestMatcher.cs index 9fd4fc6..25a7cd0 100644 --- a/src/Tableau.Migration/Net/Simulation/Requests/IPathRequestMatcher.cs +++ b/src/Tableau.Migration/Net/Simulation/Requests/IPathRequestMatcher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Requests/IRequestMatcher.cs b/src/Tableau.Migration/Net/Simulation/Requests/IRequestMatcher.cs index eb2ddac..75dc43d 100644 --- a/src/Tableau.Migration/Net/Simulation/Requests/IRequestMatcher.cs +++ b/src/Tableau.Migration/Net/Simulation/Requests/IRequestMatcher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Requests/PathRequestMatcher.cs b/src/Tableau.Migration/Net/Simulation/Requests/PathRequestMatcher.cs index 79a38bb..5e45bd8 100644 --- a/src/Tableau.Migration/Net/Simulation/Requests/PathRequestMatcher.cs +++ b/src/Tableau.Migration/Net/Simulation/Requests/PathRequestMatcher.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Responses/EmptyResponseBuilder.cs b/src/Tableau.Migration/Net/Simulation/Responses/EmptyResponseBuilder.cs index f92ea0c..28064cf 100644 --- a/src/Tableau.Migration/Net/Simulation/Responses/EmptyResponseBuilder.cs +++ b/src/Tableau.Migration/Net/Simulation/Responses/EmptyResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Responses/IResponseBuilder.cs b/src/Tableau.Migration/Net/Simulation/Responses/IResponseBuilder.cs index 67ed690..154f9aa 100644 --- a/src/Tableau.Migration/Net/Simulation/Responses/IResponseBuilder.cs +++ b/src/Tableau.Migration/Net/Simulation/Responses/IResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Responses/StaticStringResponseBuilder.cs b/src/Tableau.Migration/Net/Simulation/Responses/StaticStringResponseBuilder.cs index 6ffd936..64fd8db 100644 --- a/src/Tableau.Migration/Net/Simulation/Responses/StaticStringResponseBuilder.cs +++ b/src/Tableau.Migration/Net/Simulation/Responses/StaticStringResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/Responses/TooManyRequestsResponseBuilder.cs b/src/Tableau.Migration/Net/Simulation/Responses/TooManyRequestsResponseBuilder.cs index 5878c6c..986d9ad 100644 --- a/src/Tableau.Migration/Net/Simulation/Responses/TooManyRequestsResponseBuilder.cs +++ b/src/Tableau.Migration/Net/Simulation/Responses/TooManyRequestsResponseBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/SimulationHttpHandler.cs b/src/Tableau.Migration/Net/Simulation/SimulationHttpHandler.cs index bbf33f8..0edb7a0 100644 --- a/src/Tableau.Migration/Net/Simulation/SimulationHttpHandler.cs +++ b/src/Tableau.Migration/Net/Simulation/SimulationHttpHandler.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/Simulation/UriExtensions.cs b/src/Tableau.Migration/Net/Simulation/UriExtensions.cs index f45f23a..799f2c5 100644 --- a/src/Tableau.Migration/Net/Simulation/UriExtensions.cs +++ b/src/Tableau.Migration/Net/Simulation/UriExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/StringExtensions.cs b/src/Tableau.Migration/Net/StringExtensions.cs index f2f7194..6838e37 100644 --- a/src/Tableau.Migration/Net/StringExtensions.cs +++ b/src/Tableau.Migration/Net/StringExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Net/TableauSerializer.cs b/src/Tableau.Migration/Net/TableauSerializer.cs index bab50a7..c161eac 100644 --- a/src/Tableau.Migration/Net/TableauSerializer.cs +++ b/src/Tableau.Migration/Net/TableauSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ObjectExtensions.cs b/src/Tableau.Migration/ObjectExtensions.cs index 80d2d3d..f7fdfdf 100644 --- a/src/Tableau.Migration/ObjectExtensions.cs +++ b/src/Tableau.Migration/ObjectExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/BreadthFirstPathHierarchyPager.cs b/src/Tableau.Migration/Paging/BreadthFirstPathHierarchyPager.cs index d2a86a9..8a1d1eb 100644 --- a/src/Tableau.Migration/Paging/BreadthFirstPathHierarchyPager.cs +++ b/src/Tableau.Migration/Paging/BreadthFirstPathHierarchyPager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/IPageInfo.cs b/src/Tableau.Migration/Paging/IPageInfo.cs index 24b3395..fd662d1 100644 --- a/src/Tableau.Migration/Paging/IPageInfo.cs +++ b/src/Tableau.Migration/Paging/IPageInfo.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/IPagedResult.cs b/src/Tableau.Migration/Paging/IPagedResult.cs index db03986..469c412 100644 --- a/src/Tableau.Migration/Paging/IPagedResult.cs +++ b/src/Tableau.Migration/Paging/IPagedResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/IPager.cs b/src/Tableau.Migration/Paging/IPager.cs index 08b3992..75e72ba 100644 --- a/src/Tableau.Migration/Paging/IPager.cs +++ b/src/Tableau.Migration/Paging/IPager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/IndexedPagerBase.cs b/src/Tableau.Migration/Paging/IndexedPagerBase.cs index 18871ab..b07f4e0 100644 --- a/src/Tableau.Migration/Paging/IndexedPagerBase.cs +++ b/src/Tableau.Migration/Paging/IndexedPagerBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Paging/PagedResult.cs b/src/Tableau.Migration/Paging/PagedResult.cs index 5b92ae7..9c2950f 100644 --- a/src/Tableau.Migration/Paging/PagedResult.cs +++ b/src/Tableau.Migration/Paging/PagedResult.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/PipelineProfile.cs b/src/Tableau.Migration/PipelineProfile.cs index 1e1e2d4..1be70c6 100644 --- a/src/Tableau.Migration/PipelineProfile.cs +++ b/src/Tableau.Migration/PipelineProfile.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Properties/AssemblyInfo.cs b/src/Tableau.Migration/Properties/AssemblyInfo.cs index 88f3ad9..6300ce3 100644 --- a/src/Tableau.Migration/Properties/AssemblyInfo.cs +++ b/src/Tableau.Migration/Properties/AssemblyInfo.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Resources/AllUsersTranslations.cs b/src/Tableau.Migration/Resources/AllUsersTranslations.cs index 5428383..5ae618f 100644 --- a/src/Tableau.Migration/Resources/AllUsersTranslations.cs +++ b/src/Tableau.Migration/Resources/AllUsersTranslations.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Resources/DefaultExternalAssetsProjectTranslations.cs b/src/Tableau.Migration/Resources/DefaultExternalAssetsProjectTranslations.cs index f0b8e06..ab7f288 100644 --- a/src/Tableau.Migration/Resources/DefaultExternalAssetsProjectTranslations.cs +++ b/src/Tableau.Migration/Resources/DefaultExternalAssetsProjectTranslations.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Resources/ISharedResourcesLocalizer.cs b/src/Tableau.Migration/Resources/ISharedResourcesLocalizer.cs index 2cd0c12..f414680 100644 --- a/src/Tableau.Migration/Resources/ISharedResourcesLocalizer.cs +++ b/src/Tableau.Migration/Resources/ISharedResourcesLocalizer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Resources/SharedResourceKeys.cs b/src/Tableau.Migration/Resources/SharedResourceKeys.cs index 95b9d99..d4618e3 100644 --- a/src/Tableau.Migration/Resources/SharedResourceKeys.cs +++ b/src/Tableau.Migration/Resources/SharedResourceKeys.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Resources/SharedResourcesLocalizer.cs b/src/Tableau.Migration/Resources/SharedResourcesLocalizer.cs index 7691b74..778e640 100644 --- a/src/Tableau.Migration/Resources/SharedResourcesLocalizer.cs +++ b/src/Tableau.Migration/Resources/SharedResourcesLocalizer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/Result.cs b/src/Tableau.Migration/Result.cs index 06b2166..fff4ce5 100644 --- a/src/Tableau.Migration/Result.cs +++ b/src/Tableau.Migration/Result.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ResultBuilder.cs b/src/Tableau.Migration/ResultBuilder.cs index f1ab0bc..04f3993 100644 --- a/src/Tableau.Migration/ResultBuilder.cs +++ b/src/Tableau.Migration/ResultBuilder.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/StreamExtensions.cs b/src/Tableau.Migration/StreamExtensions.cs index 636da14..917aa27 100644 --- a/src/Tableau.Migration/StreamExtensions.cs +++ b/src/Tableau.Migration/StreamExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/StreamProcessorBase.cs b/src/Tableau.Migration/StreamProcessorBase.cs index 7cc9f29..2545725 100644 --- a/src/Tableau.Migration/StreamProcessorBase.cs +++ b/src/Tableau.Migration/StreamProcessorBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/StringEnum.cs b/src/Tableau.Migration/StringEnum.cs index f7b67e5..8b32903 100644 --- a/src/Tableau.Migration/StringEnum.cs +++ b/src/Tableau.Migration/StringEnum.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/TaskDelayer.cs b/src/Tableau.Migration/TaskDelayer.cs index 81b53ef..7343963 100644 --- a/src/Tableau.Migration/TaskDelayer.cs +++ b/src/Tableau.Migration/TaskDelayer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/TaskExtensions.cs b/src/Tableau.Migration/TaskExtensions.cs index 27c5fe9..c1a9010 100644 --- a/src/Tableau.Migration/TaskExtensions.cs +++ b/src/Tableau.Migration/TaskExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/TypeExtensions.cs b/src/Tableau.Migration/TypeExtensions.cs index fd4dfec..3669325 100644 --- a/src/Tableau.Migration/TypeExtensions.cs +++ b/src/Tableau.Migration/TypeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/UserAgentSuffixProvider.cs b/src/Tableau.Migration/UserAgentSuffixProvider.cs index db497a6..2d75fe0 100644 --- a/src/Tableau.Migration/UserAgentSuffixProvider.cs +++ b/src/Tableau.Migration/UserAgentSuffixProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/src/Tableau.Migration/ValidationExtensions.cs b/src/Tableau.Migration/ValidationExtensions.cs index 3ddedf0..eca937f 100644 --- a/src/Tableau.Migration/ValidationExtensions.cs +++ b/src/Tableau.Migration/ValidationExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Python.TestApplication/helper.py b/tests/Python.TestApplication/helper.py index 336932a..b5009a4 100644 --- a/tests/Python.TestApplication/helper.py +++ b/tests/Python.TestApplication/helper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/main.py b/tests/Python.TestApplication/main.py index b2a4e09..5a99b16 100644 --- a/tests/Python.TestApplication/main.py +++ b/tests/Python.TestApplication/main.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/migration_testcomponents_engine_manifest.py b/tests/Python.TestApplication/migration_testcomponents_engine_manifest.py index e315933..80c1f59 100644 --- a/tests/Python.TestApplication/migration_testcomponents_engine_manifest.py +++ b/tests/Python.TestApplication/migration_testcomponents_engine_manifest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/migration_testcomponents_filters.py b/tests/Python.TestApplication/migration_testcomponents_filters.py index acb49cc..c62eeb8 100644 --- a/tests/Python.TestApplication/migration_testcomponents_filters.py +++ b/tests/Python.TestApplication/migration_testcomponents_filters.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/migration_testcomponents_hooks.py b/tests/Python.TestApplication/migration_testcomponents_hooks.py index f5cf54d..8118003 100644 --- a/tests/Python.TestApplication/migration_testcomponents_hooks.py +++ b/tests/Python.TestApplication/migration_testcomponents_hooks.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/migration_testcomponents_mappings.py b/tests/Python.TestApplication/migration_testcomponents_mappings.py index d29f5e5..ac45a95 100644 --- a/tests/Python.TestApplication/migration_testcomponents_mappings.py +++ b/tests/Python.TestApplication/migration_testcomponents_mappings.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/test_tableau_cloud_username_mapping.py b/tests/Python.TestApplication/test_tableau_cloud_username_mapping.py index 061626f..34f0f3e 100644 --- a/tests/Python.TestApplication/test_tableau_cloud_username_mapping.py +++ b/tests/Python.TestApplication/test_tableau_cloud_username_mapping.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/testapplication_tests/__init__.py b/tests/Python.TestApplication/testapplication_tests/__init__.py index d57cc8f..315e251 100644 --- a/tests/Python.TestApplication/testapplication_tests/__init__.py +++ b/tests/Python.TestApplication/testapplication_tests/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Python.TestApplication/testapplication_tests/test_classes.py b/tests/Python.TestApplication/testapplication_tests/test_classes.py index d50e0ac..6be294a 100644 --- a/tests/Python.TestApplication/testapplication_tests/test_classes.py +++ b/tests/Python.TestApplication/testapplication_tests/test_classes.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, Salesforce, Inc. +# Copyright (c) 2024, Salesforce, Inc. # SPDX-License-Identifier: Apache-2 # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/tests/Tableau.Migration.TestApplication/Config/DomainOptions.cs b/tests/Tableau.Migration.TestApplication/Config/DomainOptions.cs index 209c8e3..98963e8 100644 --- a/tests/Tableau.Migration.TestApplication/Config/DomainOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Config/DomainOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Config/EndpointOptions.cs b/tests/Tableau.Migration.TestApplication/Config/EndpointOptions.cs index 9ddc5a6..b0a4001 100644 --- a/tests/Tableau.Migration.TestApplication/Config/EndpointOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Config/EndpointOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Config/LogOptions.cs b/tests/Tableau.Migration.TestApplication/Config/LogOptions.cs index c416c1c..7907877 100644 --- a/tests/Tableau.Migration.TestApplication/Config/LogOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Config/LogOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Config/SpecialUsersOptions.cs b/tests/Tableau.Migration.TestApplication/Config/SpecialUsersOptions.cs index b07463d..1f7fd0a 100644 --- a/tests/Tableau.Migration.TestApplication/Config/SpecialUsersOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Config/SpecialUsersOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Config/TestApplicationOptions.cs b/tests/Tableau.Migration.TestApplication/Config/TestApplicationOptions.cs index c64ce72..303a2ff 100644 --- a/tests/Tableau.Migration.TestApplication/Config/TestApplicationOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Config/TestApplicationOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/NonDomainUserFilter.cs b/tests/Tableau.Migration.TestApplication/Hooks/NonDomainUserFilter.cs index 71a85ca..b8b5448 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/NonDomainUserFilter.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/NonDomainUserFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/SaveManifestAfterBatchMigrationCompletedHook.cs b/tests/Tableau.Migration.TestApplication/Hooks/SaveManifestAfterBatchMigrationCompletedHook.cs index 86b1016..5ce0b12 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/SaveManifestAfterBatchMigrationCompletedHook.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/SaveManifestAfterBatchMigrationCompletedHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/SkipFilter.cs b/tests/Tableau.Migration.TestApplication/Hooks/SkipFilter.cs index ff1bd64..65eec69 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/SkipFilter.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/SkipFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserFilter.cs b/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserFilter.cs index 5a82960..4851472 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserFilter.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserMapping.cs b/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserMapping.cs index 60490a7..e7adcec 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserMapping.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/SpecialUserMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameMapping.cs b/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameMapping.cs index 35372c8..d7769fb 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameMapping.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameOptions.cs b/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameOptions.cs index a0a4810..05b2f69 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameOptions.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/TestTableauCloudUsernameOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/TimeLoggerAfterActionHook.cs b/tests/Tableau.Migration.TestApplication/Hooks/TimeLoggerAfterActionHook.cs index 9557e46..5045e6a 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/TimeLoggerAfterActionHook.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/TimeLoggerAfterActionHook.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserFilter.cs b/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserFilter.cs index e29adde..f1fef1e 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserFilter.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserFilter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserMapping.cs b/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserMapping.cs index f04baf8..b93849c 100644 --- a/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserMapping.cs +++ b/tests/Tableau.Migration.TestApplication/Hooks/UnlicensedUserMapping.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/Program.cs b/tests/Tableau.Migration.TestApplication/Program.cs index d2c01f3..3b56784 100644 --- a/tests/Tableau.Migration.TestApplication/Program.cs +++ b/tests/Tableau.Migration.TestApplication/Program.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestApplication/TestApplication.cs b/tests/Tableau.Migration.TestApplication/TestApplication.cs index bb6eeae..4783910 100644 --- a/tests/Tableau.Migration.TestApplication/TestApplication.cs +++ b/tests/Tableau.Migration.TestApplication/TestApplication.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/AutoFixtureTestBase.cs b/tests/Tableau.Migration.TestComponents.Tests/AutoFixtureTestBase.cs index 0e04ff1..53bb09a 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/AutoFixtureTestBase.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/AutoFixtureTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/Engine/Manifest/TestMigrationManifestSerializer.cs b/tests/Tableau.Migration.TestComponents.Tests/Engine/Manifest/TestMigrationManifestSerializer.cs index e73be0b..69d03c4 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/Engine/Manifest/TestMigrationManifestSerializer.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/Engine/Manifest/TestMigrationManifestSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentLocation.cs b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentLocation.cs index 80662b5..f65194d 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentLocation.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentLocation.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentReference.cs b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentReference.cs index 8213abf..6263c46 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentReference.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonContentReference.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonManifestEntry.cs b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonManifestEntry.cs index 636d21c..f03b4a2 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonManifestEntry.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/JsonConverter/JsonObjects/TestJsonManifestEntry.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/MockServiceProvider.cs b/tests/Tableau.Migration.TestComponents.Tests/MockServiceProvider.cs index 1b80d02..38689da 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/MockServiceProvider.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/MockServiceProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents.Tests/Usings.cs b/tests/Tableau.Migration.TestComponents.Tests/Usings.cs index 22f1f71..d64812f 100644 --- a/tests/Tableau.Migration.TestComponents.Tests/Usings.cs +++ b/tests/Tableau.Migration.TestComponents.Tests/Usings.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/Engine/Manifest/MigrationManifestSerializer.cs b/tests/Tableau.Migration.TestComponents/Engine/Manifest/MigrationManifestSerializer.cs index 503b2d1..36e63ea 100644 --- a/tests/Tableau.Migration.TestComponents/Engine/Manifest/MigrationManifestSerializer.cs +++ b/tests/Tableau.Migration.TestComponents/Engine/Manifest/MigrationManifestSerializer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/IServiceCollectionExtensions.cs b/tests/Tableau.Migration.TestComponents/IServiceCollectionExtensions.cs index b43bce6..e4a1361 100644 --- a/tests/Tableau.Migration.TestComponents/IServiceCollectionExtensions.cs +++ b/tests/Tableau.Migration.TestComponents/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/Constants.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/Constants.cs index b31f393..a49a38a 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/Constants.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/Constants.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/ExceptionJsonConverter.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/ExceptionJsonConverter.cs index 4672b1f..76b82de 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/ExceptionJsonConverter.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/ExceptionJsonConverter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/Exceptions/MismatchException.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/Exceptions/MismatchException.cs index 82ff69f..47d0d0a 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/Exceptions/MismatchException.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/Exceptions/MismatchException.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentLocation.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentLocation.cs index 09f7522..3c294cf 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentLocation.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentLocation.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentReference.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentReference.cs index 47bf38a..d291c57 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentReference.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonContentReference.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonManifestEntry.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonManifestEntry.cs index d27287a..f1e12c1 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonManifestEntry.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/JsonObjects/JsonManifestEntry.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionReader.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionReader.cs index f406dfa..9c4049e 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionReader.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionReader.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionWriter.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionWriter.cs index 5e89260..aeed85e 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionWriter.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/MigrationManifestEntryCollectionWriter.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.TestComponents/JsonConverters/SerializeableMigrationManifest.cs b/tests/Tableau.Migration.TestComponents/JsonConverters/SerializeableMigrationManifest.cs index c1a7cba..fce3145 100644 --- a/tests/Tableau.Migration.TestComponents/JsonConverters/SerializeableMigrationManifest.cs +++ b/tests/Tableau.Migration.TestComponents/JsonConverters/SerializeableMigrationManifest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/AutoFixtureTestBase.cs b/tests/Tableau.Migration.Tests/AutoFixtureTestBase.cs index dd53ad6..9960329 100644 --- a/tests/Tableau.Migration.Tests/AutoFixtureTestBase.cs +++ b/tests/Tableau.Migration.Tests/AutoFixtureTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/BaseUriComparer.cs b/tests/Tableau.Migration.Tests/BaseUriComparer.cs index 7ee0949..548889a 100644 --- a/tests/Tableau.Migration.Tests/BaseUriComparer.cs +++ b/tests/Tableau.Migration.Tests/BaseUriComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/CultureNameTestDataAttribute.cs b/tests/Tableau.Migration.Tests/CultureNameTestDataAttribute.cs index c71793f..e45ec51 100644 --- a/tests/Tableau.Migration.Tests/CultureNameTestDataAttribute.cs +++ b/tests/Tableau.Migration.Tests/CultureNameTestDataAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/CultureSilo.cs b/tests/Tableau.Migration.Tests/CultureSilo.cs index 564564a..0d3bc4f 100644 --- a/tests/Tableau.Migration.Tests/CultureSilo.cs +++ b/tests/Tableau.Migration.Tests/CultureSilo.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/EnumDataAttribute.cs b/tests/Tableau.Migration.Tests/EnumDataAttribute.cs index d964ea9..1ebb42e 100644 --- a/tests/Tableau.Migration.Tests/EnumDataAttribute.cs +++ b/tests/Tableau.Migration.Tests/EnumDataAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/HttpContentExtensions.cs b/tests/Tableau.Migration.Tests/HttpContentExtensions.cs index ad8b196..51081a5 100644 --- a/tests/Tableau.Migration.Tests/HttpContentExtensions.cs +++ b/tests/Tableau.Migration.Tests/HttpContentExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/HttpMessageHandlerExtensions.cs b/tests/Tableau.Migration.Tests/HttpMessageHandlerExtensions.cs index a9a2f40..4d78238 100644 --- a/tests/Tableau.Migration.Tests/HttpMessageHandlerExtensions.cs +++ b/tests/Tableau.Migration.Tests/HttpMessageHandlerExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/HttpRequestMessageExtensions.cs b/tests/Tableau.Migration.Tests/HttpRequestMessageExtensions.cs index b83a23d..25d97ba 100644 --- a/tests/Tableau.Migration.Tests/HttpRequestMessageExtensions.cs +++ b/tests/Tableau.Migration.Tests/HttpRequestMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/HttpStatusCodeExtensions.cs b/tests/Tableau.Migration.Tests/HttpStatusCodeExtensions.cs index 5203754..d9c7f71 100644 --- a/tests/Tableau.Migration.Tests/HttpStatusCodeExtensions.cs +++ b/tests/Tableau.Migration.Tests/HttpStatusCodeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IContainerContentExtensions.cs b/tests/Tableau.Migration.Tests/IContainerContentExtensions.cs index 2b1cfdd..7a668b7 100644 --- a/tests/Tableau.Migration.Tests/IContainerContentExtensions.cs +++ b/tests/Tableau.Migration.Tests/IContainerContentExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IDataSourceExtensions.cs b/tests/Tableau.Migration.Tests/IDataSourceExtensions.cs index 5c01df6..703e4d1 100644 --- a/tests/Tableau.Migration.Tests/IDataSourceExtensions.cs +++ b/tests/Tableau.Migration.Tests/IDataSourceExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IEnumerableExtensions.cs b/tests/Tableau.Migration.Tests/IEnumerableExtensions.cs index 61ccdd0..5dffc26 100644 --- a/tests/Tableau.Migration.Tests/IEnumerableExtensions.cs +++ b/tests/Tableau.Migration.Tests/IEnumerableExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IEnumeratorExtensions.cs b/tests/Tableau.Migration.Tests/IEnumeratorExtensions.cs index 522b9bc..c2aaabd 100644 --- a/tests/Tableau.Migration.Tests/IEnumeratorExtensions.cs +++ b/tests/Tableau.Migration.Tests/IEnumeratorExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IHttpResponseMessageExtensions.cs b/tests/Tableau.Migration.Tests/IHttpResponseMessageExtensions.cs index 1294ac8..e3bcc83 100644 --- a/tests/Tableau.Migration.Tests/IHttpResponseMessageExtensions.cs +++ b/tests/Tableau.Migration.Tests/IHttpResponseMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IResultTests.cs b/tests/Tableau.Migration.Tests/IResultTests.cs index 4737010..1ccad64 100644 --- a/tests/Tableau.Migration.Tests/IResultTests.cs +++ b/tests/Tableau.Migration.Tests/IResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IServiceCollectionExtensions.cs b/tests/Tableau.Migration.Tests/IServiceCollectionExtensions.cs index 813e60f..3310365 100644 --- a/tests/Tableau.Migration.Tests/IServiceCollectionExtensions.cs +++ b/tests/Tableau.Migration.Tests/IServiceCollectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IServiceCollectionExtensionsTestBase.cs b/tests/Tableau.Migration.Tests/IServiceCollectionExtensionsTestBase.cs index 6a6fb3e..48d34c8 100644 --- a/tests/Tableau.Migration.Tests/IServiceCollectionExtensionsTestBase.cs +++ b/tests/Tableau.Migration.Tests/IServiceCollectionExtensionsTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/ITagTypeComparer.cs b/tests/Tableau.Migration.Tests/ITagTypeComparer.cs index a2e8b8b..291beb4 100644 --- a/tests/Tableau.Migration.Tests/ITagTypeComparer.cs +++ b/tests/Tableau.Migration.Tests/ITagTypeComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IViewReferenceTypeComparer.cs b/tests/Tableau.Migration.Tests/IViewReferenceTypeComparer.cs index a741414..1078fb4 100644 --- a/tests/Tableau.Migration.Tests/IViewReferenceTypeComparer.cs +++ b/tests/Tableau.Migration.Tests/IViewReferenceTypeComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IWorkbookConnectionComparer.cs b/tests/Tableau.Migration.Tests/IWorkbookConnectionComparer.cs index c565bf9..ab10a9b 100644 --- a/tests/Tableau.Migration.Tests/IWorkbookConnectionComparer.cs +++ b/tests/Tableau.Migration.Tests/IWorkbookConnectionComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/IWorkbookExtensions.cs b/tests/Tableau.Migration.Tests/IWorkbookExtensions.cs index 250eda1..a54385a 100644 --- a/tests/Tableau.Migration.Tests/IWorkbookExtensions.cs +++ b/tests/Tableau.Migration.Tests/IWorkbookExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/MemoryPager.cs b/tests/Tableau.Migration.Tests/MemoryPager.cs index f6bb3c5..5633d78 100644 --- a/tests/Tableau.Migration.Tests/MemoryPager.cs +++ b/tests/Tableau.Migration.Tests/MemoryPager.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/MockExtensions.cs b/tests/Tableau.Migration.Tests/MockExtensions.cs index 4dd6899..6f68b89 100644 --- a/tests/Tableau.Migration.Tests/MockExtensions.cs +++ b/tests/Tableau.Migration.Tests/MockExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/MockHttpClient.cs b/tests/Tableau.Migration.Tests/MockHttpClient.cs index 2b97b2b..ca1e9fe 100644 --- a/tests/Tableau.Migration.Tests/MockHttpClient.cs +++ b/tests/Tableau.Migration.Tests/MockHttpClient.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/MockServiceProvider.cs b/tests/Tableau.Migration.Tests/MockServiceProvider.cs index eef255e..e55cb5f 100644 --- a/tests/Tableau.Migration.Tests/MockServiceProvider.cs +++ b/tests/Tableau.Migration.Tests/MockServiceProvider.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/MockSharedResourcesLocalizer.cs b/tests/Tableau.Migration.Tests/MockSharedResourcesLocalizer.cs index 8f0ebe3..4af0923 100644 --- a/tests/Tableau.Migration.Tests/MockSharedResourcesLocalizer.cs +++ b/tests/Tableau.Migration.Tests/MockSharedResourcesLocalizer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/NullEmptyWhiteSpaceDataAttribute.cs b/tests/Tableau.Migration.Tests/NullEmptyWhiteSpaceDataAttribute.cs index f6f6469..d5fbd6a 100644 --- a/tests/Tableau.Migration.Tests/NullEmptyWhiteSpaceDataAttribute.cs +++ b/tests/Tableau.Migration.Tests/NullEmptyWhiteSpaceDataAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/NullableGuidParseDataAttribute.cs b/tests/Tableau.Migration.Tests/NullableGuidParseDataAttribute.cs index cced97b..6b1180b 100644 --- a/tests/Tableau.Migration.Tests/NullableGuidParseDataAttribute.cs +++ b/tests/Tableau.Migration.Tests/NullableGuidParseDataAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/ObjectExtensions.cs b/tests/Tableau.Migration.Tests/ObjectExtensions.cs index d97c61c..9748d3b 100644 --- a/tests/Tableau.Migration.Tests/ObjectExtensions.cs +++ b/tests/Tableau.Migration.Tests/ObjectExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Reflection/ObjectReflectionWrapper.cs b/tests/Tableau.Migration.Tests/Reflection/ObjectReflectionWrapper.cs index dd34b26..34fbc2b 100644 --- a/tests/Tableau.Migration.Tests/Reflection/ObjectReflectionWrapper.cs +++ b/tests/Tableau.Migration.Tests/Reflection/ObjectReflectionWrapper.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Reflection/SeekableCryptoStreamWrapper.cs b/tests/Tableau.Migration.Tests/Reflection/SeekableCryptoStreamWrapper.cs index e55d0b3..d7f1b4d 100644 --- a/tests/Tableau.Migration.Tests/Reflection/SeekableCryptoStreamWrapper.cs +++ b/tests/Tableau.Migration.Tests/Reflection/SeekableCryptoStreamWrapper.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Reflection/TypeReflectionWrapper.cs b/tests/Tableau.Migration.Tests/Reflection/TypeReflectionWrapper.cs index cb7463d..78e6a85 100644 --- a/tests/Tableau.Migration.Tests/Reflection/TypeReflectionWrapper.cs +++ b/tests/Tableau.Migration.Tests/Reflection/TypeReflectionWrapper.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/ReflectionExtensions.cs b/tests/Tableau.Migration.Tests/ReflectionExtensions.cs index 7004792..f1248da 100644 --- a/tests/Tableau.Migration.Tests/ReflectionExtensions.cs +++ b/tests/Tableau.Migration.Tests/ReflectionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/RestExceptionExtensions.cs b/tests/Tableau.Migration.Tests/RestExceptionExtensions.cs index 9d90061..0e01c36 100644 --- a/tests/Tableau.Migration.Tests/RestExceptionExtensions.cs +++ b/tests/Tableau.Migration.Tests/RestExceptionExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/ResultExtensions.cs b/tests/Tableau.Migration.Tests/ResultExtensions.cs index 729bbc7..1dbccdb 100644 --- a/tests/Tableau.Migration.Tests/ResultExtensions.cs +++ b/tests/Tableau.Migration.Tests/ResultExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/SimulatedConnectionComparer.cs b/tests/Tableau.Migration.Tests/SimulatedConnectionComparer.cs index 981dbc5..0725740 100644 --- a/tests/Tableau.Migration.Tests/SimulatedConnectionComparer.cs +++ b/tests/Tableau.Migration.Tests/SimulatedConnectionComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/MultiDestinationSimulationTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/MultiDestinationSimulationTestBase.cs index 129730f..211d117 100644 --- a/tests/Tableau.Migration.Tests/Simulation/MultiDestinationSimulationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/MultiDestinationSimulationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/ServerToCloudSimulationTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/ServerToCloudSimulationTestBase.cs index 7efabb7..8dde793 100644 --- a/tests/Tableau.Migration.Tests/Simulation/ServerToCloudSimulationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/ServerToCloudSimulationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/ServerToServerSimulationTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/ServerToServerSimulationTestBase.cs index f8b552a..9ba4379 100644 --- a/tests/Tableau.Migration.Tests/Simulation/ServerToServerSimulationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/ServerToServerSimulationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/SimulationTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/SimulationTestBase.cs index 715dad8..06bf2eb 100644 --- a/tests/Tableau.Migration.Tests/Simulation/SimulationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/SimulationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/SingleServerSimulationTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/SingleServerSimulationTestBase.cs index f0f19fc..1661bd2 100644 --- a/tests/Tableau.Migration.Tests/Simulation/SingleServerSimulationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/SingleServerSimulationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/TableauDataExtensions.cs b/tests/Tableau.Migration.Tests/Simulation/TableauDataExtensions.cs index 1e98534..393b26e 100644 --- a/tests/Tableau.Migration.Tests/Simulation/TableauDataExtensions.cs +++ b/tests/Tableau.Migration.Tests/Simulation/TableauDataExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTestBase.cs index e952039..a6a6cc0 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTests.cs index d423306..c9098fc 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/DataSourcesApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/DataSourcesApiClientTests.cs index 24acc3a..db4dbae 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/DataSourcesApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/DataSourcesApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/GroupsApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/GroupsApiClientTests.cs index 5d2051d..9dd378d 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/GroupsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/GroupsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/JobsApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/JobsApiClientTests.cs index 434014a..4633559 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/JobsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/JobsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/PermissionsContentApiClientTestBase.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/PermissionsContentApiClientTestBase.cs index b6dc49a..a1b1c99 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/PermissionsContentApiClientTestBase.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/PermissionsContentApiClientTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ProjectsApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ProjectsApiClientTests.cs index 2fb00ac..e9288a3 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ProjectsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/ProjectsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/SitesApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/SitesApiClientTests.cs index 1cf028f..9b0536c 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/SitesApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/SitesApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/UsersApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/UsersApiClientTests.cs index 94e2b95..58f19d4 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/UsersApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/UsersApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/WorkbooksApiClientTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/WorkbooksApiClientTests.cs index 66ae689..6255ddb 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/Api/WorkbooksApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/Api/WorkbooksApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/DataSourceMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/DataSourceMigrationTests.cs index 1b659e4..d476101 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/DataSourceMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/DataSourceMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/ErrorHandlingTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/ErrorHandlingTests.cs index b271617..ff529bb 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/ErrorHandlingTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/ErrorHandlingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/GroupMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/GroupMigrationTests.cs index a7ff875..18c933e 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/GroupMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/GroupMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/HookTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/HookTests.cs index 050bbf6..e34df9a 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/HookTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/HookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/IncrementalMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/IncrementalMigrationTests.cs index 2ecdcac..c8d1f4f 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/IncrementalMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/IncrementalMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/MigratorTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/MigratorTests.cs index 7313428..c050e6a 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/MigratorTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/MigratorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/ProjectMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/ProjectMigrationTests.cs index 347474f..ef790de 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/ProjectMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/ProjectMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/SimulatorFactoryTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/SimulatorFactoryTests.cs index b773e78..e985409 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/SimulatorFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/SimulatorFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/UserMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/UserMigrationTests.cs index 98ec914..4f73701 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/UserMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/UserMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Simulation/Tests/WorkbookMigrationTests.cs b/tests/Tableau.Migration.Tests/Simulation/Tests/WorkbookMigrationTests.cs index b7f894e..0010cf9 100644 --- a/tests/Tableau.Migration.Tests/Simulation/Tests/WorkbookMigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Simulation/Tests/WorkbookMigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/StreamFactory.cs b/tests/Tableau.Migration.Tests/StreamFactory.cs index 7d9a38e..3b8a4ba 100644 --- a/tests/Tableau.Migration.Tests/StreamFactory.cs +++ b/tests/Tableau.Migration.Tests/StreamFactory.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/StreamFactoryOptions.cs b/tests/Tableau.Migration.Tests/StreamFactoryOptions.cs index 3c77ff6..00a61d1 100644 --- a/tests/Tableau.Migration.Tests/StreamFactoryOptions.cs +++ b/tests/Tableau.Migration.Tests/StreamFactoryOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/StringEnumDataAttribute.cs b/tests/Tableau.Migration.Tests/StringEnumDataAttribute.cs index d4e3412..ec6c6db 100644 --- a/tests/Tableau.Migration.Tests/StringEnumDataAttribute.cs +++ b/tests/Tableau.Migration.Tests/StringEnumDataAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TagExtensions.cs b/tests/Tableau.Migration.Tests/TagExtensions.cs index 75a8b59..be14cac 100644 --- a/tests/Tableau.Migration.Tests/TagExtensions.cs +++ b/tests/Tableau.Migration.Tests/TagExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestConstants.cs b/tests/Tableau.Migration.Tests/TestConstants.cs index c01e573..26f7f9c 100644 --- a/tests/Tableau.Migration.Tests/TestConstants.cs +++ b/tests/Tableau.Migration.Tests/TestConstants.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestContentType.cs b/tests/Tableau.Migration.Tests/TestContentType.cs index ba2cdcd..302257c 100644 --- a/tests/Tableau.Migration.Tests/TestContentType.cs +++ b/tests/Tableau.Migration.Tests/TestContentType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestFileContentType.cs b/tests/Tableau.Migration.Tests/TestFileContentType.cs index 86f80ba..9ae1f20 100644 --- a/tests/Tableau.Migration.Tests/TestFileContentType.cs +++ b/tests/Tableau.Migration.Tests/TestFileContentType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestHttpStreamProcessor.cs b/tests/Tableau.Migration.Tests/TestHttpStreamProcessor.cs index 36524d3..4023a5e 100644 --- a/tests/Tableau.Migration.Tests/TestHttpStreamProcessor.cs +++ b/tests/Tableau.Migration.Tests/TestHttpStreamProcessor.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestPagedTableauServerResponse.cs b/tests/Tableau.Migration.Tests/TestPagedTableauServerResponse.cs index 5dc4054..fa112c1 100644 --- a/tests/Tableau.Migration.Tests/TestPagedTableauServerResponse.cs +++ b/tests/Tableau.Migration.Tests/TestPagedTableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestPlanOptions.cs b/tests/Tableau.Migration.Tests/TestPlanOptions.cs index 4485eeb..b0dc393 100644 --- a/tests/Tableau.Migration.Tests/TestPlanOptions.cs +++ b/tests/Tableau.Migration.Tests/TestPlanOptions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestPublishType.cs b/tests/Tableau.Migration.Tests/TestPublishType.cs index b3e60a4..3b485de 100644 --- a/tests/Tableau.Migration.Tests/TestPublishType.cs +++ b/tests/Tableau.Migration.Tests/TestPublishType.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestSharedResourcesLocalizer.cs b/tests/Tableau.Migration.Tests/TestSharedResourcesLocalizer.cs index 000b661..7944d9e 100644 --- a/tests/Tableau.Migration.Tests/TestSharedResourcesLocalizer.cs +++ b/tests/Tableau.Migration.Tests/TestSharedResourcesLocalizer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TestTableauServerResponse.cs b/tests/Tableau.Migration.Tests/TestTableauServerResponse.cs index c638e17..9ac00e6 100644 --- a/tests/Tableau.Migration.Tests/TestTableauServerResponse.cs +++ b/tests/Tableau.Migration.Tests/TestTableauServerResponse.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/TypeExtensionTests.cs b/tests/Tableau.Migration.Tests/TypeExtensionTests.cs index df35309..657c2be 100644 --- a/tests/Tableau.Migration.Tests/TypeExtensionTests.cs +++ b/tests/Tableau.Migration.Tests/TypeExtensionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestBase.cs index cb4bb7f..42312a3 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestDependencies.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestDependencies.cs index 4936470..a4584f6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestDependencies.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTestDependencies.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTests.cs index b156a9c..b78c1ae 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiListPagerTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiListPagerTests.cs index 4c4f40d..0afab7b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiListPagerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiListPagerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiPageAccessorTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiPageAccessorTestBase.cs index acdc7bc..ad0321e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiPageAccessorTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiPageAccessorTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ApiTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/ApiTestBase.cs index 5143775..d38f01b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ApiTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ApiTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/AuthenticationTokenProviderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/AuthenticationTokenProviderTests.cs index a638c8b..8919597 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/AuthenticationTokenProviderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/AuthenticationTokenProviderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/GroupsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/GroupsApiClientTests.cs index 1157196..6942cc1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/GroupsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/GroupsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IApiClientTestDependencies.cs b/tests/Tableau.Migration.Tests/Unit/Api/IApiClientTestDependencies.cs index aa0005f..20701ed 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IApiClientTestDependencies.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IApiClientTestDependencies.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IContentFileStoreExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/IContentFileStoreExtensionsTests.cs index 925e057..b8d8a89 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IContentFileStoreExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IContentFileStoreExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IContentReferenceFinderFactoryExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/IContentReferenceFinderFactoryExtensionsTests.cs index d06fbb1..09ded25 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IContentReferenceFinderFactoryExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IContentReferenceFinderFactoryExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IHttpRequestBuilderExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/IHttpRequestBuilderExtensionsTests.cs index b2cf4da..b2e6e13 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IHttpRequestBuilderExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IHttpRequestBuilderExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/IHttpResponseMessageExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/IHttpResponseMessageExtensionsTests.cs index 26afd75..7f88090 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/IHttpResponseMessageExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/IHttpResponseMessageExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/JobsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/JobsApiClientTests.cs index 5042299..9c62a55 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/JobsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/JobsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Labels/LabelsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Labels/LabelsApiClientTests.cs index 2e2587d..30c6ebe 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Labels/LabelsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Labels/LabelsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/MockExtensions.cs b/tests/Tableau.Migration.Tests/Unit/Api/MockExtensions.cs index f42ffe6..8672791 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/MockExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/MockExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/CreateProjectOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/CreateProjectOptionsTests.cs index 8fdd7f4..9a06e96 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/CreateProjectOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/CreateProjectOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/FailedJobExceptionTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/FailedJobExceptionTests.cs index ec0a50b..924e0f7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/FailedJobExceptionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/FailedJobExceptionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/FileDownloadTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/FileDownloadTests.cs index d0ef469..17754c6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/FileDownloadTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/FileDownloadTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/IUserExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/IUserExtensionsTests.cs index 26f9f5b..91f6270 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/IUserExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/IUserExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/ImportJobTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/ImportJobTests.cs index 9b78efa..eb86d45 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/ImportJobTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/ImportJobTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/PagedTableauServerResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/PagedTableauServerResponseTests.cs index b5b52b6..3afb1bb 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/PagedTableauServerResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/PagedTableauServerResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInRequestTests.cs index 2318329..3799c92 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInResultTests.cs index f8c1fd8..b9719b2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/SignInResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/TimeoutJobExceptionTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/TimeoutJobExceptionTests.cs index fcdefd1..d1a8bb4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/TimeoutJobExceptionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/TimeoutJobExceptionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Models/UpdateProjectResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Models/UpdateProjectResultTests.cs index 31f9c6b..db63bb5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Models/UpdateProjectResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Models/UpdateProjectResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/PagedListApiClientTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/PagedListApiClientTestBase.cs index 5b56de8..ef40643 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/PagedListApiClientTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/PagedListApiClientTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/DefaultPermissionsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/DefaultPermissionsApiClientTests.cs index f246c96..3e821a2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/DefaultPermissionsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/DefaultPermissionsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientFactoryTests.cs index ca63f61..6a54f53 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientTests.cs index 6b50934..15620e5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsContentApiClientTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsContentApiClientTestBase.cs index 5ebebd1..c141892 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsContentApiClientTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Permissions/PermissionsContentApiClientTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ProjectsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ProjectsApiClientTests.cs index f18d6bc..403a571 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ProjectsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ProjectsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/DataSourcePublisherTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/DataSourcePublisherTests.cs index f34fd83..979e4dc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/DataSourcePublisherTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/DataSourcePublisherTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherBaseTests.cs index 03ad652..90113ab 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherTestBase.cs index a2d6310..5121649 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FilePublisherTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/WorkbookPublisherTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/WorkbookPublisherTests.cs index 502be76..d3e5c68 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/WorkbookPublisherTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/WorkbookPublisherTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/ContentItemUriBuilderBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/ContentItemUriBuilderBaseTests.cs index 108a8de..1c87a6f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/ContentItemUriBuilderBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/ContentItemUriBuilderBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectRequestTests.cs index c9a11e4..ef0920b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectResponseTests.cs index 121d5a5..54d2f7a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CreateProjectResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ErrorTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ErrorTests.cs index a6ac7c0..1610956 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ErrorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ErrorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/IProjectTypeExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/IProjectTypeExtensionsTests.cs index 88caaa8..fed96b2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/IProjectTypeExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/IProjectTypeExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ITagTypeComparer.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ITagTypeComparer.cs index d5121ea..93f2b88 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ITagTypeComparer.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ITagTypeComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ImportUsersFromCsvRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ImportUsersFromCsvRequestTests.cs index ca7030e..6eaa61c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ImportUsersFromCsvRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ImportUsersFromCsvRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/LabelContentTypesTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/LabelContentTypesTests.cs index 772e762..aa7b319 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/LabelContentTypesTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/LabelContentTypesTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ModelTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ModelTests.cs index b2fa871..d5248cf 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ModelTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ModelTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PagedTableauServerResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PagedTableauServerResponseTests.cs index 445cf9a..6dcc41f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PagedTableauServerResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PagedTableauServerResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/AddTagsRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/AddTagsRequestTests.cs index f1ca999..45d2e52 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/AddTagsRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/AddTagsRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateConnectionRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateConnectionRequestTests.cs index 6f609e2..36a9de4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateConnectionRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateConnectionRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateProjectRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateProjectRequestTests.cs index 7c88f93..de77a4b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateProjectRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateProjectRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateSiteRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateSiteRequestTests.cs index b80e19c..6b68e7f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateSiteRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/UpdateSiteRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderPagerTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderPagerTests.cs index d08107b..eed7779 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderPagerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderPagerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderTests.cs index ef4d812..eab5a98 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectResponsePagerTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectResponsePagerTests.cs index 7d56c30..3df3423 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectResponsePagerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/RestProjectResponsePagerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ServerInfoResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ServerInfoResponseTests.cs index 2b16362..55836a7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ServerInfoResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/ServerInfoResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInRequestTests.cs index 5190211..a7b47f1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInResponseTests.cs index b0709fd..6b70835 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SignInResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteResponseTests.cs index f0a5ec1..0e8325a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteRoleMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteRoleMappingTests.cs index 87c8a0b..1614dee 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteRoleMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/SiteRoleMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/TableauServerResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/TableauServerResponseTests.cs index 8fef8d9..a7839af 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/TableauServerResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/TableauServerResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbookResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbookResponseTests.cs index 445133f..f42f219 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbookResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbookResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbooksResponseTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbooksResponseTests.cs index b44c628..6530685 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbooksResponseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/WorkbooksResponseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/PermissionsUriBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/PermissionsUriBuilderTests.cs index 7d29b55..3680697 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/PermissionsUriBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/PermissionsUriBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestUrlPrefixesTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestUrlPrefixesTests.cs index 24e669e..96ca0ae 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestUrlPrefixesTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/RestUrlPrefixesTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/TagsUriBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/TagsUriBuilderTests.cs index ea9faaf..d73dc28 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/TagsUriBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/TagsUriBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ScopedApiClientFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ScopedApiClientFactoryTests.cs index ee24a07..ef83166 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ScopedApiClientFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ScopedApiClientFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Search/ApiContentReferenceFinderFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Search/ApiContentReferenceFinderFactoryTests.cs index 76d0bf3..480b205 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Search/ApiContentReferenceFinderFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Search/ApiContentReferenceFinderFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Search/BulkApiContentReferenceCacheTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Search/BulkApiContentReferenceCacheTests.cs index 5488e89..0396721 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Search/BulkApiContentReferenceCacheTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Search/BulkApiContentReferenceCacheTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/SerializationTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/SerializationTestBase.cs index 06156f1..3aa115c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/SerializationTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/SerializationTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ServerSessionProviderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ServerSessionProviderTests.cs index 7578409..b0b09a2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ServerSessionProviderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ServerSessionProviderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/RestUrlPatternsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/RestUrlPatternsTests.cs index 2823ffb..86b8858 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/RestUrlPatternsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/RestUrlPatternsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/UriExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/UriExtensionsTests.cs index 56a9090..25a7b5f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/UriExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Requests/UriExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/ResponseBuilderTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/ResponseBuilderTestBase.cs index b9139a5..26a33d7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/ResponseBuilderTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/ResponseBuilderTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilderTests.cs index 7e637bc..caea4d6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestGetByIdResponseBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilderTests.cs index c7a694a..82d2460 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPagedListResponseBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilderTests.cs index 16de70a..dbef3b2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPermissionsCreateResponseBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilderTests.cs index 4414791..bdb73b8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/Rest/Net/Responses/RestPostEntityResponseBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/TableauApiSimulatorFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/TableauApiSimulatorFactoryTests.cs index 6d9575f..2c21304 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Simulation/TableauApiSimulatorFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Simulation/TableauApiSimulatorFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/SitesApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/SitesApiClientTests.cs index f9e23c6..e15866e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/SitesApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/SitesApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/TableauServerVersionProviderTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/TableauServerVersionProviderTests.cs index 4cc23a5..904d7f5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/TableauServerVersionProviderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/TableauServerVersionProviderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/TableauSiteConnectionConfigurationTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/TableauSiteConnectionConfigurationTests.cs index 7f7d157..41b96b4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/TableauSiteConnectionConfigurationTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/TableauSiteConnectionConfigurationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientFactoryTests.cs index 8bc1622..c83a5d7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientTests.cs index a04c0aa..fc6bbdd 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Tags/TagsApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/UsersApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/UsersApiClientTests.cs index e79dc67..96a76f0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/UsersApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/UsersApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientFactoryTests.cs index 22ff2f4..49cfe52 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientTest.cs b/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientTest.cs index 3bdad12..16ef407 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientTest.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/ViewsApiClientTest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/WorkbooksApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/WorkbooksApiClientTests.cs index 1038a18..89ad442 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/WorkbooksApiClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/WorkbooksApiClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/AsyncDisposableResultTests.cs b/tests/Tableau.Migration.Tests/Unit/AsyncDisposableResultTests.cs index 4eef8e0..687ec91 100644 --- a/tests/Tableau.Migration.Tests/Unit/AsyncDisposableResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/AsyncDisposableResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/AutoFixtureExtensions.cs b/tests/Tableau.Migration.Tests/Unit/AutoFixtureExtensions.cs index 1d627c6..b05cad5 100644 --- a/tests/Tableau.Migration.Tests/Unit/AutoFixtureExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/AutoFixtureExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ConcurrentDictionaryExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/ConcurrentDictionaryExtensionsTests.cs index 43fcc4d..683ed3f 100644 --- a/tests/Tableau.Migration.Tests/Unit/ConcurrentDictionaryExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ConcurrentDictionaryExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/ConfigReaderTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/ConfigReaderTests.cs index 6b04d76..b8b20f4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/ConfigReaderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/ConfigReaderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/ConfigurationTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/ConfigurationTests.cs index fac60b8..096f546 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/ConfigurationTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/ConfigurationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/DefaultPermissionsContentTypeOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/DefaultPermissionsContentTypeOptionsTests.cs index efdf106..87cea6c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/DefaultPermissionsContentTypeOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/DefaultPermissionsContentTypeOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/FileOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/FileOptionsTests.cs index 94a3716..583f3e5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/FileOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/FileOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/MigrationSdkOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/MigrationSdkOptionsTests.cs index 327ea3f..2b664af 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/MigrationSdkOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/MigrationSdkOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Config/PreflightOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Config/PreflightOptionsTests.cs index 9a875b3..dce61d4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Config/PreflightOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Config/PreflightOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ContentBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ContentBaseTests.cs index 34cef91..6a32625 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ContentBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ContentBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ContentLocationComparerTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ContentLocationComparerTests.cs index da72e12..89d7041 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ContentLocationComparerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ContentLocationComparerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ContentReferenceStubTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ContentReferenceStubTests.cs index 28badd7..840c61a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ContentReferenceStubTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ContentReferenceStubTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/DataSourceDetailsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/DataSourceDetailsTests.cs index b9f2cf9..0481ea8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/DataSourceDetailsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/DataSourceDetailsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/DataSourceTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/DataSourceTests.cs index ea52bfa..9b20608 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/DataSourceTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/DataSourceTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/Aes256EncryptionFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/Aes256EncryptionFactoryTests.cs index b9b3063..6a6c4b0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/Aes256EncryptionFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/Aes256EncryptionFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileHandleTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileHandleTests.cs index 94ff40e..df1d5b4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileHandleTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileHandleTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStoreTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStoreTestBase.cs index 02a628f..26dc89f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStoreTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStoreTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStreamTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStreamTests.cs index 792a1e9..9ac3c8e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStreamTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/ContentFileStreamTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTestBase.cs index b1459a7..326b54a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTests.cs index bcb0c88..a9937d8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/DirectoryContentFileStoreTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileHandleTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileHandleTests.cs index e10f513..b1c2fb0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileHandleTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileHandleTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStoreTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStoreTests.cs index f2c7a5e..22ac2bd 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStoreTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStoreTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStreamTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStreamTests.cs index a0f461c..599e166 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStreamTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/EncryptedFileStreamTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/IContentFileStoreTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/IContentFileStoreTests.cs index f9d781d..a1f7282 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/IContentFileStoreTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/IContentFileStoreTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/MemoryContentFileStore.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/MemoryContentFileStore.cs index ff517b1..69dbd0b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/MemoryContentFileStore.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/MemoryContentFileStore.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/MockXmlFileHandle.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/MockXmlFileHandle.cs index 7c3da52..dc002ca 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/MockXmlFileHandle.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/MockXmlFileHandle.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/SeekableCryptoStreamTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/SeekableCryptoStreamTests.cs index 762324c..a3ac3b2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/SeekableCryptoStreamTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/SeekableCryptoStreamTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileEditorTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileEditorTests.cs index 4957a4e..80b7991 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileEditorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileEditorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileXmlStreamTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileXmlStreamTests.cs index b5ad072..71daaf9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileXmlStreamTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/TableauFileXmlStreamTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/TemporaryDirectoryContentFileStoreTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/TemporaryDirectoryContentFileStoreTests.cs index 754f65d..55a2010 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/TemporaryDirectoryContentFileStoreTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/TemporaryDirectoryContentFileStoreTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/WritableMemoryContentFileStream.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/WritableMemoryContentFileStream.cs index 837bb8e..65fb408 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/WritableMemoryContentFileStream.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/WritableMemoryContentFileStream.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XContainerExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XContainerExtensionsTests.cs index 933fa6e..82f5e23 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XContainerExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XContainerExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XElementExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XElementExtensionsTests.cs index 3cf6b16..d505cdc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XElementExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XElementExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XFeatureFlagNameTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XFeatureFlagNameTests.cs index 3cc9b75..d2dd53e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XFeatureFlagNameTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XFeatureFlagNameTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XNameExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XNameExtensionsTests.cs index 79ce9ae..21aaa17 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XNameExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Files/Xml/XNameExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/GroupTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/GroupTests.cs index d87fb4a..abbbf48 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/GroupTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/GroupTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/MappableContainerContentBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/MappableContainerContentBaseTests.cs index f03b6f7..d360aea 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/MappableContainerContentBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/MappableContainerContentBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTests.cs index 434de4f..65f5cb9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTypeExtensions.cs b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTypeExtensions.cs index b5c2082..e630017 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTypeExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/GranteeCapabilityTypeExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IGranteeCapabilityComparer.cs b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IGranteeCapabilityComparer.cs index a7d3934..3cfae7e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IGranteeCapabilityComparer.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IGranteeCapabilityComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IPermissionsComparer.cs b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IPermissionsComparer.cs index 934e41f..9e6d0a7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IPermissionsComparer.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Permissions/IPermissionsComparer.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ProjectTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ProjectTests.cs index 45f996d..001b8e8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ProjectTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ProjectTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Search/CachedContentReferenceFinderTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Search/CachedContentReferenceFinderTests.cs index 3e72adf..02f5db8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Search/CachedContentReferenceFinderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Search/CachedContentReferenceFinderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/Search/ContentReferenceCacheBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/Search/ContentReferenceCacheBaseTests.cs index 28b2fd0..c6762b1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/Search/ContentReferenceCacheBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/Search/ContentReferenceCacheBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionSettingsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionSettingsTests.cs index 7ee6621..ca6ec55 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionSettingsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionSettingsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionTests.cs index 19b0e03..1186e73 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/ServerSessionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/SiteSettingUpdateTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/SiteSettingUpdateTests.cs index 824b89c..7260fea 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/SiteSettingUpdateTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/SiteSettingUpdateTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/SiteTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/SiteTests.cs index 2d29c89..2259391 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/SiteTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/SiteTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/TagLabelComparerTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/TagLabelComparerTests.cs index 8ea7eff..9e1f4ef 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/TagLabelComparerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/TagLabelComparerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/TagTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/TagTests.cs index f032c4a..f670213 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/TagTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/TagTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/UserTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/UserTests.cs index a1d5faf..2b2a864 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/UserTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/UserTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/UsernameContentBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/UsernameContentBaseTests.cs index 9629670..ebeebca 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/UsernameContentBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/UsernameContentBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Content/WorkbookDetailsTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/WorkbookDetailsTests.cs index 8186f29..67c11de 100644 --- a/tests/Tableau.Migration.Tests/Unit/Content/WorkbookDetailsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Content/WorkbookDetailsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ContentLocationTests.cs b/tests/Tableau.Migration.Tests/Unit/ContentLocationTests.cs index 067a6e5..f143ab6 100644 --- a/tests/Tableau.Migration.Tests/Unit/ContentLocationTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ContentLocationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/CsvExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/CsvExtensionsTests.cs index 4d60bd4..8643887 100644 --- a/tests/Tableau.Migration.Tests/Unit/CsvExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/CsvExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/DateTimeExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/DateTimeExtensionsTests.cs index 698f619..75272bb 100644 --- a/tests/Tableau.Migration.Tests/Unit/DateTimeExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/DateTimeExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrateContentActionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrateContentActionTests.cs index 3d4be6f..b1d97d0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrateContentActionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrateContentActionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrationActionResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrationActionResultTests.cs index e9c210b..c383bc0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrationActionResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/MigrationActionResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/PreflightActionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/PreflightActionTests.cs index 5a23f0e..1ddd666 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Actions/PreflightActionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Actions/PreflightActionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/MigrationEndpointFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/MigrationEndpointFactoryTests.cs index 363c259..3293f18 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/MigrationEndpointFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/MigrationEndpointFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTest.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTest.cs index b3a0111..5f5b7ea 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTest.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTest.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTests.cs index 3d9cb48..3f43881 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationCacheTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationProjectCacheTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationProjectCacheTests.cs index 03b7f57..2fc4ae8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationProjectCacheTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/BulkDestinationProjectCacheTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactoryTests.cs index c1aa68a..4c43746 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderTests.cs index 87a9561..09b34ec 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestDestinationContentReferenceFinderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactoryTests.cs index 9b34b8f..beaafd7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderTests.cs index 215de0d..4ea91bf 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/Search/ManifestSourceContentReferenceFinderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiDestinationEndpointTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiDestinationEndpointTests.cs index 8d522dd..d9bfa09 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiDestinationEndpointTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiDestinationEndpointTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointBaseTests.cs index 5503601..232378d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointConfigurationTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointConfigurationTests.cs index 55c2ea4..03bdd47 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointConfigurationTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointConfigurationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointTestBase.cs index db3c35c..83593d2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiEndpointTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiSourceEndpointTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiSourceEndpointTests.cs index 0818f2d..ce58796 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiSourceEndpointTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Endpoints/TableauApiSourceEndpointTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/CallbackHookWrapperTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/CallbackHookWrapperTests.cs index 54f902f..ed3764a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/CallbackHookWrapperTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/CallbackHookWrapperTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/ContentTypeHookBuilderBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/ContentTypeHookBuilderBaseTests.cs index 3f57b41..a85657e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/ContentTypeHookBuilderBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/ContentTypeHookBuilderBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBaseTests.cs index dfe1fea..80e76e0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBuilderTests.cs index 118566c..f0ac0c1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterRunnerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterRunnerTests.cs index ed19762..cf970d9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterRunnerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentFilterRunnerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentLocationInPathCriterionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentLocationInPathCriterionTests.cs index 34ff5e8..91edac1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentLocationInPathCriterionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/ContentLocationInPathCriterionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptionsTests.cs index 0b442aa..7b835aa 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterOptionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterTests.cs index f6356ba..a5f69a9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/GroupAllUsersFilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterTests.cs index 669785f..f7e1764 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/PreviouslyMigratedFilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/ProjectSystemOwnershipFilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/ProjectSystemOwnershipFilterTests.cs index cda2011..1070cbb 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/ProjectSystemOwnershipFilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/ProjectSystemOwnershipFilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilterTests.cs index cd3e5c3..35a8291 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Filters/Default/UserSiteRoleSupportUserFilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBaseTests.cs index 9e88ebd..59e24f0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBuilderTests.cs index 4d32d4d..2b4d1dc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingContextTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingContextTests.cs index cc190fc..7158116 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingContextTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingContextTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingRunnerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingRunnerTests.cs index 4a7b043..df037ed 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingRunnerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/ContentMappingRunnerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBaseTests.cs index c1069dd..8148b2b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingTests.cs index 749fbcc..fc89387 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/AuthenticationTypeDomainMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMappingTests.cs index bfa2880..3345efc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/CallbackAuthenticationTypeDomainMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingTests.cs index 304b711..383a90f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Mappings/Default/TableauCloudUsernameMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderBaseTests.cs index 2faa6e2..5490b5d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderTests.cs index bc86f30..287c67d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryCollectionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryCollectionTests.cs index 18bca45..d569c63 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryCollectionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryCollectionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryTests.cs index 71ed954..db2b0d9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookRunnerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookRunnerTests.cs index 0ad6e20..b02cd3d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookRunnerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/MigrationHookRunnerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/BulkPostPublishContextTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/BulkPostPublishContextTests.cs index 5712577..67fe763 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/BulkPostPublishContextTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/BulkPostPublishContextTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/ContentItemPostPublishContextTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/ContentItemPostPublishContextTests.cs index dbb2d07..851633f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/ContentItemPostPublishContextTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/ContentItemPostPublishContextTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHookTests.cs index 97e5f40..224ce08 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ChildItemsPermissionsPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHookTests.cs index 0e12ffe..425ca90 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/OwnerItemPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBaseTests.cs index 22a7d84..b446800 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionPostPublishHookBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHookTests.cs index fe92d86..d1b3575 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/PermissionsItemPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ProjectPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ProjectPostPublishHookTests.cs index b43398f..fdb37b7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ProjectPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/ProjectPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/TagItemPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/TagItemPostPublishHookTests.cs index f94024e..76515d1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/TagItemPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/PostPublish/Default/TagItemPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerBuilderTests.cs index 5230458..d6f82a8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerRunnerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerRunnerTests.cs index 0d9fb21..7dc4f78 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerRunnerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/ContentTransformerRunnerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/MappedUserTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/MappedUserTransformerTests.cs index 6c481d8..c51e4ea 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/MappedUserTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/MappedUserTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/OwnershipTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/OwnershipTransformerTests.cs index 88d5e69..6cb3e14 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/OwnershipTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/OwnershipTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/PermissionsTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/PermissionsTransformerTests.cs index 06cd5f4..ea9e177 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/PermissionsTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/PermissionsTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformerTests.cs index 3e99493..061a4a5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/TableauServerConnectionUrlTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudAuthenticationTypeTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudAuthenticationTypeTransformerTests.cs index 53f8f7e..883d753 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudAuthenticationTypeTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudAuthenticationTypeTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformerTests.cs index 7ac4caf..6675416 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/Default/UserTableauCloudSiteRoleTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/IXmlContentTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/IXmlContentTransformerTests.cs index 1b83eb2..1fb7111 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/IXmlContentTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/IXmlContentTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/XmlContentTransformerBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/XmlContentTransformerBaseTests.cs index af4e33f..7685bda 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/XmlContentTransformerBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Hooks/Transformers/XmlContentTransformerBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/IMigrationExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/IMigrationExtensionsTests.cs index 356f0a2..3ec42c9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/IMigrationExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/IMigrationExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/IServiceCollectionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/IServiceCollectionExtensionsTests.cs index 438f2f1..f9d3215 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/IServiceCollectionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/IServiceCollectionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/IMigrationManifestEditorTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/IMigrationManifestEditorTests.cs index 811b03c..474c080 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/IMigrationManifestEditorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/IMigrationManifestEditorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestContentTypePartitionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestContentTypePartitionTests.cs index dd8f41e..2e54973 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestContentTypePartitionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestContentTypePartitionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryCollectionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryCollectionTests.cs index af83d48..a1e369b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryCollectionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryCollectionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryTests.cs index 93ca086..8942832 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestEntryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestFactoryTests.cs index 7aac8cd..e80d157 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestTests.cs index 6a266f2..c45b217 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Manifest/MigrationManifestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationDirectoryContentFileStoreTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationDirectoryContentFileStoreTests.cs index a2682e6..78efab0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationDirectoryContentFileStoreTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationDirectoryContentFileStoreTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationInputTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationInputTests.cs index 36c25cb..87fced2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationInputTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationInputTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationPlanBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationPlanBuilderTests.cs index fba5861..b522f88 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationPlanBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationPlanBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationTests.cs index 33e137f..69d18c8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/MigrationTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/MigrationTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/BulkPublishContentBatchMigratorTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/BulkPublishContentBatchMigratorTests.cs index f1b46ec..55cac1f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/BulkPublishContentBatchMigratorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/BulkPublishContentBatchMigratorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigrationResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigrationResultTests.cs index dec5eda..50e4e25 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigrationResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigrationResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorBaseTests.cs index 909233e..a2cab16 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorTestBase.cs index 3ae2609..b927653 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentBatchMigratorTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentMigrationBatchTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentMigrationBatchTests.cs index 5bf3b83..010035e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentMigrationBatchTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ContentMigrationBatchTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ItemPublishContentBatchMigratorTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ItemPublishContentBatchMigratorTests.cs index 4d922e7..f3dfe39 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ItemPublishContentBatchMigratorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ItemPublishContentBatchMigratorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchBaseTests.cs index bdb8100..550aa8d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchTestBase.cs index 95990bc..9b3f236 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/Batch/ParallelContentBatchMigratorBatchTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentItemMigrationResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentItemMigrationResultTests.cs index 9267fab..8779c0b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentItemMigrationResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentItemMigrationResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentMigratorTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentMigratorTests.cs index 0d6fa53..03a5e7f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentMigratorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/ContentMigratorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/MigratorTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/MigratorTests.cs index b49c1b2..fe98923 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/MigratorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Migrators/MigratorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsBuilderTests.cs index 29b56a2..0124699 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsCollectionTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsCollectionTests.cs index 6e02424..0a0654c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsCollectionTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsCollectionTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsProviderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsProviderTests.cs index 555f1b1..805504a 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsProviderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Options/MigrationPlanOptionsProviderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineBaseTests.cs index 2546116..3f2be32 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeExtensionsTests.cs index 6620348..694594c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeTests.cs index f8e99b2..0fbe746 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineContentTypeTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineFactoryTests.cs index 0be6d1b..1daa596 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineRunnerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineRunnerTests.cs index a5bbfe0..7acac37 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineRunnerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineRunnerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineTestBase.cs index a4a1a1d..0259b97 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/MigrationPipelineTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/PipelineProfileExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/PipelineProfileExtensionsTests.cs index 23afd21..92924ba 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/PipelineProfileExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/PipelineProfileExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/ServerToCloudMigrationPipelineTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/ServerToCloudMigrationPipelineTests.cs index 658bc72..4742a5e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/ServerToCloudMigrationPipelineTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/ServerToCloudMigrationPipelineTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestAction.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestAction.cs index 83a5573..acdd726 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestAction.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestAction.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestPipeline.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestPipeline.cs index f58965c..b7f0c55 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestPipeline.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Pipelines/TestPipeline.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerBaseTests.cs index 0e300bb..2037657 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerTestBase.cs index b2c87f8..223c399 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/ContentItemPreparerTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/EndpointContentItemPreparerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/EndpointContentItemPreparerTests.cs index f301361..9b7a2b5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/EndpointContentItemPreparerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/EndpointContentItemPreparerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/SourceContentItemPreparerTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/SourceContentItemPreparerTests.cs index 192fc48..d7ba72f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/SourceContentItemPreparerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/Preparation/SourceContentItemPreparerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Engine/ServerToCloudMigrationPlanBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Engine/ServerToCloudMigrationPlanBuilderTests.cs index c74a89d..7d799c9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Engine/ServerToCloudMigrationPlanBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Engine/ServerToCloudMigrationPlanBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ExceptionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/ExceptionExtensionsTests.cs index 9a70791..07bfc9b 100644 --- a/tests/Tableau.Migration.Tests/Unit/ExceptionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ExceptionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/FilePathTests.cs b/tests/Tableau.Migration.Tests/Unit/FilePathTests.cs index be3bc44..2a1e8f9 100644 --- a/tests/Tableau.Migration.Tests/Unit/FilePathTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/FilePathTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/GuardTests.cs b/tests/Tableau.Migration.Tests/Unit/GuardTests.cs index c4c0aa4..97fce22 100644 --- a/tests/Tableau.Migration.Tests/Unit/GuardTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/GuardTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/HttpClientExtensions.cs b/tests/Tableau.Migration.Tests/Unit/HttpClientExtensions.cs index a4c40a3..f8c4bec 100644 --- a/tests/Tableau.Migration.Tests/Unit/HttpClientExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/HttpClientExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/IContentReferenceFinderFactoryExtensions.cs b/tests/Tableau.Migration.Tests/Unit/IContentReferenceFinderFactoryExtensions.cs index ed9e4aa..3f7218a 100644 --- a/tests/Tableau.Migration.Tests/Unit/IContentReferenceFinderFactoryExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/IContentReferenceFinderFactoryExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/IEnumerableExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/IEnumerableExtensionsTests.cs index 0bafa70..28f3841 100644 --- a/tests/Tableau.Migration.Tests/Unit/IEnumerableExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/IEnumerableExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/IHttpClientExtensions.cs b/tests/Tableau.Migration.Tests/Unit/IHttpClientExtensions.cs index 15ea167..01ab1b1 100644 --- a/tests/Tableau.Migration.Tests/Unit/IHttpClientExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/IHttpClientExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ILoggerTests.cs b/tests/Tableau.Migration.Tests/Unit/ILoggerTests.cs index 969f33b..a58229f 100644 --- a/tests/Tableau.Migration.Tests/Unit/ILoggerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ILoggerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/IServiceCollectionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/IServiceCollectionExtensionsTests.cs index cd6d0d3..2a9e65c 100644 --- a/tests/Tableau.Migration.Tests/Unit/IServiceCollectionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/IServiceCollectionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/InheritedTypeComparerTests.cs b/tests/Tableau.Migration.Tests/Unit/InheritedTypeComparerTests.cs index 7107e51..ec190b4 100644 --- a/tests/Tableau.Migration.Tests/Unit/InheritedTypeComparerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/InheritedTypeComparerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Filters/ISyncContentFilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Filters/ISyncContentFilterTests.cs index 052a331..9d37805 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Filters/ISyncContentFilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Filters/ISyncContentFilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentBatchMigrationCompletedHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentBatchMigrationCompletedHookTests.cs index 716a274..51d7bd0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentBatchMigrationCompletedHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentBatchMigrationCompletedHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentMappingTests.cs index d1057fa..d1b6bcc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentTransformerTests.cs index c72d2a1..272acf8 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/ISyncContentTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Mappings/ISyncContentMappingTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Mappings/ISyncContentMappingTests.cs index 2e0091a..4aa9f07 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Mappings/ISyncContentMappingTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Mappings/ISyncContentMappingTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncBulkPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncBulkPostPublishHookTests.cs index b102e60..a149e8f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncBulkPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncBulkPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHookTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHookTests.cs index a57a537..a2b3a89 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHookTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/PostPublish/ISyncContentItemPostPublishHookTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncContentTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncContentTransformerTests.cs index d759759..39e490c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncContentTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncContentTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncXmlContentTransformerTests.cs b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncXmlContentTransformerTests.cs index 65eeef9..033739e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncXmlContentTransformerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Interop/Hooks/Transformers/ISyncXmlContentTransformerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/LoggingServiceCollectionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/LoggingServiceCollectionExtensionsTests.cs index 502ae47..e5f9c1f 100644 --- a/tests/Tableau.Migration.Tests/Unit/LoggingServiceCollectionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/LoggingServiceCollectionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessage.cs b/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessage.cs index 2e90a00..0038d55 100644 --- a/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessage.cs +++ b/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessage.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessageExtensions.cs b/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessageExtensions.cs index 41cef01..139d634 100644 --- a/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessageExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/MockHttpResponseMessageExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/MockIHttpClientExtensions.cs b/tests/Tableau.Migration.Tests/Unit/MockIHttpClientExtensions.cs index bd779d5..f45a8da 100644 --- a/tests/Tableau.Migration.Tests/Unit/MockIHttpClientExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/MockIHttpClientExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/NameOfTests.cs b/tests/Tableau.Migration.Tests/Unit/NameOfTests.cs index 537dd3b..e5b194b 100644 --- a/tests/Tableau.Migration.Tests/Unit/NameOfTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/NameOfTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/DefaultHttpClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/DefaultHttpClientTests.cs index af28acf..5949212 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/DefaultHttpClientTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/DefaultHttpClientTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/AuthenticationHandlerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/AuthenticationHandlerTests.cs index b37dfe1..8b8d5c6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/AuthenticationHandlerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/AuthenticationHandlerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/LoggingHandlerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/LoggingHandlerTests.cs index e22664e..05e4963 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/LoggingHandlerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/LoggingHandlerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/MockDelegatingHandler.cs b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/MockDelegatingHandler.cs index cb34aab..bd5cb35 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/MockDelegatingHandler.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/MockDelegatingHandler.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/UserAgentHttpMessageHandlerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/UserAgentHttpMessageHandlerTests.cs index 315c443..9800070 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Handlers/UserAgentHttpMessageHandlerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Handlers/UserAgentHttpMessageHandlerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentExtensionsTests.cs index a8aefcf..3053606 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentRequestBuilderTests.cs index c68e230..db5a5b3 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentSerializerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentSerializerTests.cs index 1ab2a9d..ca56a7e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpContentSerializerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpContentSerializerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpDeleteRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpDeleteRequestBuilderTests.cs index c8b69e4..f47d9f6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpDeleteRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpDeleteRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpGetRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpGetRequestBuilderTests.cs index 40dd898..84fc6a4 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpGetRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpGetRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpPatchRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpPatchRequestBuilderTests.cs index 38b29c3..0aac201 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpPatchRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpPatchRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpPostRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpPostRequestBuilderTests.cs index 47dc93e..86b67bb 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpPostRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpPostRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpPutRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpPutRequestBuilderTests.cs index bbe766a..5749edc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpPutRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpPutRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderFactoryTests.cs index e23bca4..224c781 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderTests.cs index 13ae59f..bfacc95 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/HttpStreamProcessorTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/HttpStreamProcessorTests.cs index ee6e9e7..f948f44 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/HttpStreamProcessorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/HttpStreamProcessorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/IServiceCollectionExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/IServiceCollectionExtensionsTests.cs index f2a7653..4fa7047 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/IServiceCollectionExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/IServiceCollectionExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/MediaTypeHeaderValueExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/MediaTypeHeaderValueExtensionsTests.cs index 8658ce5..c59c05f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/MediaTypeHeaderValueExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/MediaTypeHeaderValueExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceLoggerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceLoggerTests.cs index 4b4806f..7231cfc 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceLoggerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceLoggerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceRedactorTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceRedactorTests.cs index 5dc8d34..41a0f3d 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceRedactorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/NetworkTraceRedactorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/QueryStringBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/QueryStringBuilderTests.cs index d774f77..a6b25a5 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/QueryStringBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/QueryStringBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/RequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/RequestBuilderTests.cs index 6b0a027..eed6c0f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/RequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/RequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ClientThrottleStrategyBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ClientThrottleStrategyBuilderTests.cs index 7877214..858d865 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ClientThrottleStrategyBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ClientThrottleStrategyBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/MaxConcurrentStrategyBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/MaxConcurrentStrategyBuilderTests.cs index cf9dd19..b312120 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/MaxConcurrentStrategyBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/MaxConcurrentStrategyBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RequestTimeoutStrategyBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RequestTimeoutStrategyBuilderTests.cs index e513cf8..6d316ff 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RequestTimeoutStrategyBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RequestTimeoutStrategyBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceContextExtensions.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceContextExtensions.cs index 1027116..58e0a88 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceContextExtensions.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceContextExtensions.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceStrategyTestBase.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceStrategyTestBase.cs index 076cdc2..39c80c9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceStrategyTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ResilienceStrategyTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RetryStrategyBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RetryStrategyBuilderTests.cs index 28cc83d..b825692 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RetryStrategyBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/RetryStrategyBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ServerThrottleStrategyBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ServerThrottleStrategyBuilderTests.cs index 49fc7bf..2889e14 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ServerThrottleStrategyBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Resilience/ServerThrottleStrategyBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldBuilderTests.cs index 9f48c0c..44bf7d1 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldTests.cs index 5f1520d..964a1b6 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Fields/FieldTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterBuilderTests.cs index c9c7347..f43e9f0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterOperatorTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterOperatorTests.cs index 8e80377..d0fb624 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterOperatorTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterOperatorTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterTests.cs index 7f34b30..9e384c9 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Filtering/FilterTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/GuidExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/GuidExtensionsTests.cs index c1623ad..242d083 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/GuidExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/GuidExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/HttpRequestMessageExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/HttpRequestMessageExtensionsTests.cs index 282227c..e46a727 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/HttpRequestMessageExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/HttpRequestMessageExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/IRestRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/IRestRequestBuilderTests.cs index 4e052d6..d3df77c 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/IRestRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/IRestRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageBuilderTests.cs index 562cc84..2581a28 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageTests.cs index 0b9f0be..82fe93b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Paging/PageTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderFactoryTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderFactoryTests.cs index e560501..0ca04fa 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderFactoryTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderFactoryTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderTests.cs index 072b08d..d3f5f5b 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/RestRequestBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortBuilderTests.cs index b0e03b8..853343e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortTests.cs index f53f083..e89733e 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/Rest/Sorting/SortTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/TableauSerializerTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/TableauSerializerTests.cs index 5f433f6..27e5fe0 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/TableauSerializerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/TableauSerializerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Net/UriExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Net/UriExtensionsTests.cs index 72435b7..1d28488 100644 --- a/tests/Tableau.Migration.Tests/Unit/Net/UriExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Net/UriExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ObjectExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/ObjectExtensionsTests.cs index 350600b..561716f 100644 --- a/tests/Tableau.Migration.Tests/Unit/ObjectExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ObjectExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/OptionsHookTestBase.cs b/tests/Tableau.Migration.Tests/Unit/OptionsHookTestBase.cs index cd1a521..cf6590e 100644 --- a/tests/Tableau.Migration.Tests/Unit/OptionsHookTestBase.cs +++ b/tests/Tableau.Migration.Tests/Unit/OptionsHookTestBase.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Paging/BreadthFirstPathHierarchyPagerTests.cs b/tests/Tableau.Migration.Tests/Unit/Paging/BreadthFirstPathHierarchyPagerTests.cs index 0a6a12d..4062589 100644 --- a/tests/Tableau.Migration.Tests/Unit/Paging/BreadthFirstPathHierarchyPagerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Paging/BreadthFirstPathHierarchyPagerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Paging/IPagerTests.cs b/tests/Tableau.Migration.Tests/Unit/Paging/IPagerTests.cs index d4f38b8..3d22cf3 100644 --- a/tests/Tableau.Migration.Tests/Unit/Paging/IPagerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Paging/IPagerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Paging/IndexedPagerBaseTests.cs b/tests/Tableau.Migration.Tests/Unit/Paging/IndexedPagerBaseTests.cs index 61d4910..64f13d2 100644 --- a/tests/Tableau.Migration.Tests/Unit/Paging/IndexedPagerBaseTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Paging/IndexedPagerBaseTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Paging/PagedResultTests.cs b/tests/Tableau.Migration.Tests/Unit/Paging/PagedResultTests.cs index 78f8a3b..a283d3f 100644 --- a/tests/Tableau.Migration.Tests/Unit/Paging/PagedResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Paging/PagedResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Resources/AllUsersTranslationsTests.cs b/tests/Tableau.Migration.Tests/Unit/Resources/AllUsersTranslationsTests.cs index 0e89c92..5f38183 100644 --- a/tests/Tableau.Migration.Tests/Unit/Resources/AllUsersTranslationsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Resources/AllUsersTranslationsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Resources/ISharedResourcesLocalizerTests.cs b/tests/Tableau.Migration.Tests/Unit/Resources/ISharedResourcesLocalizerTests.cs index 41304a8..6a5add7 100644 --- a/tests/Tableau.Migration.Tests/Unit/Resources/ISharedResourcesLocalizerTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Resources/ISharedResourcesLocalizerTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ResultBuilderTests.cs b/tests/Tableau.Migration.Tests/Unit/ResultBuilderTests.cs index c3a3e67..cae2961 100644 --- a/tests/Tableau.Migration.Tests/Unit/ResultBuilderTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ResultBuilderTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ResultTests.cs b/tests/Tableau.Migration.Tests/Unit/ResultTests.cs index 3821ac6..c9f5bd0 100644 --- a/tests/Tableau.Migration.Tests/Unit/ResultTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ResultTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/SdkUserAgentTests.cs b/tests/Tableau.Migration.Tests/Unit/SdkUserAgentTests.cs index d716485..beb0408 100644 --- a/tests/Tableau.Migration.Tests/Unit/SdkUserAgentTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/SdkUserAgentTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/StreamExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/StreamExtensionsTests.cs index 8e75852..84fdc1f 100644 --- a/tests/Tableau.Migration.Tests/Unit/StreamExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/StreamExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/StringEnumTests.cs b/tests/Tableau.Migration.Tests/Unit/StringEnumTests.cs index a4d446c..bad2967 100644 --- a/tests/Tableau.Migration.Tests/Unit/StringEnumTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/StringEnumTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/TaskExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/TaskExtensionsTests.cs index 0302bb0..2b17fb0 100644 --- a/tests/Tableau.Migration.Tests/Unit/TaskExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/TaskExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/ValidationExtensionsTests.cs b/tests/Tableau.Migration.Tests/Unit/ValidationExtensionsTests.cs index b42996d..e777365 100644 --- a/tests/Tableau.Migration.Tests/Unit/ValidationExtensionsTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/ValidationExtensionsTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/ValuesAttribute.cs b/tests/Tableau.Migration.Tests/ValuesAttribute.cs index 350fedd..9d647cd 100644 --- a/tests/Tableau.Migration.Tests/ValuesAttribute.cs +++ b/tests/Tableau.Migration.Tests/ValuesAttribute.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. From 0304947ac316b4ccd2c8387e31b71110151fbe81 Mon Sep 17 00:00:00 2001 From: Steffen Froehlich Date: Mon, 13 May 2024 08:03:57 -0700 Subject: [PATCH 3/4] Release 3.0.0 missed files --- .../hooks/custom_hooks.md | 0 .../hooks/example_hook_use_cases.md | 0 .../{advanced_config => }/hooks/index.md | 0 src/Documentation/articles/python_wrapper.md | 19 -- .../{troubleshooting => }/troubleshooting.md | 20 +- .../articles/troubleshooting/errors.md | 11 -- .../user_authentication.md | 0 src/Documentation/python_wrapper/index.md | 40 ++++ src/Documentation/samples/csharp.md | 36 ---- src/Documentation/samples/python.md | 18 -- .../hooks => samples}/python_hooks.md | 8 +- src/Python/scripts/publish-package.ps1 | 84 +++++++++ src/Tableau.Migration/Api/FlowsApiClient.cs | 173 +++++++++++++++++ src/Tableau.Migration/Api/IFlowsApiClient.cs | 65 +++++++ .../Api/Models/IPublishFlowOptions.cs | 47 +++++ .../Api/Models/PublishFlowOptions.cs | 67 +++++++ .../Api/Publishing/FlowPublisher.cs | 83 ++++++++ .../Api/Publishing/IFlowPublisher.cs | 28 +++ .../Api/Rest/Models/IFlowType.cs | 50 +++++ .../Requests/CommitFlowPublishRequest.cs | 100 ++++++++++ .../Api/Rest/Models/Responses/FlowResponse.cs | 177 ++++++++++++++++++ .../Api/Rest/Models/Types/FlowFileTypes.cs | 40 ++++ src/Tableau.Migration/Content/Flow.cs | 104 ++++++++++ src/Tableau.Migration/Content/IFlow.cs | 37 ++++ .../Content/IPublishableFlow.cs | 26 +++ .../Content/PublishableFlow.cs | 53 ++++++ .../Unit/Api/FlowsApiClientTests.cs | 113 +++++++++++ .../Unit/Api/Publishing/FlowPublisherTests.cs | 69 +++++++ .../Rest/Models/PublishFlowOptionsTests.cs | 49 +++++ .../CommitDataSourcePublishRequestTests.cs | 7 +- .../Requests/CommitFlowPublishRequestTests.cs | 49 +++++ .../CommitWorkbookPublishRequestTests.cs | 9 +- .../Unit/Content/FlowTests.cs | 69 +++++++ .../Unit/Content/PublishableFlowTests.cs | 43 +++++ 34 files changed, 1597 insertions(+), 97 deletions(-) rename src/Documentation/articles/{advanced_config => }/hooks/custom_hooks.md (100%) rename src/Documentation/articles/{advanced_config => }/hooks/example_hook_use_cases.md (100%) rename src/Documentation/articles/{advanced_config => }/hooks/index.md (100%) delete mode 100644 src/Documentation/articles/python_wrapper.md rename src/Documentation/articles/{troubleshooting => }/troubleshooting.md (71%) delete mode 100644 src/Documentation/articles/troubleshooting/errors.md rename src/Documentation/articles/{advanced_config => }/user_authentication.md (100%) create mode 100644 src/Documentation/python_wrapper/index.md delete mode 100644 src/Documentation/samples/csharp.md delete mode 100644 src/Documentation/samples/python.md rename src/Documentation/{articles/advanced_config/hooks => samples}/python_hooks.md (98%) create mode 100644 src/Python/scripts/publish-package.ps1 create mode 100644 src/Tableau.Migration/Api/FlowsApiClient.cs create mode 100644 src/Tableau.Migration/Api/IFlowsApiClient.cs create mode 100644 src/Tableau.Migration/Api/Models/IPublishFlowOptions.cs create mode 100644 src/Tableau.Migration/Api/Models/PublishFlowOptions.cs create mode 100644 src/Tableau.Migration/Api/Publishing/FlowPublisher.cs create mode 100644 src/Tableau.Migration/Api/Publishing/IFlowPublisher.cs create mode 100644 src/Tableau.Migration/Api/Rest/Models/IFlowType.cs create mode 100644 src/Tableau.Migration/Api/Rest/Models/Requests/CommitFlowPublishRequest.cs create mode 100644 src/Tableau.Migration/Api/Rest/Models/Responses/FlowResponse.cs create mode 100644 src/Tableau.Migration/Api/Rest/Models/Types/FlowFileTypes.cs create mode 100644 src/Tableau.Migration/Content/Flow.cs create mode 100644 src/Tableau.Migration/Content/IFlow.cs create mode 100644 src/Tableau.Migration/Content/IPublishableFlow.cs create mode 100644 src/Tableau.Migration/Content/PublishableFlow.cs create mode 100644 tests/Tableau.Migration.Tests/Unit/Api/FlowsApiClientTests.cs create mode 100644 tests/Tableau.Migration.Tests/Unit/Api/Publishing/FlowPublisherTests.cs create mode 100644 tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PublishFlowOptionsTests.cs rename tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/{ => Requests}/CommitDataSourcePublishRequestTests.cs (89%) create mode 100644 tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitFlowPublishRequestTests.cs rename tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/{ => Requests}/CommitWorkbookPublishRequestTests.cs (87%) create mode 100644 tests/Tableau.Migration.Tests/Unit/Content/FlowTests.cs create mode 100644 tests/Tableau.Migration.Tests/Unit/Content/PublishableFlowTests.cs diff --git a/src/Documentation/articles/advanced_config/hooks/custom_hooks.md b/src/Documentation/articles/hooks/custom_hooks.md similarity index 100% rename from src/Documentation/articles/advanced_config/hooks/custom_hooks.md rename to src/Documentation/articles/hooks/custom_hooks.md diff --git a/src/Documentation/articles/advanced_config/hooks/example_hook_use_cases.md b/src/Documentation/articles/hooks/example_hook_use_cases.md similarity index 100% rename from src/Documentation/articles/advanced_config/hooks/example_hook_use_cases.md rename to src/Documentation/articles/hooks/example_hook_use_cases.md diff --git a/src/Documentation/articles/advanced_config/hooks/index.md b/src/Documentation/articles/hooks/index.md similarity index 100% rename from src/Documentation/articles/advanced_config/hooks/index.md rename to src/Documentation/articles/hooks/index.md diff --git a/src/Documentation/articles/python_wrapper.md b/src/Documentation/articles/python_wrapper.md deleted file mode 100644 index 316270a..0000000 --- a/src/Documentation/articles/python_wrapper.md +++ /dev/null @@ -1,19 +0,0 @@ -# Python Wrapper - -The Migration SDK is written in .NET. It has a Python wrapper package that provides access to most of this functionality. - -## Capabilities - -With the Python Wrapper, you can: - -- Provide basic [configuration](configuration.md) values to the Migration SDK via the PlanBuilder. -- Set configuration options as described in [`MigrationSdkOptions`](xref:Tableau.Migration.Config.MigrationSdkOptions) with environment variables. -- Configure Python [logging](logging.md#python-support). -- Run a migration using the wrapper. -- Write [Python hooks](advanced_config/hooks/python_hooks.md) (See [Hooks](advanced_config/hooks/index.md) for an overview). - -## Current limitations - -There are advanced features of the Migration SDK that the Python Wrapper cannot currently access: - -- Override `C#` classes and methods to change how the SDK works. diff --git a/src/Documentation/articles/troubleshooting/troubleshooting.md b/src/Documentation/articles/troubleshooting.md similarity index 71% rename from src/Documentation/articles/troubleshooting/troubleshooting.md rename to src/Documentation/articles/troubleshooting.md index 66a3a70..ff35f23 100644 --- a/src/Documentation/articles/troubleshooting/troubleshooting.md +++ b/src/Documentation/articles/troubleshooting.md @@ -1,13 +1,15 @@ # Troubleshooting -## Migration fails due to invalid credentials +## Common issues + +### Migration fails due to invalid credentials 1. Make sure credentials are correct in Migration SDK configuration. 2. If they are incorrect/absent, [Create a Personal Access Token (PAT)](https://help.tableau.com/current/server/en-us/security_personal_access_tokens.htm#:~:text=Create%20personal%20access%20tokens,-Users%20must%20create&text=Users%20with%20accounts%20on%20Tableau,have%20up%20to%2010%20PATs) and use them in the Migration SDK configuration. -## The migration has finished but I do not see the expected content on the destination +### The migration has finished but I do not see the expected content on the destination -When the migration finishes you get a [MigrationResult](xref:Tableau.Migration.MigrationResult). The [MigrationCompletionStatus](xref:Tableau.Migration.MigrationCompletionStatus) should be `Canceled` or `FatalError`. In the [Manifest](xref:Tableau.Migration.IMigrationManifest) check +When the migration finishes you get a [MigrationResult](xref:Tableau.Migration.MigrationResult). The [MigrationCompletionStatus](xref:Tableau.Migration.MigrationCompletionStatus) should be `Canceled` or `FatalError`. In the [Manifest](xref:Tableau.Migration.IMigrationManifest), check - Errors: The top level errors not related to any manifest entries. - [Entries](xref:Tableau.Migration.Engine.Manifest.IMigrationManifestEntryCollection): This is a collection of manifest entries that can be grouped by content type. Here are code snippets that log those errors. You can use this as general reference to process migration errors in your application. @@ -58,3 +60,15 @@ Python if entry.Destination is not None: _logger.LogInformation(f"{content_type.Name} {entry.Source.Location} migrated to {entry.Destination.Location}") ``` + +## Errors and Warnings + +This section provides a list of potential error and warning log messages that you may encounter in the logs. Each entry includes a description to assist you in debugging. + +### Warning: `Could not add a user to the destination Group [group name]. Reason: Could not find the destination user for [user name].` + +This warning message indicates that the `GroupUsersTransformer` was unable to add the user, denoted as `[user name]`, to the group, denoted as `[group name]`. + +This situation can occur if a user was excluded by a custom filter, but was not mapped to another user. If a custom filter was implemented based on the `ContentFilterBase` class, then debug logging is already available. + +To resolve this issue, enable debug logging to identify which filter is excluding the user. Then, add a mapping to an existing user using the `ContentMappingBase` class. diff --git a/src/Documentation/articles/troubleshooting/errors.md b/src/Documentation/articles/troubleshooting/errors.md deleted file mode 100644 index 6f573cb..0000000 --- a/src/Documentation/articles/troubleshooting/errors.md +++ /dev/null @@ -1,11 +0,0 @@ -## Errors and Warnings - -This section provides a list of potential error and warning log messages that you may encounter in the logs. Each entry includes a description to assist you in debugging. - -### Warning: `Could not add a user to the destination Group [group name]. Reason: Could not find the destination user for [user name].` - -This warning message indicates that the `GroupUsersTransformer` was unable to add the user, denoted as `[user name]`, to the group, denoted as `[group name]`. - -This situation can occur if a user was excluded by a custom filter, but was not mapped to another user. If a custom filter was implemented based on the `ContentFilterBase` class, then debug logging is already available. - -To resolve this issue, enable debug logging to identify which filter is excluding the user. Then, add a mapping to an existing user using the `ContentMappingBase` class. diff --git a/src/Documentation/articles/advanced_config/user_authentication.md b/src/Documentation/articles/user_authentication.md similarity index 100% rename from src/Documentation/articles/advanced_config/user_authentication.md rename to src/Documentation/articles/user_authentication.md diff --git a/src/Documentation/python_wrapper/index.md b/src/Documentation/python_wrapper/index.md new file mode 100644 index 0000000..82e1122 --- /dev/null +++ b/src/Documentation/python_wrapper/index.md @@ -0,0 +1,40 @@ +# Python Wrapper + +The Migration SDK is written in .NET. It has a Python wrapper package that provides access to most of this functionality. + +## Capabilities + +With the Python Wrapper, you can: + +- Provide basic [configuration](~/articles/configuration.md) values to the Migration SDK via the PlanBuilder. +- Set configuration options as described in [Configuration](~/articles/configuration.md) with environment variables. +- Configure Python [logging](~/articles/logging.md#python-support). +- Run a migration using the wrapper. +- Write [Python hooks](~/samples/python_hooks.md) (See [Hooks](~/articles/hooks/index.md) for an overview). + +## Current limitations + +There are advanced features of the Migration SDK that the Python Wrapper cannot currently access: + +- Override `C#` classes and methods to change how the SDK works. + +## Examples to get started + +The following code samples are for writing a simple migration app using the Migration SDK. For details on configuring and customizing the Migration SDK to your specific needs, see [Articles](~/articles/intro.md) and [Code Samples](~/samples/intro.md). + +### [Startup Script](#tab/startup) + +[!code-python[](../../../examples/Python.ExampleApplication/Python.ExampleApplication.py)] + +### [config.ini](#tab/config) + +> [!Important] +> The values below should not be quoted. So ***no*** `'` or `"`. + +[!code-ini[](../../../examples/Python.ExampleApplication/config.ini)] + +### [requirements.txt](#tab/reqs) + +[!code-text[](../../../examples/Python.ExampleApplication/requirements.txt#L3-)] + +--- diff --git a/src/Documentation/samples/csharp.md b/src/Documentation/samples/csharp.md deleted file mode 100644 index 531a990..0000000 --- a/src/Documentation/samples/csharp.md +++ /dev/null @@ -1,36 +0,0 @@ -# Examples to get started with the Migration SDK (.NET) - -## [Program.cs](#tab/program-cs) - -[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Program.cs#namespace)] - -## [Startup code](#tab/startup-cde) - -[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/MyMigrationApplication.cs#namespace)] - -## [Config classes](#tab/config-classes) - -[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Config/MyMigrationApplicationOptions.cs#namespace)] - -[!code-csharp[CS](../../../examples/Csharp.ExampleApplication/Config/EndpointOptions.cs#namespace)] - -## [Config file](#tab/appsettings) - -```json -{ - "source": { - "serverUrl": "http://server", - "siteContentUrl": "", - "accessTokenName": "my server token name", - "accessToken": "my-secret-server-pat" - }, - "destination": { - "serverUrl": "https://pod.online.tableau.com", - "siteContentUrl": "site-name", - "accessTokenName": "my cloud token name", - "accessToken": "my-secret-cloud-pat" - } -} -``` - ---- diff --git a/src/Documentation/samples/python.md b/src/Documentation/samples/python.md deleted file mode 100644 index 28dec6c..0000000 --- a/src/Documentation/samples/python.md +++ /dev/null @@ -1,18 +0,0 @@ -# Examples to get started with the Migration SDK (Python) - -## [Startup Script](#tab/startup) - -[!code-python[](../../../examples/Python.ExampleApplication/Python.ExampleApplication.py)] - -## [config.ini](#tab/config) - -> [!Important] -> The values below should not be quoted. So ***no*** `'` or `"`. - -[!code-ini[](../../../examples/Python.ExampleApplication/config.ini)] - -## [requirements.txt](#tab/reqs) - -[!code-text[](../../../examples/Python.ExampleApplication/requirements.txt#L3-)] - ---- diff --git a/src/Documentation/articles/advanced_config/hooks/python_hooks.md b/src/Documentation/samples/python_hooks.md similarity index 98% rename from src/Documentation/articles/advanced_config/hooks/python_hooks.md rename to src/Documentation/samples/python_hooks.md index b85c125..9ab6498 100644 --- a/src/Documentation/articles/advanced_config/hooks/python_hooks.md +++ b/src/Documentation/samples/python_hooks.md @@ -1,18 +1,20 @@ # Hooks Implemented in Python -Because the Migration SDK is primarily written in C#, it uses [Python.NET](https://pythonnet.github.io/) to enable the implementation of hooks in Python. The Python hooks interoperate with the C# binaries to achieve the same results as writing hooks in C#. +Because the Migration SDK is primarily written in C#, it uses [Python.NET](https://pythonnet.github.io/) to enable the implementation of [hooks](~/samples/python_hooks.md) in Python. The Python hooks interoperate with the C# binaries to achieve the same results as writing hooks in C#. -The SDK's C# hook classes and interfaces are [asynchronous](https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/). Due to the limitations of [Python.NET](https://pythonnet.github.io/), the SDK provides synchronous wrappers to these interfaces. The names of these wrappers start with the keyword `ISync`. You will find references to those in the following examples. +The SDK's C# hook classes and interfaces are [asynchronous](https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/). Due to the limitations of [Python.NET](https://pythonnet.github.io/), the SDK provides synchronous wrappers to these interfaces. The names of these wrappers start with the keyword `ISync`. You will find references to those in the following examples. Various C# interfaces and classes are used in hooks. You will need to import them just like you do Python classes. You can search for them in the [API Reference](~/api/index.md) section of the documentation. Example: Here is one of the import statements you will need for filters + ```python from Tableau.Migration.Interop.Hooks.Filters import ISyncContentFilter ``` -The namespace for `ISyncContentFilter` is `Tableau.Migration.Interop.Hooks.Filters`. + +The namespace for `ISyncContentFilter` is `Tableau.Migration.Interop.Hooks.Filters`. ## Object Registration diff --git a/src/Python/scripts/publish-package.ps1 b/src/Python/scripts/publish-package.ps1 new file mode 100644 index 0000000..c0ace31 --- /dev/null +++ b/src/Python/scripts/publish-package.ps1 @@ -0,0 +1,84 @@ +<# +.SYNOPSIS + Builds and publishes the migration-sdk python package + +.NOTES + Author: Steffen Froehlich + +.PARAMETER SkipPublish + Builds everything but skips pushing to repository + +.PARAMETER VersionOverride + String used to override the version in the Directory.Build.props file in the root directory. + The Python Hatchling project is required for this: https://pypi.org/project/hatchling/ +#> + +[CmdletBinding()] +param( + [switch]$SkipPublish, + [string]$VersionOverride +) + +function Test-CommandExists ($command) +{ + $oldPreference = $ErrorActionPreference + + $ErrorActionPreference = 'stop' + + try { + if(Get-Command $command) { + return $true + } + } + catch { + return $false + } + finally { + $ErrorActionPreference=$oldPreference + } +} + +pushd (Join-Path $PSScriptRoot "..") + +$env:TWINE_REPOSITORY="tabpypi" +$env:TWINE_REPOSITORY_URL="https://artifactory.prod.tableautools.com/artifactory/api/pypi/tabpypi" +$env:TWINE_USERNAME="svc_cmt" +$env:TWINE_NON_INTERACTIVE="1" + +if (-not($SkipPublish)) { + if( [string]::IsNullOrEmpty($env:TWINE_PASSWORD) ) { + Write-Error "Set `$env:TWINE_PASSWORD to the svc_cmd password found in cyberark" + exit 1 + } +} +if ($VersionOverride) { + if( -not(Test-CommandExists hatch)) { + Write-Error "install hatch to set custom version. 'pip install hatch'" + exit 1 + } +} + +try { + & (Join-Path $PSScriptRoot "build-package.ps1") + + if ($VersionOverride) { + $oldVersion = (hatch version) + hatch version $VersionOverride + } + python -m build --wheel # Build the wheel package + python -m build --sdist # Build the source dist package + + if (-not($SkipPublish)) { + # The package will be uploaded to https://artifactory.prod.tableautools.com/ui/repos/tree/General/tabpypi/tableau-migration/ + Write-Host "Uploading package to https://artifactory.prod.tableautools.com/ui/repos/tree/General/tabpypi/tableau-migration/" + python -m twine upload --repository-url https://artifactory.prod.tableautools.com/artifactory/api/pypi/tabpypi dist/* + } + +} +finally { + popd + + if ($oldVersion){ + hatch version $oldVersion + } +} diff --git a/src/Tableau.Migration/Api/FlowsApiClient.cs b/src/Tableau.Migration/Api/FlowsApiClient.cs new file mode 100644 index 0000000..f945de5 --- /dev/null +++ b/src/Tableau.Migration/Api/FlowsApiClient.cs @@ -0,0 +1,173 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Collections.Immutable; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using Tableau.Migration.Api.Models; +using Tableau.Migration.Api.Publishing; +using Tableau.Migration.Api.Rest; +using Tableau.Migration.Api.Rest.Models.Responses; +using Tableau.Migration.Content; +using Tableau.Migration.Content.Files; +using Tableau.Migration.Content.Search; +using Tableau.Migration.Net.Rest; +using Tableau.Migration.Paging; +using Tableau.Migration.Resources; + +namespace Tableau.Migration.Api +{ + internal sealed class FlowsApiClient : ContentApiClientBase, IFlowsApiClient + { + private readonly IContentFileStore _fileStore; + private readonly IFlowPublisher _flowPublisher; + + public FlowsApiClient( + IRestRequestBuilderFactory restRequestBuilderFactory, + IContentReferenceFinderFactory finderFactory, + ILoggerFactory loggerFactory, + ISharedResourcesLocalizer sharedResourcesLocalizer, + IContentFileStore fileStore, + IFlowPublisher flowPublisher) + : base(restRequestBuilderFactory, finderFactory, loggerFactory, sharedResourcesLocalizer) + { + _fileStore = fileStore; + _flowPublisher = flowPublisher; + } + + /// + /// Gets all prep flows in the current site. + /// + /// The 1-indexed page number. + /// The size of the page. + /// A cancellation token to obey. + /// A list of a page of prep flows in the current site. + public async Task> GetAllFlowsAsync(int pageNumber, int pageSize, CancellationToken cancel) + { + var getAllResult = await RestRequestBuilderFactory + .CreateUri(UrlPrefix) + .WithPage(pageNumber, pageSize) + .ForGetRequest() + .SendAsync(cancel) + .ToPagedResultAsync(async (response, cancel) => + { + // Take all items. + var results = ImmutableArray.CreateBuilder(response.Items.Length); + + foreach (var item in response.Items) + { + // Convert them all to type Flow. + if (item.Project is not null) // Project is null if item is in a personal space. + { + var project = await FindProjectAsync(item, false, cancel).ConfigureAwait(false); + var owner = await FindOwnerAsync(item, false, cancel).ConfigureAwait(false); + + if (project is null || owner is null) + continue; //Warnings will be logged by prior method calls. + + results.Add(new Flow(item, project, owner)); + } + } + + // Produce immutable list of type IDataSource and return. + return (IImmutableList)results.ToImmutable(); + }, SharedResourcesLocalizer, cancel) + .ConfigureAwait(false); + + return getAllResult; + } + + /// + /// Downloads the prep flow file for the given ID. + /// + /// The ID to download the flow file for. + /// A cancellation token to obey. + /// The file download result. + public async Task> DownloadFlowAsync(Guid flowId, CancellationToken cancel) + { + var downloadResult = await RestRequestBuilderFactory + .CreateUri($"{UrlPrefix}/{flowId.ToUrlSegment()}/{RestUrlPrefixes.Content}") + .ForGetRequest() + .DownloadAsync(cancel) + .ConfigureAwait(false); + + return downloadResult; + } + + /// + public async Task> PublishFlowAsync(IPublishFlowOptions options, CancellationToken cancel) + => await _flowPublisher.PublishAsync(options, cancel).ConfigureAwait(false); + + #region - IApiPageAccessor Implementation - + + /// + public async Task> GetPageAsync(int pageNumber, int pageSize, CancellationToken cancel) + => await GetAllFlowsAsync(pageNumber, pageSize, cancel).ConfigureAwait(false); + + #endregion + + #region - IPagedListApiClient Implementation - + + /// + public IPager GetPager(int pageSize) => new ApiListPager(this, pageSize); + + #endregion + + #region - IPullApiClient Implementation - + + /// + public async Task> PullAsync(IFlow contentItem, CancellationToken cancel) + { + var downloadResult = await DownloadFlowAsync(contentItem.Id, cancel).ConfigureAwait(false); + if (!downloadResult.Success) + { + return downloadResult.CastFailure(); + } + + await using (downloadResult) + { + var file = await _fileStore.CreateAsync(contentItem, downloadResult.Value, cancel).ConfigureAwait(false); + + var publishableFlow = new PublishableFlow(contentItem, file); + return Result.Succeeded(publishableFlow); + } + } + + #endregion + + #region - IPublishApiClient Implementation - + + /// + public async Task> PublishAsync(IPublishableFlow item, CancellationToken cancel) + { + var fileStream = await item.File.OpenReadAsync(cancel).ConfigureAwait(false); + + await using (fileStream) + { + var publishOptions = new PublishFlowOptions(item, fileStream.Content); + var publishResult = await PublishFlowAsync(publishOptions, cancel) + .ConfigureAwait(false); + + return publishResult; + } + } + + #endregion + } +} diff --git a/src/Tableau.Migration/Api/IFlowsApiClient.cs b/src/Tableau.Migration/Api/IFlowsApiClient.cs new file mode 100644 index 0000000..90420ca --- /dev/null +++ b/src/Tableau.Migration/Api/IFlowsApiClient.cs @@ -0,0 +1,65 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Threading; +using System.Threading.Tasks; +using Tableau.Migration.Api.Models; +using Tableau.Migration.Content; +using Tableau.Migration.Paging; + +namespace Tableau.Migration.Api +{ + /// + /// Interface for API client prep flow operations. + /// + public interface IFlowsApiClient : + IApiPageAccessor, + IPagedListApiClient, + IPullApiClient, + IPublishApiClient + /*IOwnershipApiClient, + ITagsContentApiClient, + IPermissionsContentApiClient, + */ + { + /// + /// Gets all prep flows in the current site. + /// + /// The 1-indexed page number. + /// The size of the page. + /// A cancellation token to obey. + /// A list of a page of prep flows in the current site. + Task> GetAllFlowsAsync(int pageNumber, int pageSize, CancellationToken cancel); + + /// + /// Downloads the prep flow file for the given ID. + /// + /// The ID to download the flow file for. + /// A cancellation token to obey. + /// The file download result. + Task> DownloadFlowAsync(Guid flowId, CancellationToken cancel); + + /// + /// Uploads the input prep flow file. + /// + /// The new prep flows's details. + /// A cancellation token to obey. + /// The published prep flow. + Task> PublishFlowAsync(IPublishFlowOptions options, CancellationToken cancel); + } +} diff --git a/src/Tableau.Migration/Api/Models/IPublishFlowOptions.cs b/src/Tableau.Migration/Api/Models/IPublishFlowOptions.cs new file mode 100644 index 0000000..e658f01 --- /dev/null +++ b/src/Tableau.Migration/Api/Models/IPublishFlowOptions.cs @@ -0,0 +1,47 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; + +namespace Tableau.Migration.Api.Models +{ + /// + /// Interface for API client prep flow publish options. + /// + public interface IPublishFlowOptions : IPublishFileOptions + { + /// + /// Gets the name of the prep flow. + /// + string Name { get; } + + /// + /// Gets the description of the prep flow. + /// + string Description { get; } + + /// + /// Gets whether or not to overwrite any existing prep flow. + /// + bool Overwrite { get; } + + /// + /// Gets the ID of the project to publish to. + /// + Guid ProjectId { get; } + } +} diff --git a/src/Tableau.Migration/Api/Models/PublishFlowOptions.cs b/src/Tableau.Migration/Api/Models/PublishFlowOptions.cs new file mode 100644 index 0000000..a5ad239 --- /dev/null +++ b/src/Tableau.Migration/Api/Models/PublishFlowOptions.cs @@ -0,0 +1,67 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.IO; +using System; +using Tableau.Migration.Content; +using Tableau.Migration.Api.Rest.Models.Types; + +namespace Tableau.Migration.Api.Models +{ + /// + /// Class for API client prep flow publish options. + /// + public class PublishFlowOptions : IPublishFlowOptions + { + /// + public string Name { get; } + + /// + public string Description { get; } + + /// + public bool Overwrite { get; } = true; + + /// + public Guid ProjectId { get; } + + /// + public Stream File { get; } + + /// + public string FileName { get; } + + /// + public string FileType { get; } + + /// + /// Creates a new instance. + /// + /// The publishable prep flow information. + /// The prep flow file as a + /// The type of prep flow file. + public PublishFlowOptions(IPublishableFlow flow, Stream file, string fileType = FlowFileTypes.Tflx) + { + Name = flow.Name; + Description = flow.Description; + ProjectId = ((IContainerContent)flow).Container.Id; + File = file; + FileName = flow.File.OriginalFileName; + FileType = fileType; + } + } +} diff --git a/src/Tableau.Migration/Api/Publishing/FlowPublisher.cs b/src/Tableau.Migration/Api/Publishing/FlowPublisher.cs new file mode 100644 index 0000000..160a152 --- /dev/null +++ b/src/Tableau.Migration/Api/Publishing/FlowPublisher.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Net.Http; +using System.Threading; +using System.Threading.Tasks; +using Microsoft.Extensions.Logging; +using Tableau.Migration.Api.Models; +using Tableau.Migration.Api.Rest; +using Tableau.Migration.Api.Rest.Models.Requests; +using Tableau.Migration.Api.Rest.Models.Responses; +using Tableau.Migration.Content; +using Tableau.Migration.Content.Search; +using Tableau.Migration.Net; +using Tableau.Migration.Net.Rest; +using Tableau.Migration.Resources; + +namespace Tableau.Migration.Api.Publishing +{ + internal class FlowPublisher : FilePublisherBase, IFlowPublisher + { + public FlowPublisher( + IRestRequestBuilderFactory restRequestBuilderFactory, + IContentReferenceFinderFactory finderFactory, + IServerSessionProvider sessionProvider, + ILoggerFactory loggerFactory, + ISharedResourcesLocalizer sharedResourcesLocalizer, + IHttpStreamProcessor httpStreamProcessor) + : base( + restRequestBuilderFactory, + finderFactory, + sessionProvider, + loggerFactory, + sharedResourcesLocalizer, + httpStreamProcessor, + RestUrlPrefixes.Flows) + { } + + protected override CommitFlowPublishRequest BuildCommitRequest(IPublishFlowOptions options) + => new(options); + + protected override async Task> SendCommitRequestAsync( + IPublishFlowOptions options, string uploadSessionId, MultipartContent content, CancellationToken cancel) + { + var result = await RestRequestBuilderFactory + .CreateUri(ContentTypeUrlPrefix) + .WithQuery("uploadSessionId", uploadSessionId) + .WithQuery("flowType", options.FileType) + .WithQuery("overwrite", options.Overwrite.ToString().ToLower()) + .ForPostRequest() + .WithContent(content) + .SendAsync(cancel) + .ToResultAsync(async (response, cancel) => + { + var flow = Guard.AgainstNull(response.Item, () => response.Item); + + var project = await ContentFinderFactory.FindProjectAsync(flow, Logger, SharedResourcesLocalizer, true, cancel).ConfigureAwait(false); + var owner = await ContentFinderFactory.FindOwnerAsync(flow, Logger, SharedResourcesLocalizer, true, cancel).ConfigureAwait(false); + + return new Flow(flow, project, owner); + }, + SharedResourcesLocalizer, + cancel) + .ConfigureAwait(false); + + return result; + } + } +} diff --git a/src/Tableau.Migration/Api/Publishing/IFlowPublisher.cs b/src/Tableau.Migration/Api/Publishing/IFlowPublisher.cs new file mode 100644 index 0000000..9cc30cc --- /dev/null +++ b/src/Tableau.Migration/Api/Publishing/IFlowPublisher.cs @@ -0,0 +1,28 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Tableau.Migration.Api.Models; +using Tableau.Migration.Content; + +namespace Tableau.Migration.Api.Publishing +{ + /// + /// Interface for prep flow publisher classes. + /// + public interface IFlowPublisher : IFilePublisher + { } +} diff --git a/src/Tableau.Migration/Api/Rest/Models/IFlowType.cs b/src/Tableau.Migration/Api/Rest/Models/IFlowType.cs new file mode 100644 index 0000000..ba17df1 --- /dev/null +++ b/src/Tableau.Migration/Api/Rest/Models/IFlowType.cs @@ -0,0 +1,50 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Tableau.Migration.Api.Rest.Models +{ + /// + /// Interface for a prep flow REST response. + /// + public interface IFlowType : IRestIdentifiable, INamedContent, IWithProjectType, IWithOwnerType, IWithTagTypes + { + /// + /// Gets the description for the response. + /// + string? Description { get; } + + /// + /// Gets the created timestamp for the response. + /// + string? CreatedAt { get; } + + /// + /// Gets the updated timestamp for the response. + /// + string? UpdatedAt { get; } + + /// + /// Gets the data source webpage URL for the response. + /// + string? WebpageUrl { get; } + + /// + /// Gets the file type for the response. + /// + string? FileType { get; } + } +} diff --git a/src/Tableau.Migration/Api/Rest/Models/Requests/CommitFlowPublishRequest.cs b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitFlowPublishRequest.cs new file mode 100644 index 0000000..c432855 --- /dev/null +++ b/src/Tableau.Migration/Api/Rest/Models/Requests/CommitFlowPublishRequest.cs @@ -0,0 +1,100 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Xml.Serialization; +using Tableau.Migration.Api.Models; + +namespace Tableau.Migration.Api.Rest.Models.Requests +{ + /// + /// + /// Class representing an commit prep flow request. + /// + /// + /// See Tableau API Reference for documentation. + /// + /// + [XmlType(XmlTypeName)] + public class CommitFlowPublishRequest : TableauServerRequest + { + /// + /// The default parameterless constructor. + /// + public CommitFlowPublishRequest() + { } + + /// + /// Creates a new object. + /// + /// The publish options. + public CommitFlowPublishRequest(IPublishFlowOptions options) + { + Flow = new FlowType + { + Name = options.Name, + Description = options.Description, + Project = new FlowType.ProjectType + { + Id = options.ProjectId + } + }; + } + + /// + /// Gets or sets the prep flow for the request. + /// + [XmlElement("flow")] + public FlowType? Flow { get; set; } + + /// + /// The prep flow type in the API request body. + /// + public class FlowType + { + /// + /// Gets or sets the name for the prep flow. + /// + [XmlAttribute("name")] + public string? Name { get; set; } + + /// + /// Gets or sets the description for the prep flow. + /// + [XmlAttribute("description")] + public string? Description { get; set; } + + /// + /// Gets or sets the prep flow's project for the request. + /// + [XmlElement("project")] + public ProjectType? Project { get; set; } + + /// + /// The project type in the API request body. + /// + public class ProjectType + { + /// + /// Gets or sets the ID for the request's project. + /// + [XmlAttribute("id")] + public Guid Id { get; set; } + } + } + } +} diff --git a/src/Tableau.Migration/Api/Rest/Models/Responses/FlowResponse.cs b/src/Tableau.Migration/Api/Rest/Models/Responses/FlowResponse.cs new file mode 100644 index 0000000..b9ab830 --- /dev/null +++ b/src/Tableau.Migration/Api/Rest/Models/Responses/FlowResponse.cs @@ -0,0 +1,177 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Linq; +using System; +using System.Xml.Serialization; + +namespace Tableau.Migration.Api.Rest.Models.Responses +{ + /// + /// Class representing a prep flow response. + ///Tableau API Reference for documentation. + /// + [XmlType(XmlTypeName)] + public class FlowResponse : TableauServerResponse + { + /// + /// Gets or sets the prep flow for the response. + /// + [XmlElement("flow")] + public override FlowType? Item { get; set; } + + /// + /// Class representing a site response. + /// + public class FlowType : IFlowType + { + /// + /// Gets or sets the ID for the response. + /// + [XmlAttribute("id")] + public Guid Id { get; set; } + + /// + /// Gets or sets the name for the response. + /// + [XmlAttribute("name")] + public string? Name { get; set; } + + /// + /// Gets or sets the description for the response. + /// + [XmlAttribute("description")] + public string? Description { get; set; } + + /// + /// Gets or sets the webpage URL for the response. + /// + [XmlAttribute("webpageUrl")] + public string? WebpageUrl { get; set; } + + /// + /// Gets or sets the file type for the response. + /// + [XmlAttribute("fileType")] + public string? FileType { get; set; } + + /// + /// Gets or sets the created timestamp for the response. + /// + [XmlAttribute("createdAt")] + public string? CreatedAt { get; set; } + + /// + /// Gets or sets the updated timestamp for the response. + /// + [XmlAttribute("updatedAt")] + public string? UpdatedAt { get; set; } + + /// + /// Gets or sets the project for the response. + /// + [XmlElement("project")] + public ProjectType? Project { get; set; } + + IProjectReferenceType? IWithProjectType.Project => Project; + + /// + /// Gets or sets the owner for the response. + /// + [XmlElement("owner")] + public OwnerType? Owner { get; set; } + + IOwnerType? IWithOwnerType.Owner => Owner; + + /// + /// Gets or sets the tags for the response. + /// + [XmlArray("tags")] + [XmlArrayItem("tag")] + public TagType[] Tags { get; set; } = Array.Empty(); + + ITagType[] IWithTagTypes.Tags + { + get => Tags; + set => Tags = value.Select(t => new TagType(t)).ToArray(); + } + + /// + /// Class representing a REST API project response. + /// + public class ProjectType : IProjectReferenceType + { + /// + /// Gets or sets the ID for the response. + /// + [XmlAttribute("id")] + public Guid Id { get; set; } + + /// + /// Gets or sets the name for the response. + /// + [XmlAttribute("name")] + public string? Name { get; set; } + } + + /// + /// Class representing a REST API user response. + /// + public class OwnerType : IOwnerType + { + /// + /// Gets or sets the ID for the response. + /// + [XmlAttribute("id")] + public Guid Id { get; set; } + + /// + /// Gets or sets the name for the response. + /// + [XmlAttribute("name")] + public string? Name { get; set; } + } + + /// + /// Class representing a REST API tag response. + /// + public class TagType : ITagType + { + /// + /// Gets or sets the label for the response. + /// + [XmlAttribute("label")] + public string? Label { get; set; } + + /// + /// The default parameterless constructor. + /// + public TagType() + { } + + /// + /// Constructor to build from + /// + /// The object. + public TagType(ITagType tag) + { + Label = tag.Label; + } + } + } + } +} diff --git a/src/Tableau.Migration/Api/Rest/Models/Types/FlowFileTypes.cs b/src/Tableau.Migration/Api/Rest/Models/Types/FlowFileTypes.cs new file mode 100644 index 0000000..7675814 --- /dev/null +++ b/src/Tableau.Migration/Api/Rest/Models/Types/FlowFileTypes.cs @@ -0,0 +1,40 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Tableau.Migration.Api.Rest.Models.Types +{ + /// + /// + /// Class containing prep flow file type constants. + /// + /// + /// See Tableau API Reference for documentation. + /// + /// + public class FlowFileTypes : StringEnum + { + /// + /// Gets the name of the TFL prep flow file type. + /// + public const string Tfl = "tfl"; + + /// + /// Gets the name of the TFLX prep flow file type. + /// + public const string Tflx = "tflx"; + } +} diff --git a/src/Tableau.Migration/Content/Flow.cs b/src/Tableau.Migration/Content/Flow.cs new file mode 100644 index 0000000..1b9e306 --- /dev/null +++ b/src/Tableau.Migration/Content/Flow.cs @@ -0,0 +1,104 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Collections.Generic; +using Tableau.Migration.Api.Rest.Models; + +namespace Tableau.Migration.Content +{ + internal class Flow : ContainerContentBase, IFlow + { + public Flow(IFlowType response, IContentReference project, IContentReference owner) + : this( + response.Id, + response.Name, + response.Description, + response.CreatedAt, + response.UpdatedAt, + response.WebpageUrl, + response.FileType, + response.Tags.ToTagList(t => new Tag(t)), + project, + owner) + { } + + public Flow(IFlow flow) + : this( + flow.Id, + flow.Name, + flow.Description, + flow.CreatedAt, + flow.UpdatedAt, + flow.WebpageUrl, + flow.FileType, + flow.Tags, + ((IContainerContent)flow).Container, + flow.Owner) + { } + + private Flow( + Guid id, + string? name, + string? description, + string? createdAt, + string? updatedAt, + string? webpageUrl, + string? fileType, + IList tags, + IContentReference project, + IContentReference owner) + : base(project) + { + Id = Guard.AgainstDefaultValue(id, () => id); + Name = Guard.AgainstNullEmptyOrWhiteSpace(name, () => name); + + Description = description ?? string.Empty; + CreatedAt = createdAt ?? string.Empty; + UpdatedAt = updatedAt ?? string.Empty; + + WebpageUrl = webpageUrl ?? string.Empty; + FileType = Guard.AgainstNullEmptyOrWhiteSpace(fileType, () => fileType); + + Owner = owner; + Tags = tags; + + Location = project.Location.Append(Name); + } + + /// + public string Description { get; set; } = string.Empty; + + /// + public string CreatedAt { get; } + + /// + public string? UpdatedAt { get; } + + /// + public string? WebpageUrl { get; } + + /// + public string FileType { get; set; } + + // + public IContentReference Owner { get; set; } + + /// + public IList Tags { get; set; } + } +} diff --git a/src/Tableau.Migration/Content/IFlow.cs b/src/Tableau.Migration/Content/IFlow.cs new file mode 100644 index 0000000..eb1f4eb --- /dev/null +++ b/src/Tableau.Migration/Content/IFlow.cs @@ -0,0 +1,37 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Tableau.Migration.Content +{ + /// + /// Interface for a prep flow content item. + /// + public interface IFlow : + IContentReference, + IPublishedContent, + IDescriptionContent, + IWithTags, + IContainerContent, + IMappableContainerContent, + IRequiresOwnerUpdate + { + /// + /// Get or sets the prep flow file type. + /// + string FileType { get; set; } + } +} diff --git a/src/Tableau.Migration/Content/IPublishableFlow.cs b/src/Tableau.Migration/Content/IPublishableFlow.cs new file mode 100644 index 0000000..15fda2d --- /dev/null +++ b/src/Tableau.Migration/Content/IPublishableFlow.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +namespace Tableau.Migration.Content +{ + /// + /// Interface for a that has been downloaded + /// and has full information necessary for re-publishing. + /// + public interface IPublishableFlow : IFlow, IFileContent + { } +} diff --git a/src/Tableau.Migration/Content/PublishableFlow.cs b/src/Tableau.Migration/Content/PublishableFlow.cs new file mode 100644 index 0000000..6c2036f --- /dev/null +++ b/src/Tableau.Migration/Content/PublishableFlow.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Threading.Tasks; +using System; +using Tableau.Migration.Content.Files; + +namespace Tableau.Migration.Content +{ + internal class PublishableFlow : Flow, IPublishableFlow + { + /// + public IContentFileHandle File { get; set; } + + public PublishableFlow(IFlow flow, IContentFileHandle file) + : base(flow) + { + File = file; + } + + #region - IAsyncDisposable Implementation - + + /// + /// Performs application-defined tasks associated with freeing, releasing, or resetting + /// unmanaged resources asynchronously. + /// + /// A task that represents the asynchronous dispose operation. + public async ValueTask DisposeAsync() + { + // Perform async cleanup. + await File.DisposeAsync().ConfigureAwait(false); + + // Suppress finalization. + GC.SuppressFinalize(this); + } + + #endregion + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Api/FlowsApiClientTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/FlowsApiClientTests.cs new file mode 100644 index 0000000..750dcac --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Api/FlowsApiClientTests.cs @@ -0,0 +1,113 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using System.Net; +using System.Net.Http; +using System.Threading.Tasks; +using Tableau.Migration.Api; +using Tableau.Migration.Api.Rest.Models.Responses; +using Tableau.Migration.Content; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Api +{ + public class FlowsApiClientTests + { + public abstract class FlowsApiClientTest : ApiClientTestBase + { + internal FlowsApiClient FlowsApiClient => GetApiClient(); + } + + #region - List - + + public class ListClient : PagedListApiClientTestBase + { } + + public class PageAccessor : ApiPageAccessorTestBase + { } + + #endregion + + #region - Download - + + public class DownloadDataSourceAsync : FlowsApiClientTest + { + [Fact] + public async Task ErrorAsync() + { + var exception = new Exception(); + + var mockResponse = new MockHttpResponseMessage(HttpStatusCode.InternalServerError, null); + mockResponse.Setup(r => r.EnsureSuccessStatusCode()).Throws(exception); + MockHttpClient.SetupResponse(mockResponse); + + var flowId = Guid.NewGuid(); + + var result = await ApiClient.DownloadFlowAsync(flowId, Cancel); + + result.AssertFailure(); + + var resultError = Assert.Single(result.Errors); + Assert.Same(exception, resultError); + + var request = MockHttpClient.AssertSingleRequest(); + request.AssertRelativeUri($"/api/{TableauServerVersion.RestApiVersion}/sites/{SiteId}/flows/{flowId}/content"); + } + + [Fact] + public async Task FailureResponseAsync() + { + var mockResponse = new MockHttpResponseMessage(HttpStatusCode.NotFound, null); + MockHttpClient.SetupResponse(mockResponse); + + var flowId = Guid.NewGuid(); + + var result = await ApiClient.DownloadFlowAsync(flowId, Cancel); + + result.AssertFailure(); + + Assert.Null(result.Value); + Assert.Single(result.Errors); + + var request = MockHttpClient.AssertSingleRequest(); + request.AssertRelativeUri($"/api/{TableauServerVersion.RestApiVersion}/sites/{SiteId}/flows/{flowId}/content"); + } + + [Fact] + public async Task SuccessAsync() + { + var content = new ByteArrayContent(Constants.DefaultEncoding.GetBytes("hi2u")); + + var mockResponse = new MockHttpResponseMessage(content); + MockHttpClient.SetupResponse(mockResponse); + + var flowId = Guid.NewGuid(); + + var result = await ApiClient.DownloadFlowAsync(flowId, Cancel); + + result.AssertSuccess(); + Assert.NotNull(result.Value); + + var request = MockHttpClient.AssertSingleRequest(); + request.AssertRelativeUri($"/api/{TableauServerVersion.RestApiVersion}/sites/{SiteId}/flows/{flowId}/content"); + } + } + + #endregion + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FlowPublisherTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FlowPublisherTests.cs new file mode 100644 index 0000000..2e0bc56 --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Api/Publishing/FlowPublisherTests.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Threading.Tasks; +using Tableau.Migration.Api.Models; +using Tableau.Migration.Api.Publishing; +using Tableau.Migration.Api.Rest; +using Tableau.Migration.Api.Rest.Models.Responses; +using Tableau.Migration.Content; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Api.Publishing +{ + public class FlowPublisherTests + { + public abstract class FlowPublisherTest : FilePublisherTestBase + { + internal readonly FlowPublisher FlowPublisher; + + protected override IFlowPublisher Publisher => FlowPublisher; + + public FlowPublisherTest() + : base(RestUrlPrefixes.Flows) + { + FlowPublisher = CreateService(); + } + } + + public class PublishAsync : FlowPublisherTest + { + [Fact] + public async Task Publishes() + { + var initiateResponse = SetupSuccessResponse(); + var getFlowResponse = SetupSuccessResponse(); + + var publishOptions = Create(); + + var result = await FlowPublisher.PublishAsync(publishOptions, Cancel); + + Assert.True(result.Success); + + AssertRequests( + initiateResponse.Item, + r => + { + r.AssertQuery("flowType", publishOptions.FileType); + r.AssertQuery("overwrite", publishOptions.Overwrite.ToString().ToLower()); + }); + + Assert.Equal(getFlowResponse.Item.Id, result.Value.Id); + } + } + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PublishFlowOptionsTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PublishFlowOptionsTests.cs new file mode 100644 index 0000000..6fa21b7 --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/PublishFlowOptionsTests.cs @@ -0,0 +1,49 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.IO; +using Tableau.Migration.Api.Models; +using Tableau.Migration.Api.Rest.Models.Types; +using Tableau.Migration.Content; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Api.Rest.Models +{ + public class PublishFlowOptionsTests + { + public class Ctor : AutoFixtureTestBase + { + [Fact] + public void Initializes() + { + var flow = Create(); + using var file = new MemoryStream(); + var fileType = FlowFileTypes.Tfl; + + var opts = new PublishFlowOptions(flow, file, fileType); + + Assert.Equal(flow.Name, opts.Name); + Assert.Equal(flow.Description, opts.Description); + Assert.Equal(((IContainerContent)flow).Container.Id, opts.ProjectId); + Assert.Equal(flow.File.OriginalFileName, opts.FileName); + + Assert.Same(file, opts.File); + Assert.Equal(fileType, opts.FileType); + } + } + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitDataSourcePublishRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitDataSourcePublishRequestTests.cs similarity index 89% rename from tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitDataSourcePublishRequestTests.cs rename to tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitDataSourcePublishRequestTests.cs index e471e98..df141bb 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitDataSourcePublishRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitDataSourcePublishRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitFlowPublishRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitFlowPublishRequestTests.cs new file mode 100644 index 0000000..456e8ab --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitFlowPublishRequestTests.cs @@ -0,0 +1,49 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using Tableau.Migration.Api.Models; +using Tableau.Migration.Api.Rest.Models.Requests; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Api.Rest.Models.Requests +{ + public class CommitFlowPublishRequestTests + { + public abstract class CommitFlowPublishRequestTest : AutoFixtureTestBase + { } + + public class Ctor : CommitFlowPublishRequestTest + { + [Fact] + public void Initializes() + { + var options = Create(); + + var request = new CommitFlowPublishRequest(options); + + Assert.NotNull(request.Flow); + + Assert.Equal(options.Name, request.Flow.Name); + Assert.Equal(options.Description, request.Flow.Description); + + Assert.NotNull(request.Flow.Project); + + Assert.Equal(options.ProjectId, request.Flow.Project.Id); + } + } + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitWorkbookPublishRequestTests.cs b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitWorkbookPublishRequestTests.cs similarity index 87% rename from tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitWorkbookPublishRequestTests.cs rename to tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitWorkbookPublishRequestTests.cs index cccb3ed..a652a40 100644 --- a/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/CommitWorkbookPublishRequestTests.cs +++ b/tests/Tableau.Migration.Tests/Unit/Api/Rest/Models/Requests/CommitWorkbookPublishRequestTests.cs @@ -1,14 +1,15 @@ -// Copyright (c) 2023, Salesforce, Inc. +// +// Copyright (c) 2024, Salesforce, Inc. // SPDX-License-Identifier: Apache-2 // -// Licensed under the Apache License, Version 2.0 (the ""License"") +// Licensed under the Apache License, Version 2.0 (the "License") // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an ""AS IS"" BASIS, +// distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. @@ -19,7 +20,7 @@ using Tableau.Migration.Api.Rest.Models.Requests; using Xunit; -namespace Tableau.Migration.Tests.Unit.Api.Rest.Models +namespace Tableau.Migration.Tests.Unit.Api.Rest.Models.Requests { public class CommitWorkbookPublishRequestTests { diff --git a/tests/Tableau.Migration.Tests/Unit/Content/FlowTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/FlowTests.cs new file mode 100644 index 0000000..4f6943c --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Content/FlowTests.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System; +using Moq; +using Tableau.Migration.Api.Rest.Models; +using Tableau.Migration.Content; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Content +{ + public class FlowTests + { + public class Ctor : AutoFixtureTestBase + { + [Fact] + public void NullId() + { + var mockResponse = Create>(); + mockResponse.SetupGet(x => x.Id).Returns(null); + + Assert.Throws(() => new Flow(mockResponse.Object, Create(), Create())); + } + + [Fact] + public void EmptyId() + { + var mockResponse = Create>(); + mockResponse.SetupGet(x => x.Id).Returns(Guid.Empty); + + Assert.Throws(() => new Flow(mockResponse.Object, Create(), Create())); + } + + [Theory] + [NullEmptyWhiteSpaceData] + public void NameRequired(string? s) + { + var mockResponse = Create>(); + mockResponse.SetupGet(x => x.Name).Returns(s); + + Assert.Throws(() => new Flow(mockResponse.Object, Create(), Create())); + } + + [Theory] + [NullEmptyWhiteSpaceData] + public void FileTypeRequired(string? s) + { + var mockResponse = Create>(); + mockResponse.SetupGet(x => x.FileType).Returns(s); + + Assert.Throws(() => new Flow(mockResponse.Object, Create(), Create())); + } + } + } +} diff --git a/tests/Tableau.Migration.Tests/Unit/Content/PublishableFlowTests.cs b/tests/Tableau.Migration.Tests/Unit/Content/PublishableFlowTests.cs new file mode 100644 index 0000000..ab0b2fe --- /dev/null +++ b/tests/Tableau.Migration.Tests/Unit/Content/PublishableFlowTests.cs @@ -0,0 +1,43 @@ +// +// Copyright (c) 2024, Salesforce, Inc. +// SPDX-License-Identifier: Apache-2 +// +// Licensed under the Apache License, Version 2.0 (the "License") +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// + +using System.Threading.Tasks; +using Moq; +using Tableau.Migration.Content; +using Tableau.Migration.Content.Files; +using Xunit; + +namespace Tableau.Migration.Tests.Unit.Content +{ + public class PublishableFlowTests + { + public class DisposeAsync : AutoFixtureTestBase + { + [Fact] + public async Task DisposesFileAsync() + { + var innerFlow = Create(); + var mockFile = Create>(); + + await using (var pf = new PublishableFlow(innerFlow, mockFile.Object)) + { } + + mockFile.Verify(x => x.DisposeAsync(), Times.Once); + } + } + } +} From e6c9947f2fc2a8ea922a5c68e1e2e31bfb0f6a9e Mon Sep 17 00:00:00 2001 From: Steffen Froehlich Date: Mon, 13 May 2024 08:07:44 -0700 Subject: [PATCH 4/4] Release 3.0.0 resetting files that were not needed --- .gitignore | 4 ++++ CODEOWNERS | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 93a79bb..3e6a492 100644 --- a/.gitignore +++ b/.gitignore @@ -184,4 +184,8 @@ UpgradeLog.htm /src/Documentation/_python /src/Python/Documentation/generated /tests/Python.TestApplication/manifest.json +/.git2gus +/src/Python/scripts/publish-package.ps1 +# Public repo ignores +.github/pull_request_template.md \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS index 0c41fc3..c044e59 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,2 @@ -#GUSINFO: gus_team_id,product_tag_id -#GUSINFO: a00EE00000glzJCYAY,a1aEE000000JtTpYAK -* @tableau/migration +# Comment line immediately above ownership line is reserved for related other information. Please be careful while editing. +#ECCN:Open Source 5D002