110 lines
2.9 KiB
Python
110 lines
2.9 KiB
Python
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any, TypeVar, BinaryIO, TextIO, TYPE_CHECKING, Generator
|
|
|
|
from attrs import define as _attrs_define
|
|
from attrs import field as _attrs_field
|
|
|
|
from ..types import UNSET, Unset
|
|
|
|
from typing import cast
|
|
|
|
if TYPE_CHECKING:
|
|
from ..models.pack_workflow_validation_response_errors import PackWorkflowValidationResponseErrors
|
|
|
|
|
|
|
|
|
|
|
|
T = TypeVar("T", bound="PackWorkflowValidationResponse")
|
|
|
|
|
|
|
|
@_attrs_define
|
|
class PackWorkflowValidationResponse:
|
|
""" Response for pack workflow validation operation
|
|
|
|
Attributes:
|
|
error_count (int): Number of workflows with errors
|
|
errors (PackWorkflowValidationResponseErrors): Validation errors by workflow reference
|
|
pack_ref (str): Pack reference
|
|
validated_count (int): Number of workflows validated
|
|
"""
|
|
|
|
error_count: int
|
|
errors: PackWorkflowValidationResponseErrors
|
|
pack_ref: str
|
|
validated_count: int
|
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
|
|
|
|
|
|
|
|
|
|
def to_dict(self) -> dict[str, Any]:
|
|
from ..models.pack_workflow_validation_response_errors import PackWorkflowValidationResponseErrors
|
|
error_count = self.error_count
|
|
|
|
errors = self.errors.to_dict()
|
|
|
|
pack_ref = self.pack_ref
|
|
|
|
validated_count = self.validated_count
|
|
|
|
|
|
field_dict: dict[str, Any] = {}
|
|
field_dict.update(self.additional_properties)
|
|
field_dict.update({
|
|
"error_count": error_count,
|
|
"errors": errors,
|
|
"pack_ref": pack_ref,
|
|
"validated_count": validated_count,
|
|
})
|
|
|
|
return field_dict
|
|
|
|
|
|
|
|
@classmethod
|
|
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
from ..models.pack_workflow_validation_response_errors import PackWorkflowValidationResponseErrors
|
|
d = dict(src_dict)
|
|
error_count = d.pop("error_count")
|
|
|
|
errors = PackWorkflowValidationResponseErrors.from_dict(d.pop("errors"))
|
|
|
|
|
|
|
|
|
|
pack_ref = d.pop("pack_ref")
|
|
|
|
validated_count = d.pop("validated_count")
|
|
|
|
pack_workflow_validation_response = cls(
|
|
error_count=error_count,
|
|
errors=errors,
|
|
pack_ref=pack_ref,
|
|
validated_count=validated_count,
|
|
)
|
|
|
|
|
|
pack_workflow_validation_response.additional_properties = d
|
|
return pack_workflow_validation_response
|
|
|
|
@property
|
|
def additional_keys(self) -> list[str]:
|
|
return list(self.additional_properties.keys())
|
|
|
|
def __getitem__(self, key: str) -> Any:
|
|
return self.additional_properties[key]
|
|
|
|
def __setitem__(self, key: str, value: Any) -> None:
|
|
self.additional_properties[key] = value
|
|
|
|
def __delitem__(self, key: str) -> None:
|
|
del self.additional_properties[key]
|
|
|
|
def __contains__(self, key: str) -> bool:
|
|
return key in self.additional_properties
|