Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cnct/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion cnct/rql.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is part of the Ingram Micro 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
2 changes: 1 addition & 1 deletion connect/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
2 changes: 1 addition & 1 deletion connect/client/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from http import HTTPStatus

Expand Down
2 changes: 1 addition & 1 deletion connect/client/fluent.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import contextvars
import threading
Expand Down
2 changes: 1 addition & 1 deletion connect/client/help_formatter.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/mixins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/models/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/models/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
class NotYetEvaluatedError(Exception):
pass
2 changes: 1 addition & 1 deletion connect/client/models/iterators.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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

Expand Down
2 changes: 1 addition & 1 deletion connect/client/models/mixins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from typing import (
Any,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/models/resourceset.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import copy

Expand Down
2 changes: 1 addition & 1 deletion connect/client/openapi.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/rql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is part of the Ingram Micro 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
2 changes: 1 addition & 1 deletion connect/client/rql/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
from typing import List

Expand Down
2 changes: 1 addition & 1 deletion connect/client/rql/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/testing/fluent.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import json
import re
Expand Down
2 changes: 1 addition & 1 deletion connect/client/testing/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/testing/models/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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,
Expand Down
2 changes: 1 addition & 1 deletion connect/client/testing/models/mixins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect Python OpenAPI Client.
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#


Expand Down
2 changes: 1 addition & 1 deletion connect/client/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion connect/client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# This file is part of the Ingram Micro 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
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading