@@ -7,119 +7,119 @@ sidebarTitle: related_node
77
88## Classes
99
10- ### ` RelatedNodeBase `
10+ ### ` RelatedNodeBase ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L17 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
1111
1212Base class for representing a related node in a relationship.
1313
1414** Methods:**
1515
16- #### ` id `
16+ #### ` id ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L92 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
1717
1818``` python
1919id (self ) -> str | None
2020```
2121
22- #### ` hfid `
22+ #### ` hfid ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L98 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
2323
2424``` python
2525hfid(self ) -> list[Any] | None
2626```
2727
28- #### ` hfid_str `
28+ #### ` hfid_str ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L104 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
2929
3030``` python
3131hfid_str(self ) -> str | None
3232```
3333
34- #### ` is_resource_pool `
34+ #### ` is_resource_pool ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L110 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
3535
3636``` python
3737is_resource_pool(self ) -> bool
3838```
3939
40- #### ` initialized `
40+ #### ` initialized ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L116 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
4141
4242``` python
4343initialized(self ) -> bool
4444```
4545
46- #### ` display_label `
46+ #### ` display_label ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L120 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
4747
4848``` python
4949display_label(self ) -> str | None
5050```
5151
52- #### ` typename `
52+ #### ` typename ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L126 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
5353
5454``` python
5555typename(self ) -> str | None
5656```
5757
58- #### ` kind `
58+ #### ` kind ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L132 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
5959
6060``` python
6161kind(self ) -> str | None
6262```
6363
64- #### ` is_from_profile `
64+ #### ` is_from_profile ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L138 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
6565
6666``` python
6767is_from_profile(self ) -> bool
6868```
6969
7070Return whether this relationship was set from a profile. Done by checking if the source is of a profile kind.
7171
72- #### ` get_relationship_metadata `
72+ #### ` get_relationship_metadata ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L144 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
7373
7474``` python
7575get_relationship_metadata(self ) -> RelationshipMetadata | None
7676```
7777
7878Returns the relationship metadata (updated_at, updated_by) if fetched.
7979
80- ### ` RelatedNode `
80+ ### ` RelatedNode ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L213 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
8181
8282Represents a RelatedNodeBase in an asynchronous context.
8383
8484** Methods:**
8585
86- #### ` fetch `
86+ #### ` fetch ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L235 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
8787
8888``` python
8989fetch(self , timeout: int | None = None ) -> None
9090```
9191
92- #### ` peer `
92+ #### ` peer ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L244 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
9393
9494``` python
9595peer(self ) -> InfrahubNode
9696```
9797
98- #### ` get `
98+ #### ` get ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L247 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
9999
100100``` python
101101get(self ) -> InfrahubNode
102102```
103103
104- ### ` RelatedNodeSync `
104+ ### ` RelatedNodeSync ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L260 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
105105
106106Represents a related node in a synchronous context.
107107
108108** Methods:**
109109
110- #### ` fetch `
110+ #### ` fetch ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L282 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
111111
112112``` python
113113fetch(self , timeout: int | None = None ) -> None
114114```
115115
116- #### ` peer `
116+ #### ` peer ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L291 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
117117
118118``` python
119119peer(self ) -> InfrahubNodeSync
120120```
121121
122- #### ` get `
122+ #### ` get ` < sup >< a href = " https://github.com/opsmill/infrahub-sdk-python/blob/main/src/infrahub-sdk-python/infrahub_sdk/node/related_node.py#L294 " target = " _blank " >< Icon icon = " github " style = " width: 14px; height: 14px; " /></ a ></ sup >
123123
124124``` python
125125get(self ) -> InfrahubNodeSync
0 commit comments