@@ -23,6 +23,7 @@ class AccessListType(NetBoxObjectType):
2323 Defines the object type for the django model AccessList.
2424 """
2525
26+ # Model fields
2627 assigned_object_type : Annotated ["ContentTypeType" , strawberry .lazy ("netbox.graphql.types" )]
2728 assigned_object : Annotated [
2829 Union [
@@ -41,17 +42,18 @@ class AccessListType(NetBoxObjectType):
4142)
4243class ACLInterfaceAssignmentType (NetBoxObjectType ):
4344 """
44- Defines the object type for the django model AccessList .
45+ Defines the object type for the django model ACLInterfaceAssignment .
4546 """
4647
48+ # Model fields
4749 access_list : Annotated ["AccessListType" , strawberry .lazy ("netbox_acls.graphql.types" )]
4850 assigned_object_type : Annotated ["ContentTypeType" , strawberry .lazy ("netbox.graphql.types" )]
4951 assigned_object : Annotated [
5052 Union [
5153 Annotated ["InterfaceType" , strawberry .lazy ("dcim.graphql.types" )],
5254 Annotated ["VMInterfaceType" , strawberry .lazy ("virtualization.graphql.types" )],
5355 ],
54- strawberry .union ("ACLInterfaceAssignmentType " ),
56+ strawberry .union ("ACLInterfaceAssignedObjectType " ),
5557 ]
5658
5759
@@ -65,6 +67,7 @@ class ACLStandardRuleType(NetBoxObjectType):
6567 Defines the object type for the django model ACLStandardRule.
6668 """
6769
70+ # Model fields
6871 access_list : Annotated ["AccessListType" , strawberry .lazy ("netbox_acls.graphql.types" )]
6972 source_prefix : Annotated ["PrefixType" , strawberry .lazy ("ipam.graphql.types" )] | None
7073
@@ -79,6 +82,7 @@ class ACLExtendedRuleType(NetBoxObjectType):
7982 Defines the object type for the django model ACLExtendedRule.
8083 """
8184
85+ # Model fields
8286 access_list : Annotated ["AccessListType" , strawberry .lazy ("netbox_acls.graphql.types" )]
8387 source_prefix : Annotated ["PrefixType" , strawberry .lazy ("ipam.graphql.types" )] | None
8488 source_ports : List [int ] | None
0 commit comments