jamf_pro_sdk.models.classic.network_segments.ClassicNetworkSegment

pydantic model ClassicNetworkSegment

Represents a network_segment record returned by the get_network_segment_by_id() operation.

field id: int | None = None
field name: str | None = None
field starting_address: str | None = None
field ending_address: str | None = None
field distribution_server: str | None = None
field distribution_point: str | None = None
field url: str | None = None
field swu_server: str | None = None
field building: str | None = None
field department: str | None = None
field override_buildings: bool | None = None
field override_departments: bool | None = None
model_post_init(context: Any, /) None

This function is meant to behave like a BaseModel method to initialise private attributes.

It takes context as an argument since that’s what pydantic-core passes when calling it.

Args:

self: The BaseModel instance. context: The context.

Parameters:
  • self (BaseModel)

  • context (Any)

Return type:

None