diff --git a/README.md b/README.md index 83669d6b..95f34e48 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Please check back later or see if another project, such as https://github.com/F5 would be a good place for your contribution. # Copyright -Copyright (c) 2017,2018, F5 Networks, Inc. +Copyright (c) 2017-2021 F5 Networks, Inc. # License diff --git a/f5_cccl/__init__.py b/f5_cccl/__init__.py index 6905f62d..0f28c67e 100644 --- a/f5_cccl/__init__.py +++ b/f5_cccl/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/api.py b/f5_cccl/api.py index 6b217769..23119871 100644 --- a/f5_cccl/api.py +++ b/f5_cccl/api.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/bigip.py b/f5_cccl/bigip.py index 96a61853..0afa2085 100644 --- a/f5_cccl/bigip.py +++ b/f5_cccl/bigip.py @@ -1,7 +1,7 @@ """This module provides a class for managing a BIG-IP.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/exceptions.py b/f5_cccl/exceptions.py index d3411946..cbf0c8b2 100644 --- a/f5_cccl/exceptions.py +++ b/f5_cccl/exceptions.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/__init__.py b/f5_cccl/resource/__init__.py index 1535a8b8..ea849cd0 100644 --- a/f5_cccl/resource/__init__.py +++ b/f5_cccl/resource/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/app_service.py b/f5_cccl/resource/ltm/app_service.py index e72e5d15..3e08a0af 100644 --- a/f5_cccl/resource/ltm/app_service.py +++ b/f5_cccl/resource/ltm/app_service.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP Application Service resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/internal_data_group.py b/f5_cccl/resource/ltm/internal_data_group.py index e09a5ee3..018650b4 100644 --- a/f5_cccl/resource/ltm/internal_data_group.py +++ b/f5_cccl/resource/ltm/internal_data_group.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP iRule resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/irule.py b/f5_cccl/resource/ltm/irule.py index 61c38ac2..efa10f8e 100644 --- a/f5_cccl/resource/ltm/irule.py +++ b/f5_cccl/resource/ltm/irule.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP iRule resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/__init__.py b/f5_cccl/resource/ltm/monitor/__init__.py index 37ce36b2..672987f9 100644 --- a/f5_cccl/resource/ltm/monitor/__init__.py +++ b/f5_cccl/resource/ltm/monitor/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/http_monitor.py b/f5_cccl/resource/ltm/monitor/http_monitor.py index ccd03b43..92009b51 100644 --- a/f5_cccl/resource/ltm/monitor/http_monitor.py +++ b/f5_cccl/resource/ltm/monitor/http_monitor.py @@ -4,7 +4,7 @@ BIG-IP for purposes of abstracting the F5-SDK library. """ # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/https_monitor.py b/f5_cccl/resource/ltm/monitor/https_monitor.py index 66477a8b..a4e08355 100644 --- a/f5_cccl/resource/ltm/monitor/https_monitor.py +++ b/f5_cccl/resource/ltm/monitor/https_monitor.py @@ -4,7 +4,7 @@ BIG-IP for purposes of abstracting the F5-SDK library. """ # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/icmp_monitor.py b/f5_cccl/resource/ltm/monitor/icmp_monitor.py index 2edda2af..44c23b03 100644 --- a/f5_cccl/resource/ltm/monitor/icmp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/icmp_monitor.py @@ -4,7 +4,7 @@ BIG-IP for purposes of abstracting the F5-SDK library. """ # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/monitor.py b/f5_cccl/resource/ltm/monitor/monitor.py index d6633932..f91b0538 100644 --- a/f5_cccl/resource/ltm/monitor/monitor.py +++ b/f5_cccl/resource/ltm/monitor/monitor.py @@ -4,7 +4,7 @@ BIG-IP for purposes of abstracting the F5-SDK library. """ # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/tcp_monitor.py b/f5_cccl/resource/ltm/monitor/tcp_monitor.py index 6ac80eb9..ab7ffeae 100644 --- a/f5_cccl/resource/ltm/monitor/tcp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/tcp_monitor.py @@ -5,7 +5,7 @@ """ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_http_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_http_monitor.py index e8b6f1bc..f8e07b98 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_http_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_http_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_https_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_https_monitor.py index c27a8fab..3345975a 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_https_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_https_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_icmp_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_icmp_monitor.py index df7cc9cf..4e874637 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_icmp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_icmp_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_monitor.py index ce375738..3151d72b 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_tcp_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_tcp_monitor.py index ad1271c5..ca3e63c7 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_tcp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_tcp_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/test/test_udp_monitor.py b/f5_cccl/resource/ltm/monitor/test/test_udp_monitor.py index 89c20f45..02c64231 100644 --- a/f5_cccl/resource/ltm/monitor/test/test_udp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/test/test_udp_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/monitor/udp_monitor.py b/f5_cccl/resource/ltm/monitor/udp_monitor.py index af2aa270..57637a50 100644 --- a/f5_cccl/resource/ltm/monitor/udp_monitor.py +++ b/f5_cccl/resource/ltm/monitor/udp_monitor.py @@ -5,7 +5,7 @@ """ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/node.py b/f5_cccl/resource/ltm/node.py index 1052c8d6..8fbbbcab 100644 --- a/f5_cccl/resource/ltm/node.py +++ b/f5_cccl/resource/ltm/node.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP Node resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/__init__.py b/f5_cccl/resource/ltm/policy/__init__.py index 1264b583..6674db30 100644 --- a/f5_cccl/resource/ltm/policy/__init__.py +++ b/f5_cccl/resource/ltm/policy/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/action.py b/f5_cccl/resource/ltm/policy/action.py index 7bbf44c2..19bb68bc 100644 --- a/f5_cccl/resource/ltm/policy/action.py +++ b/f5_cccl/resource/ltm/policy/action.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP L7 Rule Action resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/condition.py b/f5_cccl/resource/ltm/policy/condition.py index ea8a0b35..fd7a347c 100644 --- a/f5_cccl/resource/ltm/policy/condition.py +++ b/f5_cccl/resource/ltm/policy/condition.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP L7 Rule Action resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/policy.py b/f5_cccl/resource/ltm/policy/policy.py index 8cb2f274..5324832a 100644 --- a/f5_cccl/resource/ltm/policy/policy.py +++ b/f5_cccl/resource/ltm/policy/policy.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP L7 Policy resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/rule.py b/f5_cccl/resource/ltm/policy/rule.py index 8d09e758..9c432545 100644 --- a/f5_cccl/resource/ltm/policy/rule.py +++ b/f5_cccl/resource/ltm/policy/rule.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP L7 Rule resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/test/test_action.py b/f5_cccl/resource/ltm/policy/test/test_action.py index 8eff1b2d..31f4758c 100644 --- a/f5_cccl/resource/ltm/policy/test/test_action.py +++ b/f5_cccl/resource/ltm/policy/test/test_action.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/test/test_condition.py b/f5_cccl/resource/ltm/policy/test/test_condition.py index 4362bd91..0879ac6d 100644 --- a/f5_cccl/resource/ltm/policy/test/test_condition.py +++ b/f5_cccl/resource/ltm/policy/test/test_condition.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/test/test_policy.py b/f5_cccl/resource/ltm/policy/test/test_policy.py index 83b8ae26..f77d814c 100644 --- a/f5_cccl/resource/ltm/policy/test/test_policy.py +++ b/f5_cccl/resource/ltm/policy/test/test_policy.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/policy/test/test_rule.py b/f5_cccl/resource/ltm/policy/test/test_rule.py index 5531ead4..76532588 100644 --- a/f5_cccl/resource/ltm/policy/test/test_rule.py +++ b/f5_cccl/resource/ltm/policy/test/test_rule.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/pool.py b/f5_cccl/resource/ltm/pool.py index 3785cfa7..e6604452 100644 --- a/f5_cccl/resource/ltm/pool.py +++ b/f5_cccl/resource/ltm/pool.py @@ -1,7 +1,7 @@ """This module provides class for managing resource configuration.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/pool_member.py b/f5_cccl/resource/ltm/pool_member.py index 2a02851f..50d55d7a 100644 --- a/f5_cccl/resource/ltm/pool_member.py +++ b/f5_cccl/resource/ltm/pool_member.py @@ -1,7 +1,7 @@ """This module provides class for managing member configuration.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/profile/__init__.py b/f5_cccl/resource/ltm/profile/__init__.py index 8a52cf7f..ebd3079f 100644 --- a/f5_cccl/resource/ltm/profile/__init__.py +++ b/f5_cccl/resource/ltm/profile/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/profile/profile.py b/f5_cccl/resource/ltm/profile/profile.py index de6488a9..88169afd 100644 --- a/f5_cccl/resource/ltm/profile/profile.py +++ b/f5_cccl/resource/ltm/profile/profile.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP Profile resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/profile/test/test_profile.py b/f5_cccl/resource/ltm/profile/test/test_profile.py index e575ccb6..4cc4a56b 100644 --- a/f5_cccl/resource/ltm/profile/test/test_profile.py +++ b/f5_cccl/resource/ltm/profile/test/test_profile.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/conftest.py b/f5_cccl/resource/ltm/test/conftest.py index 615533c5..358457f2 100644 --- a/f5_cccl/resource/ltm/test/conftest.py +++ b/f5_cccl/resource/ltm/test/conftest.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_api_pool_member.py b/f5_cccl/resource/ltm/test/test_api_pool_member.py index 664191a8..50e4b150 100644 --- a/f5_cccl/resource/ltm/test/test_api_pool_member.py +++ b/f5_cccl/resource/ltm/test/test_api_pool_member.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_app_service.py b/f5_cccl/resource/ltm/test/test_app_service.py index cf287312..afd1ec84 100644 --- a/f5_cccl/resource/ltm/test/test_app_service.py +++ b/f5_cccl/resource/ltm/test/test_app_service.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_internal_data_group.py b/f5_cccl/resource/ltm/test/test_internal_data_group.py index adadabdc..bffc5785 100644 --- a/f5_cccl/resource/ltm/test/test_internal_data_group.py +++ b/f5_cccl/resource/ltm/test/test_internal_data_group.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_irule.py b/f5_cccl/resource/ltm/test/test_irule.py index dac479bc..f1c59e6f 100644 --- a/f5_cccl/resource/ltm/test/test_irule.py +++ b/f5_cccl/resource/ltm/test/test_irule.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_node.py b/f5_cccl/resource/ltm/test/test_node.py index 3c3bda20..e7a217ae 100644 --- a/f5_cccl/resource/ltm/test/test_node.py +++ b/f5_cccl/resource/ltm/test/test_node.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_pool.py b/f5_cccl/resource/ltm/test/test_pool.py index 371a519b..a977d5e8 100644 --- a/f5_cccl/resource/ltm/test/test_pool.py +++ b/f5_cccl/resource/ltm/test/test_pool.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_pool_member.py b/f5_cccl/resource/ltm/test/test_pool_member.py index ecdb1f6e..4b367958 100644 --- a/f5_cccl/resource/ltm/test/test_pool_member.py +++ b/f5_cccl/resource/ltm/test/test_pool_member.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_virtual.py b/f5_cccl/resource/ltm/test/test_virtual.py index d62824ca..9e43827d 100644 --- a/f5_cccl/resource/ltm/test/test_virtual.py +++ b/f5_cccl/resource/ltm/test/test_virtual.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/test/test_virtual_address.py b/f5_cccl/resource/ltm/test/test_virtual_address.py index c9ca92b7..a98611f0 100644 --- a/f5_cccl/resource/ltm/test/test_virtual_address.py +++ b/f5_cccl/resource/ltm/test/test_virtual_address.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/virtual.py b/f5_cccl/resource/ltm/virtual.py index c34a8e3d..709a3583 100644 --- a/f5_cccl/resource/ltm/virtual.py +++ b/f5_cccl/resource/ltm/virtual.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP Virtual Server resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/ltm/virtual_address.py b/f5_cccl/resource/ltm/virtual_address.py index 2ceb9045..e3fdc784 100644 --- a/f5_cccl/resource/ltm/virtual_address.py +++ b/f5_cccl/resource/ltm/virtual_address.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP Virtual Address resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/arp.py b/f5_cccl/resource/net/arp.py index 8f8b3322..aff49b62 100644 --- a/f5_cccl/resource/net/arp.py +++ b/f5_cccl/resource/net/arp.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP ARP resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/fdb/record.py b/f5_cccl/resource/net/fdb/record.py index c1778f97..6381d165 100644 --- a/f5_cccl/resource/net/fdb/record.py +++ b/f5_cccl/resource/net/fdb/record.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP FDB tunnel record resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/fdb/test/test_record.py b/f5_cccl/resource/net/fdb/test/test_record.py index 43f5fdb3..7e926bae 100644 --- a/f5_cccl/resource/net/fdb/test/test_record.py +++ b/f5_cccl/resource/net/fdb/test/test_record.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/fdb/test/test_tunnel.py b/f5_cccl/resource/net/fdb/test/test_tunnel.py index 816b6ac5..3461a285 100644 --- a/f5_cccl/resource/net/fdb/test/test_tunnel.py +++ b/f5_cccl/resource/net/fdb/test/test_tunnel.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/fdb/tunnel.py b/f5_cccl/resource/net/fdb/tunnel.py index dd383605..b416b542 100644 --- a/f5_cccl/resource/net/fdb/tunnel.py +++ b/f5_cccl/resource/net/fdb/tunnel.py @@ -1,7 +1,7 @@ """Provides a class for managing BIG-IP FDB tunnel resources.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/net/test/test_arp.py b/f5_cccl/resource/net/test/test_arp.py index 5bca0c02..4499cad8 100644 --- a/f5_cccl/resource/net/test/test_arp.py +++ b/f5_cccl/resource/net/test/test_arp.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/resource.py b/f5_cccl/resource/resource.py index 75c518f6..813d84fe 100644 --- a/f5_cccl/resource/resource.py +++ b/f5_cccl/resource/resource.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- """This module provides class for managing resource configuration.""" # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/test/test_merge_resource.py b/f5_cccl/resource/test/test_merge_resource.py index fd80a4ae..bbc82958 100644 --- a/f5_cccl/resource/test/test_merge_resource.py +++ b/f5_cccl/resource/test/test_merge_resource.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/resource/test/test_resource.py b/f5_cccl/resource/test/test_resource.py index 9a2603f1..48fc53fe 100644 --- a/f5_cccl/resource/test/test_resource.py +++ b/f5_cccl/resource/test/test_resource.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/schemas/cccl-ltm-api-schema.yml b/f5_cccl/schemas/cccl-ltm-api-schema.yml index 58b49414..e470f6b0 100644 --- a/f5_cccl/schemas/cccl-ltm-api-schema.yml +++ b/f5_cccl/schemas/cccl-ltm-api-schema.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/schemas/cccl-net-api-schema.yml b/f5_cccl/schemas/cccl-net-api-schema.yml index c9e76ae9..6e2ad41a 100644 --- a/f5_cccl/schemas/cccl-net-api-schema.yml +++ b/f5_cccl/schemas/cccl-net-api-schema.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/config_reader.py b/f5_cccl/service/config_reader.py index 12cd6362..4c1912c7 100644 --- a/f5_cccl/service/config_reader.py +++ b/f5_cccl/service/config_reader.py @@ -1,7 +1,7 @@ """Manages the creation and deployment of desired services configuration.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/manager.py b/f5_cccl/service/manager.py index b0796062..5e1f4b11 100644 --- a/f5_cccl/service/manager.py +++ b/f5_cccl/service/manager.py @@ -1,7 +1,7 @@ """Manages the creation and deployment of desired services configuration.""" # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/test/test_config_reader.py b/f5_cccl/service/test/test_config_reader.py index 4bbf9eee..1a7e0b59 100644 --- a/f5_cccl/service/test/test_config_reader.py +++ b/f5_cccl/service/test/test_config_reader.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/test/test_schema_validator.py b/f5_cccl/service/test/test_schema_validator.py index 3bd093c4..2ca94e3a 100644 --- a/f5_cccl/service/test/test_schema_validator.py +++ b/f5_cccl/service/test/test_schema_validator.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/test/test_service_manager.py b/f5_cccl/service/test/test_service_manager.py index d9856600..bb5669fe 100644 --- a/f5_cccl/service/test/test_service_manager.py +++ b/f5_cccl/service/test/test_service_manager.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/test/test_validation.py b/f5_cccl/service/test/test_validation.py index aa708d82..d48426d7 100644 --- a/f5_cccl/service/test/test_validation.py +++ b/f5_cccl/service/test/test_validation.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/service/validation.py b/f5_cccl/service/validation.py index 38c272e1..f6f254ea 100644 --- a/f5_cccl/service/validation.py +++ b/f5_cccl/service/validation.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/test/conftest.py b/f5_cccl/test/conftest.py index 3bd200fc..84cb610f 100644 --- a/f5_cccl/test/conftest.py +++ b/f5_cccl/test/conftest.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/test/test_api.py b/f5_cccl/test/test_api.py index f8c0db93..161cacf9 100644 --- a/f5_cccl/test/test_api.py +++ b/f5_cccl/test/test_api.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/test/test_bigip.py b/f5_cccl/test/test_bigip.py index 98638d83..969bfa8d 100644 --- a/f5_cccl/test/test_bigip.py +++ b/f5_cccl/test/test_bigip.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/test/test_exceptions.py b/f5_cccl/test/test_exceptions.py index 7fc16c2f..731c9082 100644 --- a/f5_cccl/test/test_exceptions.py +++ b/f5_cccl/test/test_exceptions.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/utils/mgmt.py b/f5_cccl/utils/mgmt.py index c5594ceb..12f967fa 100644 --- a/f5_cccl/utils/mgmt.py +++ b/f5_cccl/utils/mgmt.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/utils/profile.py b/f5_cccl/utils/profile.py index 22b6e6c9..151ac22d 100644 --- a/f5_cccl/utils/profile.py +++ b/f5_cccl/utils/profile.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/utils/route_domain.py b/f5_cccl/utils/route_domain.py index b0f7f4b4..8759a920 100644 --- a/f5_cccl/utils/route_domain.py +++ b/f5_cccl/utils/route_domain.py @@ -1,6 +1,6 @@ # coding=utf-8 # -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/f5_cccl/utils/test/test_route_domain.py b/f5_cccl/utils/test/test_route_domain.py index 4258fb91..679429fa 100644 --- a/f5_cccl/utils/test/test_route_domain.py +++ b/f5_cccl/utils/test/test_route_domain.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index 3fb61171..b32e3f88 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2014-2018, F5 Networks, Inc. +# Copyright (c) 2014-2021, F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/conftest.py b/test/f5_cccl/conftest.py index 1384eef1..14569ce0 100644 --- a/test/f5_cccl/conftest.py +++ b/test/f5_cccl/conftest.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/perf/test_perf.py b/test/f5_cccl/perf/test_perf.py index f2c86d68..d9ce5974 100644 --- a/test/f5_cccl/perf/test_perf.py +++ b/test/f5_cccl/perf/test_perf.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/resource/ltm/monitor/monitor_schemas.py b/test/f5_cccl/resource/ltm/monitor/monitor_schemas.py index fcda96db..38bcd5c6 100644 --- a/test/f5_cccl/resource/ltm/monitor/monitor_schemas.py +++ b/test/f5_cccl/resource/ltm/monitor/monitor_schemas.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/resource/ltm/monitor/test_fn_monitor.py b/test/f5_cccl/resource/ltm/monitor/test_fn_monitor.py index e2224135..83f1ca5a 100644 --- a/test/f5_cccl/resource/ltm/monitor/test_fn_monitor.py +++ b/test/f5_cccl/resource/ltm/monitor/test_fn_monitor.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/resource/ltm/policy/test_policy.py b/test/f5_cccl/resource/ltm/policy/test_policy.py index 1493e898..e292a4e0 100644 --- a/test/f5_cccl/resource/ltm/policy/test_policy.py +++ b/test/f5_cccl/resource/ltm/policy/test_policy.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/f5_cccl/service/test_manager.py b/test/f5_cccl/service/test_manager.py index 9b015f5c..3739c6d4 100644 --- a/test/f5_cccl/service/test_manager.py +++ b/test/f5_cccl/service/test_manager.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2017,2018, F5 Networks, Inc. +# Copyright (c) 2017-2021 F5 Networks, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.