{% set base_class = ("(" + operation_group.base_class(async_mode) + ")") if operation_group.base_class(async_mode) else "" %}
{% macro check_abstract_methods() %}
{% if operation_group.has_abstract_operations %}
        raise_if_not_implemented(self.__class__, [
        {% for operation in operation_group.operations if operation.abstract %}
            '{{operation.name}}',
        {% endfor %}
        ])
{% endif %}
{% endmacro %}
{% if operation_group.base_class(async_mode) %}
class {{ operation_group.class_name }}( {{ operation_group.pylint_disable() }}
    {{ operation_group.base_class(async_mode) }}
):
{% else %}
class {{ operation_group.class_name }}: {{ operation_group.pylint_disable() }}
{% endif %}
{% if not operation_group.is_mixin %}
    """
    .. warning::
        **DO NOT** instantiate this class directly.

        Instead, you should access the following operations through
        :class:`{{ "~" + code_model.namespace + (".aio." if async_mode else ".") + operation_group.client.name }}`'s
        :attr:`{{ operation_group.property_name }}` attribute.
    """

{% if code_model.public_model_types and code_model.options["models-mode"] == "msrest" %}
    models = _models

{% endif %}
    def __init__(self, *args, **kwargs) -> None:
        input_args = list(args)
        self._client: {{ 'Async' if async_mode else ''}}PipelineClient = input_args.pop(0) if input_args else kwargs.pop("client")
        self._config: {{ operation_group.client.name }}Configuration = input_args.pop(0) if input_args else kwargs.pop("config")
        self._serialize: Serializer = input_args.pop(0) if input_args else kwargs.pop("serializer")
        self._deserialize: Deserializer = input_args.pop(0) if input_args else kwargs.pop("deserializer")

        {% for og in operation_group.operation_groups %}
        self.{{ og.property_name }} = {{ og.class_name }}(
            self._client, self._config, self._serialize, self._deserialize
        )
        {% endfor %}

{{ check_abstract_methods() }}
{% elif operation_group.has_abstract_operations %}

    def __init__(self) -> None:
{{ check_abstract_methods() }}
{% endif %}
{% for operation in operation_group.operations if not operation.abstract %}

{% set request_builder = operation.request_builder %}
{% set operation_serializer = get_operation_serializer(operation) %}
    {% if operation.operation_type == "lropaging" %}
    {%- macro some_op() %}{% include "lro_paging_operation.py.jinja2" %}{% endmacro %}
    {% elif operation.operation_type == "lro" %}
    {%- macro some_op() %}{% include "lro_operation.py.jinja2" %}{% endmacro %}
    {% elif operation.operation_type == "paging" %}
    {% macro some_op() %}{% include "paging_operation.py.jinja2" %}{% endmacro %}
    {% else %}
    {% macro some_op() %}{% include "operation.py.jinja2" %}{% endmacro %}
    {% endif %}
    {{ some_op()|indent }}
{% endfor %}
