diff --git a/end-to-end-solutions/Luna/Resources/Builds/1.0/apiApp.zip b/end-to-end-solutions/Luna/Resources/Builds/1.0/apiApp.zip index 16e85c3..29c81fb 100644 Binary files a/end-to-end-solutions/Luna/Resources/Builds/1.0/apiApp.zip and b/end-to-end-solutions/Luna/Resources/Builds/1.0/apiApp.zip differ diff --git a/end-to-end-solutions/Luna/Resources/Builds/1.0/webjob.zip b/end-to-end-solutions/Luna/Resources/Builds/1.0/webjob.zip index 9838ad5..bf7df13 100644 Binary files a/end-to-end-solutions/Luna/Resources/Builds/1.0/webjob.zip and b/end-to-end-solutions/Luna/Resources/Builds/1.0/webjob.zip differ diff --git a/end-to-end-solutions/Luna/Resources/Deployment/CheckPermissions.ps1 b/end-to-end-solutions/Luna/Resources/Deployment/CheckPermissions.ps1 index f681aef..80a451e 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/CheckPermissions.ps1 +++ b/end-to-end-solutions/Luna/Resources/Deployment/CheckPermissions.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [Parameter(Mandatory=$true)] [string]$tenantId = "default", diff --git a/end-to-end-solutions/Luna/Resources/Deployment/Deploy.ps1 b/end-to-end-solutions/Luna/Resources/Deployment/Deploy.ps1 index 3fa5ddc..6931456 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/Deploy.ps1 +++ b/end-to-end-solutions/Luna/Resources/Deployment/Deploy.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [Parameter(Mandatory=$true)] [string]$uniqueName = "default", diff --git a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/latest/db_provisioning.sql b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/latest/db_provisioning.sql index 50f590d..6cbf572 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/latest/db_provisioning.sql +++ b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/latest/db_provisioning.sql @@ -1,3 +1,5 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the MIT license. SET ANSI_NULLS ON GO diff --git a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.0/db_provisioning.sql b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.0/db_provisioning.sql index 642831d..5809b51 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.0/db_provisioning.sql +++ b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.0/db_provisioning.sql @@ -1,3 +1,5 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the MIT license. SET ANSI_NULLS ON GO diff --git a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.1/db_provisioning.sql b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.1/db_provisioning.sql index ee1057a..471294e 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.1/db_provisioning.sql +++ b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v1.1/db_provisioning.sql @@ -1,3 +1,5 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the MIT license. SET ANSI_NULLS ON GO diff --git a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v2.0/db_provisioning.sql b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v2.0/db_provisioning.sql index d9f3179..79ccc84 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v2.0/db_provisioning.sql +++ b/end-to-end-solutions/Luna/Resources/Deployment/SqlScripts/v2.0/db_provisioning.sql @@ -1,3 +1,5 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the MIT license. SET ANSI_NULLS ON GO diff --git a/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/SqlScripts/db_upgrade.sql b/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/SqlScripts/db_upgrade.sql index c97c550..c0b32aa 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/SqlScripts/db_upgrade.sql +++ b/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/SqlScripts/db_upgrade.sql @@ -1,3 +1,5 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the MIT license. DECLARE @current_version bigint DECLARE @target_version bigint DECLARE @upgrade_version bigint diff --git a/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/Upgrade.ps1 b/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/Upgrade.ps1 index 7dd680f..8957bf3 100644 --- a/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/Upgrade.ps1 +++ b/end-to-end-solutions/Luna/Resources/Deployment/UpgradeScripts/Upgrade.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [Parameter(Mandatory=$true)] [string]$uniqueName = "default", diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/APIRouting/APIRoutingController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/APIRouting/APIRoutingController.cs index 71ed358..96a7841 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/APIRouting/APIRoutingController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/APIRouting/APIRoutingController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateController.cs index b279be9..2333476 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateParameterController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateParameterController.cs index c2baacb..94a72a7 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateParameterController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/ArmTemplateParameterController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterController.cs index 1c076cd..d6e9485 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterDimensionController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterDimensionController.cs index b6442d2..5700ea8 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterDimensionController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/CustomMeterDimensionController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/IpConfigController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/IpConfigController.cs index 9ca06cf..8252770 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/IpConfigController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/IpConfigController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/AMLWorkspaceController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/AMLWorkspaceController.cs index 3c30f41..f669e8c 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/AMLWorkspaceController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/AMLWorkspaceController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APISubscriptionController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APISubscriptionController.cs index dd49255..d3788da 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APISubscriptionController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APISubscriptionController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APIVersionController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APIVersionController.cs index 51395d1..e89a29b 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APIVersionController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/APIVersionController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text.Json; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/DeploymentController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/DeploymentController.cs index 1150c99..9fc87b8 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/DeploymentController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/DeploymentController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/ProductController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/ProductController.cs index ee29513..47b5819 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/ProductController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/Luna.AI/ProductController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferController.cs index 48312f9..1d37b2e 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferParameterController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferParameterController.cs index 6fa9afe..3b6485f 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferParameterController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/OfferParameterController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/PlanController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/PlanController.cs index 91ad46b..6d38549 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/PlanController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/PlanController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/RestrictedUserController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/RestrictedUserController.cs index a6c9a09..68afae6 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/RestrictedUserController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/RestrictedUserController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/SubscriptionController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/SubscriptionController.cs index ca01052..e605622 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/SubscriptionController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/SubscriptionController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/TelemetryDataConnectorController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/TelemetryDataConnectorController.cs index 70dcc3e..d9468d1 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/TelemetryDataConnectorController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/TelemetryDataConnectorController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookController.cs index eabd22f..35519e2 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookParameterController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookParameterController.cs index 515578d..1686e13 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookParameterController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Admin/WebhookParameterController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Customer/WebHookController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Customer/WebHookController.cs index c47df5f..ce822c4 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Customer/WebHookController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Customer/WebHookController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Provisioning/ProvisioningController.cs b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Provisioning/ProvisioningController.cs index d1eaf98..6b4bcea 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Controllers/Provisioning/ProvisioningController.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Controllers/Provisioning/ProvisioningController.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Program.cs b/end-to-end-solutions/Luna/src/Luna.API/Program.cs index f6685b9..ef1d425 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Program.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Program.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Microsoft.Azure.KeyVault; diff --git a/end-to-end-solutions/Luna/src/Luna.API/Startup.cs b/end-to-end-solutions/Luna/src/Luna.API/Startup.cs index 0f451d7..8e6610f 100644 --- a/end-to-end-solutions/Luna/src/Luna.API/Startup.cs +++ b/end-to-end-solutions/Luna/src/Luna.API/Startup.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.IO; using System.Net; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMConfiguration.cs index 7d5548b..f1df793 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Clients.Azure.APIM diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMUtility.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMUtility.cs index 174e991..4004231 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMUtility.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/APIMUtility.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IAPIMUtility.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IAPIMUtility.cs index 33d1203..de18693 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IAPIMUtility.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IAPIMUtility.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IClientCertAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IClientCertAPIM.cs index ebbf3f5..179b623 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IClientCertAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/IClientCertAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Luna.Clients.Azure.Auth; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APISubscriptionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APISubscriptionAPIM.cs index 5ab0220..576b4bf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APISubscriptionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APISubscriptionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionAPIM.cs index aacbefe..34e496c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionSetAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionSetAPIM.cs index 0f990b8..a0c1e4e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionSetAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/APIVersionSetAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/Auth/APIMAuthHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/Auth/APIMAuthHelper.cs index ef7d8d6..981a52e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/Auth/APIMAuthHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/Auth/APIMAuthHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Globalization; using System.Security.Cryptography; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ClientCertAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ClientCertAPIM.cs index 374ca30..23cff5b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ClientCertAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ClientCertAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.IO; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPISubscriptionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPISubscriptionAPIM.cs index dcecef4..745220c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPISubscriptionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPISubscriptionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionAPIM.cs index b834784..fe5955d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionSetAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionSetAPIM.cs index 6dcdd68..936e5e3 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionSetAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IAPIVersionSetAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IOperationAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IOperationAPIM.cs index e30d4b0..4df96f2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IOperationAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IOperationAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IPolicyAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IPolicyAPIM.cs index 52e9d76..430cd1e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IPolicyAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IPolicyAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIM.cs index 67ca103..f9024c9 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIVersionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIVersionAPIM.cs index e68e72a..c212081 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIVersionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IProductAPIVersionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IUserAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IUserAPIM.cs index b10696e..0f7f139 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IUserAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/IUserAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/OperationAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/OperationAPIM.cs index 25fc423..759938e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/OperationAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/OperationAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/PolicyAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/PolicyAPIM.cs index 53581c3..8a17f51 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/PolicyAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/PolicyAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIM.cs index 20510c7..d52bfe6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIVersionAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIVersionAPIM.cs index 4e409fe..4ceeec9 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIVersionAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/ProductAPIVersionAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/UserAPIM.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/UserAPIM.cs index 3d5e208..7de9ba7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/UserAPIM.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/APIM/Luna.AI/UserAPIM.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/ARMTemplateHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/ARMTemplateHelper.cs index c2f5c41..9e5753f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/ARMTemplateHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/ARMTemplateHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using Newtonsoft.Json; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AADAuthHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AADAuthHelper.cs index 1953af0..4b9da9d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AADAuthHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AADAuthHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AuthenticationConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AuthenticationConfiguration.cs index 05c5bf6..f712e52 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AuthenticationConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/AuthenticationConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Clients.Azure.Auth diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertAuthHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertAuthHelper.cs index 0f60d3e..bf47c73 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertAuthHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertAuthHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Security.Cryptography.X509Certificates; using Luna.Clients.Azure.APIM; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertConfiguration.cs index 8e7a70d..711f390 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/ClientCertConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/IKeyVaultHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/IKeyVaultHelper.cs index a24a52a..a5eeb74 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/IKeyVaultHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/IKeyVaultHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Microsoft.Azure.KeyVault.WebKey; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/KeyVaultHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/KeyVaultHelper.cs index 1503b1c..db73c0f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/KeyVaultHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Auth/KeyVaultHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Microsoft.Azure.KeyVault; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/IStorageUtility.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/IStorageUtility.cs index e803e7f..e7cfd66 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/IStorageUtility.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/IStorageUtility.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Microsoft.WindowsAzure.Storage.Table; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageAccountConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageAccountConfiguration.cs index 05bad7d..25103a8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageAccountConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageAccountConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Clients.Azure.Storage diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageUtility.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageUtility.cs index 03dea2d..c2c5d2e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageUtility.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Azure/Storage/StorageUtility.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Controller/Auth/ControllerAuthHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Controller/Auth/ControllerAuthHelper.cs index f4dd534..7080e9f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Controller/Auth/ControllerAuthHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Controller/Auth/ControllerAuthHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Microsoft.IdentityModel.Clients.ActiveDirectory; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Controller/ControllerHelper.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Controller/ControllerHelper.cs index b7da529..65b654e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Controller/ControllerHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Controller/ControllerHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/CustomMeteringClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/CustomMeteringClient.cs index 379c27b..3e61d77 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/CustomMeteringClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/CustomMeteringClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/ICustomMeteringClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/ICustomMeteringClient.cs index 2ec6563..e36f891 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/ICustomMeteringClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/CustomMetering/ICustomMeteringClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/ExceptionUtils.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/ExceptionUtils.cs index fa9d046..f4789cc 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/ExceptionUtils.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/ExceptionUtils.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Net; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaBadRequestUserException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaBadRequestUserException.cs index 140c93c..c9b390e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaBadRequestUserException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaBadRequestUserException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Exceptions { public class LunaBadRequestUserException : LunaUserException diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaConflictUserException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaConflictUserException.cs index 5b15d69..a54ee4d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaConflictUserException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaConflictUserException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Exceptions { public class LunaConflictUserException : LunaUserException diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaFulfillmentException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaFulfillmentException.cs index 5552b0f..2741bed 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaFulfillmentException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaFulfillmentException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Clients.Exceptions diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaNotFoundUserException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaNotFoundUserException.cs index 7d9910f..4e2c27c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaNotFoundUserException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaNotFoundUserException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Exceptions { public class LunaNotFoundUserException:LunaUserException diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaProvisioningException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaProvisioningException.cs index 6c88d3d..ec41a1b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaProvisioningException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaProvisioningException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Luna.Data.Enums; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaServerException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaServerException.cs index c37dc30..9ef01a3 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaServerException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaServerException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Clients.Exceptions diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUnauthorizedUserException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUnauthorizedUserException.cs index c21c64f..3bde327 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUnauthorizedUserException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUnauthorizedUserException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Exceptions { public class LunaUnauthorizedUserException : LunaUserException diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUserException.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUserException.cs index c5eacdf..1f44c0d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUserException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/LunaUserException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Net; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/UserErrorCode.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/UserErrorCode.cs index c7ec53b..93a601a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/UserErrorCode.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Exceptions/UserErrorCode.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Exceptions { public enum UserErrorCode diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/FluentUriBuilder.cs b/end-to-end-solutions/Luna/src/Luna.Clients/FluentUriBuilder.cs index d1e78b6..3912ecf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/FluentUriBuilder.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/FluentUriBuilder.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Linq; using System.Web; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/FulfillmentClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/FulfillmentClient.cs index dd31947..9d84b5f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/FulfillmentClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/FulfillmentClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/IFulfillmentClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/IFulfillmentClient.cs index 9deff29..8974a01 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/IFulfillmentClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/IFulfillmentClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/SubscriptionAction.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/SubscriptionAction.cs index 9f3ea27..b0daa47 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/SubscriptionAction.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Fulfillment/SubscriptionAction.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.ComponentModel; namespace Luna.Clients.Fulfillment diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/IpAddressing/IpRangeUtility.cs b/end-to-end-solutions/Luna/src/Luna.Clients/IpAddressing/IpRangeUtility.cs index fef7bbb..3b10f9c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/IpAddressing/IpRangeUtility.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/IpAddressing/IpRangeUtility.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Logging/LoggingUtils.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Logging/LoggingUtils.cs index 3059a4c..a900cc1 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Logging/LoggingUtils.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Logging/LoggingUtils.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Net; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/LunaClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/LunaClient.cs index 29e31da..3084dce 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/LunaClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/LunaClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersion.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersion.cs index 2e8d398..a9ad05d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersion.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersion.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersionSet.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersionSet.cs index e267584..e8a971b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersionSet.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/APIVersionSet.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Azure { public class APIVersionSet diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Operation.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Operation.cs index 1ff4a65..142dfa9 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Operation.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Operation.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/OperationTypeEnum.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/OperationTypeEnum.cs index ce0bf32..fba73f1 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/OperationTypeEnum.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/OperationTypeEnum.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Policy.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Policy.cs index df60415..d859ec5 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Policy.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Policy.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Product.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Product.cs index f9ccf79..ed35738 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Product.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Product.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Subscription.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Subscription.cs index f1aafc7..0f65471 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Subscription.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/Subscription.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/SubscriptionStatus.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/SubscriptionStatus.cs index 9d01628..40c2206 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/SubscriptionStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/SubscriptionStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/User.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/User.cs index 87b4418..3b6e7cb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/User.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Azure/APIM/Luna.AI/User.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Azure { public class User diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceRequest.cs index 10991da..287d158 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; namespace Luna.Clients.Models.Controller.Backend diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceWithDefaultModelRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceWithDefaultModelRequest.cs index 0170505..31fe8fb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceWithDefaultModelRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/BatchInferenceWithDefaultModelRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeployRealTimePredictionEndpointRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeployRealTimePredictionEndpointRequest.cs index 9ec5680..6b4c2e8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeployRealTimePredictionEndpointRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeployRealTimePredictionEndpointRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeploymentStatus.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeploymentStatus.cs index bf3b375..b375e8a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeploymentStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/DeploymentStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Endpoint.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Endpoint.cs index 650cd98..af349ed 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Endpoint.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Endpoint.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationRequest.cs index c291f52..7fbca0a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationResponse.cs index 02f54a3..ccaffd7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetABatchInferenceOperationResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserRequest.cs index 72ae20a..d7fe794 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserResponse.cs index 38ba9be..3f64d30 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetADeployOperationByEndpointIdUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAModelByModelIdUserProductDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAModelByModelIdUserProductDeploymentResponse.cs index ef5c094..2d5ed67 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAModelByModelIdUserProductDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAModelByModelIdUserProductDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs index 09c1881..8b91552 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllModelsByUserProductDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllModelsByUserProductDeploymentResponse.cs index 261be8b..96dd431 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllModelsByUserProductDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllModelsByUserProductDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs index 415b69c..64ae5ea 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserRequest.cs index 79db008..491a580 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs index dbc925c..b31aadd 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserRequest.cs index a76822c..068294d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserResponse.cs index 5885004..1681914 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/GetAllTrainingOperationsByModelIdUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserRequest.cs index 4035196..6027cfc 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserResponse.cs index 04d98a9..3317932 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllDeployOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserRequest.cs index a7826cd..fd2b953 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserResponse.cs index a2bad54..55ba58f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllInferenceOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserRequest.cs index 43a5c05..5aa7a78 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserResponse.cs index 428eb3d..34cd4bf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByAUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserRequest.cs index a2fff79..8c3c2c4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserResponse.cs index 832031b..445f12d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ListAllTrainingOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Model.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Model.cs index d80b225..9d7d21f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Model.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Model.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ModelTrainingStatus.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ModelTrainingStatus.cs index 3b6279c..1bdf955 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ModelTrainingStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/ModelTrainingStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Operation.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Operation.cs index 3e939c3..aaf02eb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Operation.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/Operation.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/OperationStatus.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/OperationStatus.cs index 08d6d42..e5df5d5 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/OperationStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/OperationStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/TrainModelRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/TrainModelRequest.cs index 9d6b0fb..d46a193 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/TrainModelRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/Backend/TrainModelRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceRequest.cs index 2495e20..14be357 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceResponse.cs index beedc61..6fe739d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/BatchInferenceResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointRequest.cs index 003b3bf..bf70f4b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointResponse.cs index 47e79bf..0dfeea4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/DeployRealTimePredictionEndpointResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetABatchInferenceOperationResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetABatchInferenceOperationResponse.cs index a2e4623..965ed48 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetABatchInferenceOperationResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetABatchInferenceOperationResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployOperationByEndpointIdUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployOperationByEndpointIdUserResponse.cs index 1f12330..0ccdc34 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployOperationByEndpointIdUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployOperationByEndpointIdUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployedEndpointResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployedEndpointResponse.cs index 6544575..a995ed7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployedEndpointResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetADeployedEndpointResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelByModelIdUserProductDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelByModelIdUserProductDeploymentResponse.cs index 5f08cee..5f29871 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelByModelIdUserProductDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelByModelIdUserProductDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelResponse.cs index 471c459..09e0fbf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAModelResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs index fe8a9b4..2dc5d9b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetARealTimeServiceEndpointByEndpointIdUserProductAndDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllDeployedEndpoints.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllDeployedEndpoints.cs index d37963b..2ee2000 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllDeployedEndpoints.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllDeployedEndpoints.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllModelsByUserProductDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllModelsByUserProductDeploymentResponse.cs index 145f104..4f18d0d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllModelsByUserProductDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllModelsByUserProductDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs index 934e25a..a0a6f45 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllRealTimeServiceEndpointsByUserProductAndDeploymentResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs index ebb383e..9b081d7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdAndVerifyUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdUserResponse.cs index 5a2a729..5506da8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetAllTrainingOperationsByModelIdUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetServiceKeysResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetServiceKeysResponse.cs index ead9f10..464ee4d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetServiceKeysResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/GetServiceKeysResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllDeployOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllDeployOperationsByUserResponse.cs index 72e2770..f25f2b6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllDeployOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllDeployOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllInferenceOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllInferenceOperationsByUserResponse.cs index 71e00a0..e5db1af 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllInferenceOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllInferenceOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllTrainingOperationsByUserResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllTrainingOperationsByUserResponse.cs index 2cbbd26..eac2e42 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllTrainingOperationsByUserResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/ListAllTrainingOperationsByUserResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/PredictRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/PredictRequest.cs index 896a4cf..e50c664 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/PredictRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/PredictRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelRequest.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelRequest.cs index 37d6cac..fe56a0b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelRequest.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelRequest.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelResponse.cs index 17d63cf..7813cbf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Controller/TrainModelResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/BatchUsageEvent.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/BatchUsageEvent.cs index cf5c0b9..90854fc 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/BatchUsageEvent.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/BatchUsageEvent.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeterEventStatus.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeterEventStatus.cs index 75d166b..1890df2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeterEventStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeterEventStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringAzureTableEntity.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringAzureTableEntity.cs index 2132a8c..aab0a65 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringAzureTableEntity.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringAzureTableEntity.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBadRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBadRequestResult.cs index e4ad27d..7ee9e4f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBadRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBadRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; namespace Luna.Clients.Models.CustomMetering diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBatchSuccessResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBatchSuccessResult.cs index 18eb15a..52cd0a7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBatchSuccessResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringBatchSuccessResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using Microsoft.WindowsAzure.Storage.Table; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringConflictResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringConflictResult.cs index 22c9d68..59c600c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringConflictResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringConflictResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.CustomMetering { public class AdditionalInfo diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringError.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringError.cs index 8dcf749..9b689f0 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringError.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringError.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringForbiddenResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringForbiddenResult.cs index f30ae4b..5e4a09c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringForbiddenResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringForbiddenResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.CustomMetering { public class CustomMeteringForbiddenResult : CustomMeteringRequestResult diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringRequestResult.cs index c17d363..d5c80fc 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Models.Fulfillment; namespace Luna.Clients.Models.CustomMetering diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringSuccessResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringSuccessResult.cs index a9e52f0..fdceb3b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringSuccessResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/CustomMeteringSuccessResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.CustomMetering { public class CustomMeteringSuccessResult : CustomMeteringRequestResult diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/FailedCustomMeteringAzureTableEntity.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/FailedCustomMeteringAzureTableEntity.cs index ef131ad..8fd6217 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/FailedCustomMeteringAzureTableEntity.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/FailedCustomMeteringAzureTableEntity.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/Usage.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/Usage.cs index c7224ec..824a77c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/Usage.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/CustomMetering/Usage.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.CustomMetering { public class Usage diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/ErrorModel.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/ErrorModel.cs index 92105f8..d18ff96 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/ErrorModel.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/ErrorModel.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Luna.Clients.Exceptions; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ActivatedSubscriptionResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ActivatedSubscriptionResult.cs index 721dfa5..1413dd9 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ActivatedSubscriptionResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ActivatedSubscriptionResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Fulfillment { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/FulfillmentRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/FulfillmentRequestResult.cs index da4b45a..27db63e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/FulfillmentRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/FulfillmentRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Fulfillment { public class FulfillmentRequestResult : HttpRequestResult diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationStatusEnum.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationStatusEnum.cs index 9ae88a8..0098e85 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationStatusEnum.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationStatusEnum.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Fulfillment { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdate.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdate.cs index c923ffa..90bd10e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdate.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdate.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Fulfillment { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdateStatusEnum.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdateStatusEnum.cs index 70ded33..8c10854 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdateStatusEnum.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/OperationUpdateStatusEnum.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Fulfillment { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ResolvedSubscriptionResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ResolvedSubscriptionResult.cs index e83b0ea..5ec5175 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ResolvedSubscriptionResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/ResolvedSubscriptionResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Newtonsoft.Json; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionOperation.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionOperation.cs index bf0f1d9..d876601 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionOperation.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionOperation.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionPlans.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionPlans.cs index 4d9447a..47f93d4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionPlans.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionPlans.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; namespace Luna.Clients.Models.Fulfillment diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionResult.cs index 2d1cd19..a1aae96 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/SubscriptionResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using Newtonsoft.Json; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/Term.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/Term.cs index 0bf401e..29624fd 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/Term.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/Term.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Newtonsoft.Json; using Newtonsoft.Json.Converters; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/UpdateOrDeleteSubscriptionRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/UpdateOrDeleteSubscriptionRequestResult.cs index 7fc5430..9a1926f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/UpdateOrDeleteSubscriptionRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/UpdateOrDeleteSubscriptionRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Linq; using System.Net.Http.Headers; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/WebhookContent.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/WebhookContent.cs index 884faaf..ca7a643 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/WebhookContent.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Fulfillment/WebhookContent.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Newtonsoft.Json; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/HttpRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/HttpRequestResult.cs index f76a819..3599762 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/HttpRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/HttpRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentEnums.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentEnums.cs index 9667772..6d574f7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentEnums.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentEnums.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Provisioning { public enum DeploymentMode diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestBody.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestBody.cs index 2fd80aa..e013733 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestBody.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestBody.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Provisioning { public class DeploymentRequestBody diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestDefinitions.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestDefinitions.cs index 7e168b5..b97f6ce 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestDefinitions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestDefinitions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Provisioning { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestResult.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestResult.cs index 1465473..707b7ac 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Models/Provisioning/DeploymentRequestResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Clients.Models.Provisioning { public class DeploymentRequestResult : HttpRequestResult diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/IProvisioningClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/IProvisioningClient.cs index fa66e92..d386a02 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/IProvisioningClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/IProvisioningClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/ProvisioningClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/ProvisioningClient.cs index a41f126..38651b9 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/ProvisioningClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/Provisioning/ProvisioningClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Net.Http; using System.Threading; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/RestClient.cs b/end-to-end-solutions/Luna/src/Luna.Clients/RestClient.cs index c4c45f3..f2564d6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/RestClient.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/RestClient.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Net.Http; using System.Net.Http.Headers; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/SecuredClientConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/SecuredClientConfiguration.cs index 9761bb0..6f21fb6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/SecuredClientConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/SecuredClientConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure.Auth; namespace Luna.Clients diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/CustomMeterEvent.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/CustomMeterEvent.cs index 8d0a210..258ac9b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/CustomMeterEvent.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/CustomMeterEvent.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/ITelemetryDataConnector.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/ITelemetryDataConnector.cs index 5f95f48..d3b1e3c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/ITelemetryDataConnector.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/ITelemetryDataConnector.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsConfiguration.cs index 9a3f5f5..bcee073 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsTelemetryDataConnector.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsTelemetryDataConnector.cs index 19cfa1d..903696a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsTelemetryDataConnector.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/LogAnalytics/LogAnalyticsTelemetryDataConnector.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/QueryResponse.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/QueryResponse.cs index 48c2cd2..43cc889 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/QueryResponse.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/QueryResponse.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SQLConfiguration.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SQLConfiguration.cs index d436dd1..a079701 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SQLConfiguration.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SQLConfiguration.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SqlTelemetryDataConnector.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SqlTelemetryDataConnector.cs index 050f6a7..be50d01 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SqlTelemetryDataConnector.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/SQL/SqlTelemetryDataConnector.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorManager.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorManager.cs index d7f9f8e..4ded02b 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorManager.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorManager.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net.Http; diff --git a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorTypes.cs b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorTypes.cs index e7cfc85..28ae783 100644 --- a/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorTypes.cs +++ b/end-to-end-solutions/Luna/src/Luna.Clients/TelemetryDataConnectors/TelemetryDataConnectorTypes.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/AMLPipeline.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/AMLPipeline.cs index c649e9a..7877a08 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/AMLPipeline.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/AMLPipeline.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APISubscriptionKeyName.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APISubscriptionKeyName.cs index 311c7f5..759cbab 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APISubscriptionKeyName.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APISubscriptionKeyName.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APIVersionSourceType.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APIVersionSourceType.cs index 578ec7b..8e8df50 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APIVersionSourceType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/APIVersionSourceType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/HostType.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/HostType.cs index 9ecec90..8aac738 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/HostType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/HostType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/ProductType.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/ProductType.cs index a85a0a4..228db8c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/ProductType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/Luna.AI/ProductType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/OfferWarning.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/OfferWarning.cs index 13136a3..1d66388 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/OfferWarning.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/OfferWarning.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionProvision.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionProvision.cs index 7e248e8..29b7f5c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionProvision.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionProvision.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionWarning.cs b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionWarning.cs index 52d8594..b045df6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionWarning.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/DataContracts/SubscriptionWarning.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/AadSecretTmp.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/AadSecretTmp.cs index 8f00d87..1cc011e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/AadSecretTmp.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/AadSecretTmp.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplate.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplate.cs index 6b42859..f132de5 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplate.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplate.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections.Generic; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateArmTemplateParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateArmTemplateParameter.cs index 489ffed..279e246 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateArmTemplateParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateArmTemplateParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Entities { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateParameter.cs index 940c4ce..d214e61 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/ArmTemplateParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeter.cs index 8d1945f..c67b206 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeterDimension.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeterDimension.cs index 7b5bb8d..d72c023 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeterDimension.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/CustomMeterDimension.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpAddress.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpAddress.cs index 5801038..c0419bb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpAddress.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpAddress.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpBlock.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpBlock.cs index 7607ce6..c3e3fd0 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpBlock.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpBlock.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpConfig.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpConfig.cs index 5c2b4e6..c10f0f3 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpConfig.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/IpConfig.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/AMLWorkspace.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/AMLWorkspace.cs index 53779f5..000b1ed 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/AMLWorkspace.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/AMLWorkspace.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APISubscription.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APISubscription.cs index d64d5cc..4fd7adb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APISubscription.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APISubscription.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APIVersion.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APIVersion.cs index 59e07d7..945abdc 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APIVersion.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/APIVersion.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Deployment.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Deployment.cs index 39cea1e..753ae11 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Deployment.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Deployment.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Product.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Product.cs index 9015127..73fbc9e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Product.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Luna.AI/Product.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Offer.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Offer.cs index dbbf6a7..cb34e0d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Offer.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Offer.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/OfferParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/OfferParameter.cs index 8ddd284..427dd79 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/OfferParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/OfferParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Text.Json.Serialization; namespace Luna.Data.Entities diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Plan.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Plan.cs index 27913a2..7ad0a57 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Plan.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Plan.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/RestrictedUser.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/RestrictedUser.cs index ebe4596..188e7dd 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/RestrictedUser.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/RestrictedUser.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Subscription.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Subscription.cs index 55ac45c..59ed795 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Subscription.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Subscription.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionCustomMeterUsage.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionCustomMeterUsage.cs index f4a1e4f..a3f98d2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionCustomMeterUsage.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionCustomMeterUsage.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionParameter.cs index a9a0816..c7d1ce0 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/SubscriptionParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/TelemetryDataConnector.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/TelemetryDataConnector.cs index a7c1111..7df505f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/TelemetryDataConnector.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/TelemetryDataConnector.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Webhook.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Webhook.cs index 0f678c8..5cc7e33 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/Webhook.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/Webhook.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections.Generic; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookParameter.cs index 88c76f2..75638ec 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections.Generic; using System.Text.Json.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookWebhookParameter.cs b/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookWebhookParameter.cs index 196a1df..c49e872 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookWebhookParameter.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Entities/WebhookWebhookParameter.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Entities { /// diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/AllowedCustomerOperation.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/AllowedCustomerOperation.cs index c749540..c04c5db 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/AllowedCustomerOperation.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/AllowedCustomerOperation.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum AllowedCustomerOperation diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ArmProvisioningState.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ArmProvisioningState.cs index 14e99b0..93193b8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ArmProvisioningState.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ArmProvisioningState.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Data.Common; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/FulfillmentState.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/FulfillmentState.cs index 52fde7d..c688d29 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/FulfillmentState.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/FulfillmentState.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum FulfillmentState diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/HostType.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/HostType.cs index 4fe5766..25f9740 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/HostType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/HostType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum HostType diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/ProductType.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/ProductType.cs index 678a372..d5c3036 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/ProductType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/Luna.AI/Product/ProductType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum ProductType diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/OfferStatus.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/OfferStatus.cs index 7f26dc2..b15f427 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/OfferStatus.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/OfferStatus.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum OfferStatus diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningState.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningState.cs index e1cba84..c187936 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningState.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningState.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum ProvisioningState diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningType.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningType.cs index f96ecd6..d2af146 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/ProvisioningType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum ProvisioningType diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSandboxType.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSandboxType.cs index 8031390..b61a1be 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSandboxType.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSandboxType.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum SubscriptionSandboxType diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSessionMode.cs b/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSessionMode.cs index 1b9490d..6e9c092 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSessionMode.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Enums/SubscriptionSessionMode.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Data.Enums { public enum SubscriptionSessionMode diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Repository/ISqlDbContext.cs b/end-to-end-solutions/Luna/src/Luna.Data/Repository/ISqlDbContext.cs index e854195..2497297 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Repository/ISqlDbContext.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Repository/ISqlDbContext.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; using Microsoft.EntityFrameworkCore; diff --git a/end-to-end-solutions/Luna/src/Luna.Data/Repository/SqlDbContext.cs b/end-to-end-solutions/Luna/src/Luna.Data/Repository/SqlDbContext.cs index 2308bdc..ffd2813 100644 --- a/end-to-end-solutions/Luna/src/Luna.Data/Repository/SqlDbContext.cs +++ b/end-to-end-solutions/Luna/src/Luna.Data/Repository/SqlDbContext.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading.Tasks; using Luna.Data.Entities; using Microsoft.EntityFrameworkCore; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/CustomMeterEventService.cs b/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/CustomMeterEventService.cs index 85253c5..93a9229 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/CustomMeterEventService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/CustomMeterEventService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients; using Luna.Clients.Azure.Auth; using Luna.Clients.Azure.Storage; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/ICustomMeterEventService.cs b/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/ICustomMeterEventService.cs index 5a94606..e09a868 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/ICustomMeterEventService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/CustomMeterEvent/ICustomMeterEventService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Models.CustomMetering; using System; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/AadSecretTmpService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/AadSecretTmpService.cs index be1903c..aafa3cf 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/AadSecretTmpService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/AadSecretTmpService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateArmTemplateParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateArmTemplateParameterService.cs index 9ef33f9..e013d13 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateArmTemplateParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateArmTemplateParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Exceptions; using Luna.Data.Entities; using Luna.Data.Repository; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateParameterService.cs index 38a8e5b..232a67a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateService.cs index afb51fb..040b842 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ArmTemplateService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterDimensionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterDimensionService.cs index cdda8c3..b71da91 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterDimensionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterDimensionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterService.cs index d89d8c5..f3d44d2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/CustomMeterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IAadSecretTmpService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IAadSecretTmpService.cs index 1cf7fc0..d2d10f5 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IAadSecretTmpService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IAadSecretTmpService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateArmTemplateParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateArmTemplateParameterService.cs index b9b8c83..b1c8a4e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateArmTemplateParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateArmTemplateParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateParameterService.cs index 1f97390..540e097 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateService.cs index 6400ba6..d904a52 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IArmTemplateService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterDimensionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterDimensionService.cs index 883683e..40e24cb 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterDimensionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterDimensionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterService.cs index 13da3cd..a987f6c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ICustomMeterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpAddressService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpAddressService.cs index 9c975ae..de0b166 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpAddressService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpAddressService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpConfigService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpConfigService.cs index 464cd14..3759c7c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpConfigService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IIpConfigService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferParameterService.cs index fb6f9e5..3b35175 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferService.cs index 74f6e52..9427c47 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IOfferService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IPlanService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IPlanService.cs index 2668603..45ed78f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IPlanService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IPlanService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IRestrictedUserService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IRestrictedUserService.cs index 6d01078..492398c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IRestrictedUserService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IRestrictedUserService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionCustomMeterUsageService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionCustomMeterUsageService.cs index b1643d1..ad88de6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionCustomMeterUsageService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionCustomMeterUsageService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionParameterService.cs index 575544b..02fc249 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionService.cs index 31e1463..8b48e64 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ISubscriptionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/ITelemetryDataConnectorService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/ITelemetryDataConnectorService.cs index d1467d4..a59e1d4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/ITelemetryDataConnectorService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/ITelemetryDataConnectorService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookParameterService.cs index 4d97922..440f206 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookService.cs index c4cf2c0..48da53e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookWebhookParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookWebhookParameterService.cs index 9e104f9..67580c1 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookWebhookParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IWebhookWebhookParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IpAddressService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IpAddressService.cs index 2085f17..86579c6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IpAddressService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IpAddressService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/IpConfigService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/IpConfigService.cs index 4a70832..508e956 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/IpConfigService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/IpConfigService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/AMLWorkspaceService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/AMLWorkspaceService.cs index c3af9ef..893c323 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/AMLWorkspaceService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/AMLWorkspaceService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure.Auth; using Luna.Clients.Controller; using Luna.Clients.Exceptions; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APISubscriptionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APISubscriptionService.cs index 775bce4..ae3b0af 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APISubscriptionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APISubscriptionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure.APIM; using Luna.Clients.Exceptions; using Luna.Clients.Logging; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APIVersionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APIVersionService.cs index b55e66b..8fa8709 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APIVersionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/APIVersionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure.APIM; using Luna.Clients.Exceptions; using Luna.Clients.Logging; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/DeploymentService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/DeploymentService.cs index 2752e57..059fb44 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/DeploymentService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/DeploymentService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure; using Luna.Clients.Azure.APIM; using Luna.Clients.Exceptions; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAMLWorkspaceService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAMLWorkspaceService.cs index d61bf44..ebc1af7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAMLWorkspaceService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAMLWorkspaceService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPISubscriptionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPISubscriptionService.cs index db90009..549a08a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPISubscriptionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPISubscriptionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Data.Entities; using System; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPIVersionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPIVersionService.cs index 3882dc4..4ee8781 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPIVersionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IAPIVersionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IDeploymentService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IDeploymentService.cs index f69b1d1..1b54392 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IDeploymentService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IDeploymentService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IProductService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IProductService.cs index 1e4466e..2417de2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IProductService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/IProductService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Threading.Tasks; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/ProductService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/ProductService.cs index f1b3ef7..9be35ab 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/ProductService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/Luna.AI/ProductService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Azure.APIM; using Luna.Clients.Exceptions; using Luna.Clients.Logging; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferParameterService.cs index c46f86d..71aaf60 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferService.cs index 300e436..9f2a0c7 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/OfferService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/PlanService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/PlanService.cs index 2872595..c49630f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/PlanService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/PlanService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/RestrictedUserService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/RestrictedUserService.cs index 994814d..67ed537 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/RestrictedUserService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/RestrictedUserService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionCustomMeterUsageService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionCustomMeterUsageService.cs index ce0d686..9c2ae4c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionCustomMeterUsageService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionCustomMeterUsageService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionParameterService.cs index b5621da..79e37d2 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionService.cs index 378f3a5..5f1721c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/SubscriptionService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/TelemetryDataConnectorService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/TelemetryDataConnectorService.cs index 8d0fdce..cf63852 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/TelemetryDataConnectorService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/TelemetryDataConnectorService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookParameterService.cs index fbbe15a..3f2939e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookService.cs index 49f5913..5575811 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookWebhookParameterService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookWebhookParameterService.cs index e809cf7..20dc662 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookWebhookParameterService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Data/WebhookWebhookParameterService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients.Exceptions; using Luna.Clients.Logging; using Luna.Data.Entities; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/IMarketplaceNotificationHandler.cs b/end-to-end-solutions/Luna/src/Luna.Services/IMarketplaceNotificationHandler.cs index d26b575..7fa86aa 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/IMarketplaceNotificationHandler.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/IMarketplaceNotificationHandler.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagemerError.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagemerError.cs index 6461b11..7774f9c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagemerError.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagemerError.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.Marketplace { public class FulfillmentManagementError diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManager.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManager.cs index b68c635..9faee1f 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManager.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManager.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerException.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerException.cs index 82badc5..0368cf4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerException.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerException.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Runtime.Serialization; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOperationResult.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOperationResult.cs index 82e0b78..cc7e759 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOperationResult.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOperationResult.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Collections.Generic; using System.Linq; using Luna.Clients.Models.Fulfillment; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOptions.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOptions.cs index c93f5ef..8e0da13 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOptions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/FulfillmentManagerOptions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Luna.Clients; using Luna.Clients.Azure.Auth; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/IFulfillmentManager.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/IFulfillmentManager.cs index b07f030..c1ab109 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/IFulfillmentManager.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/IFulfillmentManager.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/OperationDetails.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/OperationDetails.cs index 1169acd..bac1c2a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/OperationDetails.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/OperationDetails.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Services.Marketplace diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/ProvisioningHelper.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/ProvisioningHelper.cs index e000386..e5d671d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/ProvisioningHelper.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/ProvisioningHelper.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.ComponentModel; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/SubscriptionAction.cs b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/SubscriptionAction.cs index 3127980..053a27c 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/SubscriptionAction.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Marketplace/SubscriptionAction.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.Marketplace { public enum FulfillmentAction diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/IProvisioningService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/IProvisioningService.cs index 514d909..8f3f66e 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/IProvisioningService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/IProvisioningService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/InputStatesAttribute.cs b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/InputStatesAttribute.cs index a499d36..288d32a 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/InputStatesAttribute.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/InputStatesAttribute.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Luna.Data.Enums; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/OutputStatesAttribute.cs b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/OutputStatesAttribute.cs index d32eede..552b3f4 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/OutputStatesAttribute.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/OutputStatesAttribute.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Luna.Data.Enums; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ProvisioningService.cs b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ProvisioningService.cs index 9c3b1ea..0ec7383 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ProvisioningService.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ProvisioningService.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Net; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ValidStatesAttribute.cs b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ValidStatesAttribute.cs index 55d041c..e55efce 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ValidStatesAttribute.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Provisoning/ValidStatesAttribute.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using Luna.Data.Enums; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ClaimsIdentityExtensions.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ClaimsIdentityExtensions.cs index a17cd1f..4eb4770 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ClaimsIdentityExtensions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ClaimsIdentityExtensions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Security.Claims; using System.Security.Principal; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ContosoWebhookHandlerOptions.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ContosoWebhookHandlerOptions.cs index 288d20c..5e2232d 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ContosoWebhookHandlerOptions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ContosoWebhookHandlerOptions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.Utilities { public class ContosoWebhookHandlerOptions diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/Context.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/Context.cs index 35f7d3f..3895a97 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/Context.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/Context.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Linq; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/ExpressionEvaluationUtils.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/ExpressionEvaluationUtils.cs index 2f8eb44..e9446c8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/ExpressionEvaluationUtils.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/ExpressionEvaluation/ExpressionEvaluationUtils.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections; using System.Collections.Generic; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MailOptions.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MailOptions.cs index 97b20e8..a38c6db 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MailOptions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MailOptions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.Utilities { public class MailOptions diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MarketplaceSubscription.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MarketplaceSubscription.cs index a2efb4e..7874eea 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MarketplaceSubscription.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/MarketplaceSubscription.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.ComponentModel.DataAnnotations; using Luna.Clients.Models.Fulfillment; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/NotificationModel.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/NotificationModel.cs index 86658f3..7cce3c1 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/NotificationModel.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/NotificationModel.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using Luna.Services.WebHook; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/Options.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/Options.cs index 703c66c..599a781 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/Options.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/Options.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.Utilities { public class DashboardOptions diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/StringExtensions.cs b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/StringExtensions.cs index 17e6f56..bcd85ee 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Utilities/StringExtensions.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Utilities/StringExtensions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Net.Mail; namespace Luna.Services.Utilities diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/IWebhookProcessor.cs b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/IWebhookProcessor.cs index de8cdfa..c8e2da6 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/IWebhookProcessor.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/IWebhookProcessor.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System.Threading; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookAction.cs b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookAction.cs index e0b6edc..d16ab21 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookAction.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookAction.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. namespace Luna.Services.WebHook { public enum WebhookAction diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookPayload.cs b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookPayload.cs index 0ab6845..d40b7a8 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookPayload.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookPayload.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; namespace Luna.Services.WebHook diff --git a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookProcessor.cs b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookProcessor.cs index e343daf..703ccf3 100644 --- a/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookProcessor.cs +++ b/end-to-end-solutions/Luna/src/Luna.Services/Webhook/WebhookProcessor.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Threading; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/adalConfig.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/adalConfig.ts index 4e52d20..89b5ac3 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/adalConfig.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/adalConfig.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {AdalConfig, adalGetToken, AuthenticationContext} from 'react-adal'; // Endpoint URL export const endpoint = window.Configs.AAD_ENDPOINT as string; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IBaseModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IBaseModel.ts index 21b4a4c..725b3f0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IBaseModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IBaseModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IBaseModel { isNew?: boolean; isDeleted?: boolean; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IIpConfigModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IIpConfigModel.ts index 078cc5b..5568fca 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IIpConfigModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IIpConfigModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IIpConfigModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferModel.ts index c61a43e..2b3a629 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IOfferModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferParameterModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferParameterModel.ts index 1887137..0f1fd20 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferParameterModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferParameterModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IOfferParameterModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferWarningsModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferWarningsModel.ts index 24598bb..80aae0f 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferWarningsModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/IOfferWarningsModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IOfferWarningsModel { warnings: string[]; } \ No newline at end of file diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/Result.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/Result.ts index e0bb070..c25d55d 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/Result.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/Result.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IError { [key: string] : string[] diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/index.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/index.ts index 4ca5e75..dc15e39 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/index.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/models/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export * from './IARMTemplateParameterModel'; export * from './IARMTemplateModel'; export * from './IIpConfigModel'; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/react-app-env.d.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/react-app-env.d.ts index 6431bc5..e439d46 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/react-app-env.d.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/react-app-env.d.ts @@ -1 +1,3 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. /// diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/EndUser/formutlis/landingUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/EndUser/formutlis/landingUtils.ts index 0164350..3bd5a12 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/EndUser/formutlis/landingUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/EndUser/formutlis/landingUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ILandingModel} from "../../../models/IEnduserLandingModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts index 61a17e6..6663bbc 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import {ObjectSchema} from "yup"; import { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/serviceWorker.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/serviceWorker.ts index 15d90cb..6193e8f 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/serviceWorker.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/serviceWorker.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. // This optional code is used to register a service worker. // register() is not called by default. diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplateParameterService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplateParameterService.ts index d5c1844..9fb9111 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplateParameterService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplateParameterService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IARMTemplateParameterModel, Result} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplatesService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplatesService.ts index d8f85b0..25a1015 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplatesService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ArmTemplatesService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IARMTemplateModel, Result} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/EndUserLandingService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/EndUserLandingService.ts index f025315..86dc6cb 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/EndUserLandingService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/EndUserLandingService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ServiceBase} from "../services/ServiceBase"; import {IResolveTokenModel, Result} from "../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/IpConfigService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/IpConfigService.ts index e0937f6..bc95710 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/IpConfigService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/IpConfigService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IIpConfigModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferParameterService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferParameterService.ts index cee8b81..5502cd4 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferParameterService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferParameterService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {Result} from "../models"; import {IOfferParameterModel} from "../models/IOfferParameterModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferService.ts index 286a210..2f6939a 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/OfferService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IOfferModel, Result} from "../models"; import {IOfferWarningsModel} from "../models/IOfferWarningsModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/PlansService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/PlansService.ts index a7d1203..f08d15f 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/PlansService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/PlansService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IPlanModel, IPlanWarningsModel, Result, IARMTemplateModel,IRestrictedUsersModel } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ServiceBase.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ServiceBase.ts index 09cab25..2db1d50 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ServiceBase.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/ServiceBase.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {Result} from "../models"; import * as jsonToUrl from "json-to-url"; import Axios, {AxiosRequestConfig, AxiosResponse} from "axios"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/SubscriptionsService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/SubscriptionsService.ts index 4adb5d3..44b5f6f 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/SubscriptionsService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/SubscriptionsService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ServiceBase} from "../services/ServiceBase"; import { ICreateSubscriptionModel, diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksParametersService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksParametersService.ts index 0ef79f9..f726811 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksParametersService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksParametersService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IWebHookParameterModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksService.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksService.ts index 3ae4dc2..bda8d5a 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/services/WebHooksService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IWebHookModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/constants/routes.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/constants/routes.ts index daa2af8..2197084 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/constants/routes.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/constants/routes.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export enum WebRoute { Home = '/', Subscriptions = '/Subscriptions', diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/formUtils/utils.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/formUtils/utils.ts index 29ad49e..a2f2fa9 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/formUtils/utils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/shared/formUtils/utils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { useState } from 'react'; import {Result} from "../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/types/yup/index.d.ts b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/types/yup/index.d.ts index 1bc5187..ba826fd 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/types/yup/index.d.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/enduser_client/src/types/yup/index.d.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ArraySchema, ObjectSchema, default as yup} from 'yup' declare module 'yup' { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/adalConfig.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/adalConfig.ts index d12fb91..9189b72 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/adalConfig.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/adalConfig.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {AdalConfig, adalGetToken, AuthenticationContext} from 'react-adal'; //import { selectProperties } from 'office-ui-fabric-react'; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IBaseModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IBaseModel.ts index 21b4a4c..725b3f0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IBaseModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IBaseModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IBaseModel { isNew?: boolean; isDeleted?: boolean; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IIpConfigModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IIpConfigModel.ts index 22643e2..98bd9a3 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IIpConfigModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IIpConfigModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IIpConfigModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferModel.ts index 426c407..7848313 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IOfferModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferParameterModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferParameterModel.ts index afce6c5..8e998a3 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferParameterModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferParameterModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IBaseModel} from "./IBaseModel"; export interface IOfferParameterModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferReviewModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferReviewModel.ts index 7a21830..0f9d35d 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferReviewModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferReviewModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {IOfferModel} from "./IOfferModel"; import {IOfferParameterModel} from "./IOfferParameterModel"; import {IIpConfigModel} from "./IIpConfigModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferWarningsModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferWarningsModel.ts index 320bf2d..b817dfd 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferWarningsModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IOfferWarningsModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IOfferWarningsModel { subscriptionId: string, warningMessage: string, diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IProductModel.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IProductModel.ts index 5785f10..d17e4df 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IProductModel.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/IProductModel.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { IBaseModel } from "./IBaseModel"; export interface IProductModel extends IBaseModel { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/Result.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/Result.ts index d547715..050733f 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/Result.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/Result.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export interface IError { //[key: string] : ISubError diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/index.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/index.ts index 9bd2300..0dc7d2e 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/index.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/models/index.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export * from './IARMTemplateParameterModel'; export * from './IARMTemplateModel'; export * from './IIpConfigModel'; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/react-app-env.d.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/react-app-env.d.ts index 6431bc5..e439d46 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/react-app-env.d.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/react-app-env.d.ts @@ -1 +1,3 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. /// diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/offerFormUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/offerFormUtils.ts index b5b285a..601bd4d 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/offerFormUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/offerFormUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import { ObjectSchema } from "yup"; import { IOfferModel } from "../../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/registerYupMethods.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/registerYupMethods.ts index f8dfd04..1c7c7b0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/registerYupMethods.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Offers/formUtils/registerYupMethods.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; export const registerYupMethods = () => { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/AMLWorkSpaceUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/AMLWorkSpaceUtils.ts index 8f30a16..2733543 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/AMLWorkSpaceUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/AMLWorkSpaceUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import { ObjectSchema } from "yup"; import { IAMLWorkSpaceModel } from "../../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductDetailsUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductDetailsUtils.ts index aedc4fc..9b99bbb 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductDetailsUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductDetailsUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import { ObjectSchema } from "yup"; import { IDeploymentsModel, IDeploymentVersionModel } from "../../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductFormUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductFormUtils.ts index e092f4d..7a34bc3 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductFormUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/ProductFormUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import { ObjectSchema } from "yup"; import { IProductModel } from "../../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/registerYupMethods.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/registerYupMethods.ts index f8dfd04..1c7c7b0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/registerYupMethods.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Products/formUtils/registerYupMethods.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; export const registerYupMethods = () => { diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts index a8e0cb4..e05888e 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/routes/Subscriptions/formUtils/subscriptionFormUtils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import * as yup from "yup"; import { ObjectSchema } from "yup"; import { ISubscriptionsPostModel, ISubscriptionsModel, ISubscriptionsWarnings } from "../../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/serviceWorker.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/serviceWorker.ts index 75b823c..c9b09ba 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/serviceWorker.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/serviceWorker.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. // This optional code is used to register a service worker. // register() is not called by default. diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplateParameterService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplateParameterService.ts index d5c1844..9fb9111 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplateParameterService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplateParameterService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IARMTemplateParameterModel, Result} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplatesService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplatesService.ts index d8f85b0..25a1015 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplatesService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ArmTemplatesService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IARMTemplateModel, Result} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/IpConfigService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/IpConfigService.ts index 19ea334..f8c202a 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/IpConfigService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/IpConfigService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IIpConfigModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/MetersService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/MetersService.ts index 28e4d4b..07b998d 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/MetersService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/MetersService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {ICustomMeterModel, Result} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferParameterService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferParameterService.ts index 464e352..81e40ed 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferParameterService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferParameterService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { Result } from "../models"; import { IOfferParameterModel } from "../models/IOfferParameterModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferService.ts index eebb504..b5483f0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/OfferService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IOfferModel, Result} from "../models"; import {IOfferWarningsModel} from "../models/IOfferWarningsModel"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/PlansService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/PlansService.ts index 5d0484a..74769cb 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/PlansService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/PlansService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import {IPlanModel, Result, IRestrictedUsersModel, ICustomMeterDimensionsModel} from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ProductService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ProductService.ts index b1f9e1d..b831cab 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ProductService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ProductService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ServiceBase} from "./ServiceBase"; import { IAMLWorkSpaceModel, diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ServiceBase.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ServiceBase.ts index f62a76a..a982b55 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ServiceBase.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/ServiceBase.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {Result} from "../models"; import * as jsonToUrl from "json-to-url"; import Axios, {AxiosRequestConfig, AxiosResponse} from "axios"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/SubscriptionsService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/SubscriptionsService.ts index f9ba441..c0145d0 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/SubscriptionsService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/SubscriptionsService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ServiceBase} from "../services/ServiceBase"; import { ISubscriptionsModel, diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/TelemetryDataConnectorService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/TelemetryDataConnectorService.ts index e276062..43ef703 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/TelemetryDataConnectorService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/TelemetryDataConnectorService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { ITelemetryDataConnectorModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksParametersService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksParametersService.ts index 0ef79f9..f726811 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksParametersService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksParametersService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IWebHookParameterModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksService.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksService.ts index 3ae4dc2..bda8d5a 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksService.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/services/WebHooksService.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import { ServiceBase } from "../services/ServiceBase"; import { IWebHookModel, Result } from "../models"; import { v4 as uuid } from "uuid"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/constants/routes.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/constants/routes.ts index 04c20a4..496daba 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/constants/routes.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/constants/routes.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. export enum WebRoute { Home = '/', NoVersion = '/NoVersion', diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/formUtils/utils.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/formUtils/utils.ts index 2b5a26f..b2770b8 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/formUtils/utils.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/shared/formUtils/utils.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {useState} from 'react'; import {Result} from "../../models"; diff --git a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/types/yup/index.d.ts b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/types/yup/index.d.ts index 1bc5187..ba826fd 100644 --- a/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/types/yup/index.d.ts +++ b/end-to-end-solutions/Luna/src/Luna.UI/isv_client/src/types/yup/index.d.ts @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. import {ArraySchema, ObjectSchema, default as yup} from 'yup' declare module 'yup' { diff --git a/end-to-end-solutions/Luna/src/Luna.WebJobs/Program.cs b/end-to-end-solutions/Luna/src/Luna.WebJobs/Program.cs index 1b83eee..7f625cd 100644 --- a/end-to-end-solutions/Luna/src/Luna.WebJobs/Program.cs +++ b/end-to-end-solutions/Luna/src/Luna.WebJobs/Program.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.IO; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Luna.WebJobs/TaskRunner.cs b/end-to-end-solutions/Luna/src/Luna.WebJobs/TaskRunner.cs index 0e9217f..b9538ef 100644 --- a/end-to-end-solutions/Luna/src/Luna.WebJobs/TaskRunner.cs +++ b/end-to-end-solutions/Luna/src/Luna.WebJobs/TaskRunner.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/Extensions.cs b/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/Extensions.cs index 56a16e7..4264869 100644 --- a/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/Extensions.cs +++ b/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/Extensions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using System; using System.Collections.Generic; using System.Text; diff --git a/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/HttpContextExtensions.cs b/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/HttpContextExtensions.cs index 36ae973..be5ae16 100644 --- a/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/HttpContextExtensions.cs +++ b/end-to-end-solutions/Luna/src/Microsoft.Identity.Web/HttpContextExtensions.cs @@ -1,3 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. using Microsoft.AspNetCore.Http; using System.IdentityModel.Tokens.Jwt; diff --git a/end-to-end-solutions/kma/Deployment/Deploy.ps1 b/end-to-end-solutions/kma/Deployment/Deploy.ps1 index d8966b1..66c6bf1 100644 --- a/end-to-end-solutions/kma/Deployment/Deploy.ps1 +++ b/end-to-end-solutions/kma/Deployment/Deploy.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [Parameter(Mandatory=$true)] [string]$uniqueName = "default", diff --git a/end-to-end-solutions/kma/Deployment/Setup.ps1 b/end-to-end-solutions/kma/Deployment/Setup.ps1 index 84b85db..41677aa 100644 --- a/end-to-end-solutions/kma/Deployment/Setup.ps1 +++ b/end-to-end-solutions/kma/Deployment/Setup.ps1 @@ -1,2 +1,4 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. Install-Module -Name Az -AllowClobber Install-Module -Name Az.Search -AllowClobber \ No newline at end of file diff --git a/end-to-end-solutions/kma/test-scripts/AppSettings.ps1 b/end-to-end-solutions/kma/test-scripts/AppSettings.ps1 index 3f76ecc..1f83f60 100644 --- a/end-to-end-solutions/kma/test-scripts/AppSettings.ps1 +++ b/end-to-end-solutions/kma/test-scripts/AppSettings.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [string]$uniqueName = "default", [string]$resourceGroup = "default", diff --git a/end-to-end-solutions/kma/test-scripts/SearchSettings.ps1 b/end-to-end-solutions/kma/test-scripts/SearchSettings.ps1 index 62d7752..f421745 100644 --- a/end-to-end-solutions/kma/test-scripts/SearchSettings.ps1 +++ b/end-to-end-solutions/kma/test-scripts/SearchSettings.ps1 @@ -1,3 +1,5 @@ +## Copyright (c) Microsoft Corporation. +## Licensed under the MIT license. param ( [string]$resourceGroup = "default", [string]$subscriptionId = "default",