diff --git a/cnct/__init__.py b/cnct/__init__.py index 9f2d1fb..5945081 100644 --- a/cnct/__init__.py +++ b/cnct/__init__.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.exceptions import ClientError # noqa from connect.client.fluent import ConnectClient # noqa diff --git a/cnct/rql.py b/cnct/rql.py index cbb6022..7a3140f 100644 --- a/cnct/rql.py +++ b/cnct/rql.py @@ -1,6 +1,6 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.rql import R # noqa diff --git a/connect/client/__init__.py b/connect/client/__init__.py index f112e08..6261874 100644 --- a/connect/client/__init__.py +++ b/connect/client/__init__.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.exceptions import ClientError # noqa from connect.client.fluent import AsyncConnectClient, ConnectClient # noqa diff --git a/connect/client/constants.py b/connect/client/constants.py index db2717f..6e1fec8 100644 --- a/connect/client/constants.py +++ b/connect/client/constants.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # CONNECT_SPECS_URL = 'https://apispec.connect.cloudblue.com/connect-openapi30.yml' # noqa CONNECT_ENDPOINT_URL = 'https://api.connect.cloudblue.com/public/v1' # noqa diff --git a/connect/client/exceptions.py b/connect/client/exceptions.py index 7428f76..8d6c233 100644 --- a/connect/client/exceptions.py +++ b/connect/client/exceptions.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from http import HTTPStatus diff --git a/connect/client/fluent.py b/connect/client/fluent.py index 359c610..76c0e65 100644 --- a/connect/client/fluent.py +++ b/connect/client/fluent.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import contextvars import threading diff --git a/connect/client/help_formatter.py b/connect/client/help_formatter.py index 70a3aae..6a11ed6 100644 --- a/connect/client/help_formatter.py +++ b/connect/client/help_formatter.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import inflect from connect.utils.terminal.markdown import render diff --git a/connect/client/mixins.py b/connect/client/mixins.py index 7ca6182..c83f178 100644 --- a/connect/client/mixins.py +++ b/connect/client/mixins.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import time from typing import Any, Dict diff --git a/connect/client/models/__init__.py b/connect/client/models/__init__.py index 8f89369..6474290 100644 --- a/connect/client/models/__init__.py +++ b/connect/client/models/__init__.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.models.base import ( # noqa NS, diff --git a/connect/client/models/base.py b/connect/client/models/base.py index 00d6fcf..86282b1 100644 --- a/connect/client/models/base.py +++ b/connect/client/models/base.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.models.mixins import ( ActionMixin, diff --git a/connect/client/models/exceptions.py b/connect/client/models/exceptions.py index 4fa90dc..e0ae801 100644 --- a/connect/client/models/exceptions.py +++ b/connect/client/models/exceptions.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # class NotYetEvaluatedError(Exception): pass diff --git a/connect/client/models/iterators.py b/connect/client/models/iterators.py index 92ec234..20be4bb 100644 --- a/connect/client/models/iterators.py +++ b/connect/client/models/iterators.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.utils import get_values, parse_content_range diff --git a/connect/client/models/mixins.py b/connect/client/models/mixins.py index 4f45fc5..0fb7ebb 100644 --- a/connect/client/models/mixins.py +++ b/connect/client/models/mixins.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from typing import ( Any, diff --git a/connect/client/models/resourceset.py b/connect/client/models/resourceset.py index 51e3309..26a0858 100644 --- a/connect/client/models/resourceset.py +++ b/connect/client/models/resourceset.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import copy diff --git a/connect/client/openapi.py b/connect/client/openapi.py index 0c7b606..eee1271 100644 --- a/connect/client/openapi.py +++ b/connect/client/openapi.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from functools import partial from io import StringIO diff --git a/connect/client/rql/__init__.py b/connect/client/rql/__init__.py index a8bd0bf..6a3e584 100644 --- a/connect/client/rql/__init__.py +++ b/connect/client/rql/__init__.py @@ -1,6 +1,6 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.rql.base import R # noqa diff --git a/connect/client/rql/base.py b/connect/client/rql/base.py index 0c59c16..772b1da 100644 --- a/connect/client/rql/base.py +++ b/connect/client/rql/base.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from typing import List diff --git a/connect/client/rql/utils.py b/connect/client/rql/utils.py index 6fa4dd7..28031f4 100644 --- a/connect/client/rql/utils.py +++ b/connect/client/rql/utils.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from datetime import date, datetime from decimal import Decimal diff --git a/connect/client/testing/__init__.py b/connect/client/testing/__init__.py index 9ccb382..524a52d 100644 --- a/connect/client/testing/__init__.py +++ b/connect/client/testing/__init__.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.testing.fluent import ( # noqa AsyncConnectClientMocker, diff --git a/connect/client/testing/fluent.py b/connect/client/testing/fluent.py index 0b2411d..9b82b3b 100644 --- a/connect/client/testing/fluent.py +++ b/connect/client/testing/fluent.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import json import re diff --git a/connect/client/testing/models/__init__.py b/connect/client/testing/models/__init__.py index 22f08cc..01afbbd 100644 --- a/connect/client/testing/models/__init__.py +++ b/connect/client/testing/models/__init__.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.testing.models.base import ( # noqa ActionMock, diff --git a/connect/client/testing/models/base.py b/connect/client/testing/models/base.py index ae53e46..f584382 100644 --- a/connect/client/testing/models/base.py +++ b/connect/client/testing/models/base.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # from connect.client.models.base import ( _ActionBase, diff --git a/connect/client/testing/models/mixins.py b/connect/client/testing/models/mixins.py index adfa2b5..8533db0 100644 --- a/connect/client/testing/models/mixins.py +++ b/connect/client/testing/models/mixins.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # diff --git a/connect/client/utils.py b/connect/client/utils.py index 6fdf2a1..f77590c 100644 --- a/connect/client/utils.py +++ b/connect/client/utils.py @@ -1,7 +1,7 @@ # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # import platform from collections import namedtuple diff --git a/connect/client/version.py b/connect/client/version.py index 16580dc..d28e278 100644 --- a/connect/client/version.py +++ b/connect/client/version.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # -# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client. +# This file is part of the CloudBlue Connect Python OpenAPI Client. # -# Copyright (c) 2023 Ingram Micro. All Rights Reserved. +# Copyright (c) 2025 CloudBlue. All Rights Reserved. # try: from importlib.metadata import version diff --git a/mkdocs.yml b/mkdocs.yml index e529216..73ff716 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -3,7 +3,7 @@ site_url: https://github.com/cloudblue/connect-python-openapi-client repo_name: cloudblue/connect-python-openapi-client repo_url: https://github.com/cloudblue/connect-python-openapi-client edit_uri: "" -copyright: Copyright © 2023 Ingram Micro. All Rights Reserved. +copyright: Copyright © 2025 CloudBlue. All Rights Reserved. extra: generator: false extra_css: