Skip to content

Commit

Permalink
updates the docstring for render-config endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi1693 committed Aug 25, 2023
1 parent d674354 commit 2fdd20a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pynetbox/models/dcim.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,19 @@ def napalm(self):

@property
def render_config(self):
"""
Represents the ``render-config`` detail endpoint.
Returns a DetailEndpoint object that is the interface for
viewing response from the render-config endpoint.
:returns: :py:class:`.DetailEndpoint`
:Examples:
>>> device = nb.ipam.devices.get(123)
>>> device.render_config.create()
"""
return DetailEndpoint(self, "render-config")


Expand Down

0 comments on commit 2fdd20a

Please sign in to comment.