From 26c9a72466a1925d49aff68aebf56ef5aa5b6b2f Mon Sep 17 00:00:00 2001 From: Siddharth Kulkarni Date: Mon, 26 Jul 2021 11:47:46 +0530 Subject: [PATCH] DEV-79457 Formatting changes for licence text. added licence text to files lacking it. --- README.md | 5 ++++- docs/source/conf.py | 5 ++++- example/cpu_metrics.py | 5 ++++- example/disk_metrics.py | 5 ++++- example/log_non_batch.py | 5 ++++- example/simple_example.py | 5 ++++- example/test_property.py | 5 ++++- logicmonitor_data_sdk/__init__.py | 5 ++++- logicmonitor_data_sdk/api/__init__.py | 5 ++++- logicmonitor_data_sdk/api/logs.py | 5 ++++- logicmonitor_data_sdk/api/metrics.py | 5 ++++- logicmonitor_data_sdk/api/response_interface.py | 5 ++++- logicmonitor_data_sdk/api_client.py | 5 ++++- logicmonitor_data_sdk/configuration.py | 5 ++++- logicmonitor_data_sdk/internal/__init__.py | 5 ++++- logicmonitor_data_sdk/internal/internal_cache.py | 5 ++++- logicmonitor_data_sdk/models/__init__.py | 5 ++++- logicmonitor_data_sdk/models/datapoint.py | 5 ++++- logicmonitor_data_sdk/models/datasource.py | 5 ++++- logicmonitor_data_sdk/models/datasource_instance.py | 5 ++++- logicmonitor_data_sdk/models/list_rest_data_point_v1.py | 5 ++++- .../models/list_rest_data_source_instance_v1.py | 5 ++++- logicmonitor_data_sdk/models/map_string_string.py | 5 ++++- logicmonitor_data_sdk/models/push_metric_api_response.py | 5 ++++- logicmonitor_data_sdk/models/resource.py | 5 ++++- logicmonitor_data_sdk/models/rest_data_point_v1.py | 5 ++++- .../models/rest_data_source_instance_v1.py | 5 ++++- .../models/rest_instance_properties_v1.py | 5 ++++- logicmonitor_data_sdk/models/rest_metrics_v1.py | 5 ++++- .../models/rest_resource_properties_v1.py | 5 ++++- logicmonitor_data_sdk/rest.py | 5 ++++- logicmonitor_data_sdk/utils/__init__.py | 9 +++++++++ logicmonitor_data_sdk/utils/object_name_validator.py | 9 +++++++++ logicmonitor_data_sdk/version.py | 5 ++++- setup.py | 5 ++++- test/__init__.py | 5 ++++- test/test_example.py | 5 ++++- test/test_one_requests.py | 5 ++++- test/test_requests.py | 5 ++++- test/utils/__init__.py | 5 ++++- test/utils/test_object_name_validator.py | 5 ++++- 41 files changed, 174 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 9aafe08..5edcc39 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,10 @@ If you have questions in general, reach out to our [support](mailto:support@logi ------------ Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. diff --git a/docs/source/conf.py b/docs/source/conf.py index 2f60d50..87d2d3b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/example/cpu_metrics.py b/example/cpu_metrics.py index e6c17f2..c4a5021 100644 --- a/example/cpu_metrics.py +++ b/example/cpu_metrics.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/example/disk_metrics.py b/example/disk_metrics.py index 40e705f..9323781 100644 --- a/example/disk_metrics.py +++ b/example/disk_metrics.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/example/log_non_batch.py b/example/log_non_batch.py index 77f44d5..b123c9f 100644 --- a/example/log_non_batch.py +++ b/example/log_non_batch.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/example/simple_example.py b/example/simple_example.py index e416421..4ab4e9d 100644 --- a/example/simple_example.py +++ b/example/simple_example.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/example/test_property.py b/example/test_property.py index 306f9ee..441bbc9 100644 --- a/example/test_property.py +++ b/example/test_property.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/__init__.py b/logicmonitor_data_sdk/__init__.py index ed89017..c10c928 100644 --- a/logicmonitor_data_sdk/__init__.py +++ b/logicmonitor_data_sdk/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/api/__init__.py b/logicmonitor_data_sdk/api/__init__.py index 3b0b350..a583c74 100644 --- a/logicmonitor_data_sdk/api/__init__.py +++ b/logicmonitor_data_sdk/api/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/api/logs.py b/logicmonitor_data_sdk/api/logs.py index 25da3f1..165ed3d 100644 --- a/logicmonitor_data_sdk/api/logs.py +++ b/logicmonitor_data_sdk/api/logs.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/api/metrics.py b/logicmonitor_data_sdk/api/metrics.py index cb40440..e537e3d 100644 --- a/logicmonitor_data_sdk/api/metrics.py +++ b/logicmonitor_data_sdk/api/metrics.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/api/response_interface.py b/logicmonitor_data_sdk/api/response_interface.py index 92defde..5b964ae 100644 --- a/logicmonitor_data_sdk/api/response_interface.py +++ b/logicmonitor_data_sdk/api/response_interface.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/api_client.py b/logicmonitor_data_sdk/api_client.py index c611f54..b9eb494 100644 --- a/logicmonitor_data_sdk/api_client.py +++ b/logicmonitor_data_sdk/api_client.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/configuration.py b/logicmonitor_data_sdk/configuration.py index 3eac55b..34b209c 100644 --- a/logicmonitor_data_sdk/configuration.py +++ b/logicmonitor_data_sdk/configuration.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/internal/__init__.py b/logicmonitor_data_sdk/internal/__init__.py index ae169be..e5951a9 100644 --- a/logicmonitor_data_sdk/internal/__init__.py +++ b/logicmonitor_data_sdk/internal/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/internal/internal_cache.py b/logicmonitor_data_sdk/internal/internal_cache.py index b6bd1ed..52e5b21 100644 --- a/logicmonitor_data_sdk/internal/internal_cache.py +++ b/logicmonitor_data_sdk/internal/internal_cache.py @@ -2,7 +2,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/__init__.py b/logicmonitor_data_sdk/models/__init__.py index 52354c8..59afc27 100644 --- a/logicmonitor_data_sdk/models/__init__.py +++ b/logicmonitor_data_sdk/models/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/datapoint.py b/logicmonitor_data_sdk/models/datapoint.py index dce679c..cecc364 100644 --- a/logicmonitor_data_sdk/models/datapoint.py +++ b/logicmonitor_data_sdk/models/datapoint.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/datasource.py b/logicmonitor_data_sdk/models/datasource.py index ca368b6..02c287c 100644 --- a/logicmonitor_data_sdk/models/datasource.py +++ b/logicmonitor_data_sdk/models/datasource.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/datasource_instance.py b/logicmonitor_data_sdk/models/datasource_instance.py index 03313b4..2c21b52 100644 --- a/logicmonitor_data_sdk/models/datasource_instance.py +++ b/logicmonitor_data_sdk/models/datasource_instance.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/list_rest_data_point_v1.py b/logicmonitor_data_sdk/models/list_rest_data_point_v1.py index 4957a0d..296a935 100644 --- a/logicmonitor_data_sdk/models/list_rest_data_point_v1.py +++ b/logicmonitor_data_sdk/models/list_rest_data_point_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/list_rest_data_source_instance_v1.py b/logicmonitor_data_sdk/models/list_rest_data_source_instance_v1.py index b153b0f..cc858ce 100644 --- a/logicmonitor_data_sdk/models/list_rest_data_source_instance_v1.py +++ b/logicmonitor_data_sdk/models/list_rest_data_source_instance_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/map_string_string.py b/logicmonitor_data_sdk/models/map_string_string.py index 2c95298..50ec276 100644 --- a/logicmonitor_data_sdk/models/map_string_string.py +++ b/logicmonitor_data_sdk/models/map_string_string.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/push_metric_api_response.py b/logicmonitor_data_sdk/models/push_metric_api_response.py index 5dc51c6..e52e77f 100644 --- a/logicmonitor_data_sdk/models/push_metric_api_response.py +++ b/logicmonitor_data_sdk/models/push_metric_api_response.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/resource.py b/logicmonitor_data_sdk/models/resource.py index 45a979b..72521c4 100644 --- a/logicmonitor_data_sdk/models/resource.py +++ b/logicmonitor_data_sdk/models/resource.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/rest_data_point_v1.py b/logicmonitor_data_sdk/models/rest_data_point_v1.py index 6c65565..8c859b2 100644 --- a/logicmonitor_data_sdk/models/rest_data_point_v1.py +++ b/logicmonitor_data_sdk/models/rest_data_point_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/rest_data_source_instance_v1.py b/logicmonitor_data_sdk/models/rest_data_source_instance_v1.py index 8305bd1..d63844f 100644 --- a/logicmonitor_data_sdk/models/rest_data_source_instance_v1.py +++ b/logicmonitor_data_sdk/models/rest_data_source_instance_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/rest_instance_properties_v1.py b/logicmonitor_data_sdk/models/rest_instance_properties_v1.py index 22f48a1..8e8b585 100644 --- a/logicmonitor_data_sdk/models/rest_instance_properties_v1.py +++ b/logicmonitor_data_sdk/models/rest_instance_properties_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/rest_metrics_v1.py b/logicmonitor_data_sdk/models/rest_metrics_v1.py index c11389b..3bce2d6 100644 --- a/logicmonitor_data_sdk/models/rest_metrics_v1.py +++ b/logicmonitor_data_sdk/models/rest_metrics_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/models/rest_resource_properties_v1.py b/logicmonitor_data_sdk/models/rest_resource_properties_v1.py index 80fb1dc..578876f 100644 --- a/logicmonitor_data_sdk/models/rest_resource_properties_v1.py +++ b/logicmonitor_data_sdk/models/rest_resource_properties_v1.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/rest.py b/logicmonitor_data_sdk/rest.py index 70551ca..9fe99d3 100644 --- a/logicmonitor_data_sdk/rest.py +++ b/logicmonitor_data_sdk/rest.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/logicmonitor_data_sdk/utils/__init__.py b/logicmonitor_data_sdk/utils/__init__.py index 8dcfb52..05349b8 100644 --- a/logicmonitor_data_sdk/utils/__init__.py +++ b/logicmonitor_data_sdk/utils/__init__.py @@ -1,3 +1,12 @@ +""" +======= +Copyright, 2021, LogicMonitor, Inc. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. +======= +""" from __future__ import absolute_import # import models into model package diff --git a/logicmonitor_data_sdk/utils/object_name_validator.py b/logicmonitor_data_sdk/utils/object_name_validator.py index 6abccf2..22e94ed 100644 --- a/logicmonitor_data_sdk/utils/object_name_validator.py +++ b/logicmonitor_data_sdk/utils/object_name_validator.py @@ -1,3 +1,12 @@ +""" +======= +Copyright, 2021, LogicMonitor, Inc. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. +======= +""" import re """ diff --git a/logicmonitor_data_sdk/version.py b/logicmonitor_data_sdk/version.py index 8f1d515..663500c 100644 --- a/logicmonitor_data_sdk/version.py +++ b/logicmonitor_data_sdk/version.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/setup.py b/setup.py index 2c19453..7e6df03 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/__init__.py b/test/__init__.py index ae169be..e5951a9 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/test_example.py b/test/test_example.py index 6b2fd31..54bdfe7 100644 --- a/test/test_example.py +++ b/test/test_example.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/test_one_requests.py b/test/test_one_requests.py index ba44662..774f777 100644 --- a/test/test_one_requests.py +++ b/test/test_one_requests.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/test_requests.py b/test/test_requests.py index d72eb85..d14e78b 100644 --- a/test/test_requests.py +++ b/test/test_requests.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/utils/__init__.py b/test/utils/__init__.py index ae169be..e5951a9 100644 --- a/test/utils/__init__.py +++ b/test/utils/__init__.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """ diff --git a/test/utils/test_object_name_validator.py b/test/utils/test_object_name_validator.py index c4324c9..b6c48dd 100644 --- a/test/utils/test_object_name_validator.py +++ b/test/utils/test_object_name_validator.py @@ -1,7 +1,10 @@ """ ======= Copyright, 2021, LogicMonitor, Inc. -This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +This Source Code Form is subject to the terms of the +Mozilla Public License, v. 2.0. If a copy of the MPL +was not distributed with this file, You can obtain +one at https://mozilla.org/MPL/2.0/. ======= """