@@ -115,18 +115,21 @@ def convert(self) -> ConvertResource:
115115
116116 @cached_property
117117 def projects (self ) -> ProjectsResource :
118+ """Project details and configuration."""
118119 from .resources .projects import ProjectsResource
119120
120121 return ProjectsResource (self )
121122
122123 @cached_property
123124 def templates (self ) -> TemplatesResource :
125+ """Template management and retrieval."""
124126 from .resources .templates import TemplatesResource
125127
126128 return TemplatesResource (self )
127129
128130 @cached_property
129131 def workspaces (self ) -> WorkspacesResource :
132+ """Workspace access and management."""
130133 from .resources .workspaces import WorkspacesResource
131134
132135 return WorkspacesResource (self )
@@ -345,18 +348,21 @@ def convert(self) -> AsyncConvertResource:
345348
346349 @cached_property
347350 def projects (self ) -> AsyncProjectsResource :
351+ """Project details and configuration."""
348352 from .resources .projects import AsyncProjectsResource
349353
350354 return AsyncProjectsResource (self )
351355
352356 @cached_property
353357 def templates (self ) -> AsyncTemplatesResource :
358+ """Template management and retrieval."""
354359 from .resources .templates import AsyncTemplatesResource
355360
356361 return AsyncTemplatesResource (self )
357362
358363 @cached_property
359364 def workspaces (self ) -> AsyncWorkspacesResource :
365+ """Workspace access and management."""
360366 from .resources .workspaces import AsyncWorkspacesResource
361367
362368 return AsyncWorkspacesResource (self )
@@ -515,18 +521,21 @@ def convert(self) -> convert.ConvertResourceWithRawResponse:
515521
516522 @cached_property
517523 def projects (self ) -> projects .ProjectsResourceWithRawResponse :
524+ """Project details and configuration."""
518525 from .resources .projects import ProjectsResourceWithRawResponse
519526
520527 return ProjectsResourceWithRawResponse (self ._client .projects )
521528
522529 @cached_property
523530 def templates (self ) -> templates .TemplatesResourceWithRawResponse :
531+ """Template management and retrieval."""
524532 from .resources .templates import TemplatesResourceWithRawResponse
525533
526534 return TemplatesResourceWithRawResponse (self ._client .templates )
527535
528536 @cached_property
529537 def workspaces (self ) -> workspaces .WorkspacesResourceWithRawResponse :
538+ """Workspace access and management."""
530539 from .resources .workspaces import WorkspacesResourceWithRawResponse
531540
532541 return WorkspacesResourceWithRawResponse (self ._client .workspaces )
@@ -546,18 +555,21 @@ def convert(self) -> convert.AsyncConvertResourceWithRawResponse:
546555
547556 @cached_property
548557 def projects (self ) -> projects .AsyncProjectsResourceWithRawResponse :
558+ """Project details and configuration."""
549559 from .resources .projects import AsyncProjectsResourceWithRawResponse
550560
551561 return AsyncProjectsResourceWithRawResponse (self ._client .projects )
552562
553563 @cached_property
554564 def templates (self ) -> templates .AsyncTemplatesResourceWithRawResponse :
565+ """Template management and retrieval."""
555566 from .resources .templates import AsyncTemplatesResourceWithRawResponse
556567
557568 return AsyncTemplatesResourceWithRawResponse (self ._client .templates )
558569
559570 @cached_property
560571 def workspaces (self ) -> workspaces .AsyncWorkspacesResourceWithRawResponse :
572+ """Workspace access and management."""
561573 from .resources .workspaces import AsyncWorkspacesResourceWithRawResponse
562574
563575 return AsyncWorkspacesResourceWithRawResponse (self ._client .workspaces )
@@ -577,18 +589,21 @@ def convert(self) -> convert.ConvertResourceWithStreamingResponse:
577589
578590 @cached_property
579591 def projects (self ) -> projects .ProjectsResourceWithStreamingResponse :
592+ """Project details and configuration."""
580593 from .resources .projects import ProjectsResourceWithStreamingResponse
581594
582595 return ProjectsResourceWithStreamingResponse (self ._client .projects )
583596
584597 @cached_property
585598 def templates (self ) -> templates .TemplatesResourceWithStreamingResponse :
599+ """Template management and retrieval."""
586600 from .resources .templates import TemplatesResourceWithStreamingResponse
587601
588602 return TemplatesResourceWithStreamingResponse (self ._client .templates )
589603
590604 @cached_property
591605 def workspaces (self ) -> workspaces .WorkspacesResourceWithStreamingResponse :
606+ """Workspace access and management."""
592607 from .resources .workspaces import WorkspacesResourceWithStreamingResponse
593608
594609 return WorkspacesResourceWithStreamingResponse (self ._client .workspaces )
@@ -608,18 +623,21 @@ def convert(self) -> convert.AsyncConvertResourceWithStreamingResponse:
608623
609624 @cached_property
610625 def projects (self ) -> projects .AsyncProjectsResourceWithStreamingResponse :
626+ """Project details and configuration."""
611627 from .resources .projects import AsyncProjectsResourceWithStreamingResponse
612628
613629 return AsyncProjectsResourceWithStreamingResponse (self ._client .projects )
614630
615631 @cached_property
616632 def templates (self ) -> templates .AsyncTemplatesResourceWithStreamingResponse :
633+ """Template management and retrieval."""
617634 from .resources .templates import AsyncTemplatesResourceWithStreamingResponse
618635
619636 return AsyncTemplatesResourceWithStreamingResponse (self ._client .templates )
620637
621638 @cached_property
622639 def workspaces (self ) -> workspaces .AsyncWorkspacesResourceWithStreamingResponse :
640+ """Workspace access and management."""
623641 from .resources .workspaces import AsyncWorkspacesResourceWithStreamingResponse
624642
625643 return AsyncWorkspacesResourceWithStreamingResponse (self ._client .workspaces )
0 commit comments