Skip to content

Commit

Permalink
chore: finalize data model
Browse files Browse the repository at this point in the history
Signed-off-by: Achim Christ <[email protected]>
  • Loading branch information
acch committed Nov 19, 2024
1 parent 5e0b2d6 commit e203de8
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions internal/interfaces/networking_broadcast_domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,20 @@ type BroadcastDomainResourceBodyDataModelONTAP struct {
// BroadcastDomainIPSpace describes an IP space specifically for broadcast domains.
type BroadcastDomainIPSpace struct {
Name string `mapstructure:"name,omitempty"`
// UUID string `mapstructure:"uuid,omitempty"`
UUID string `mapstructure:"uuid,omitempty"`
}

// BroadcastDomainPort describes an ethernet port specifically for broadcast domains.
type BroadcastDomainPort struct {
Name string `mapstructure:"name"`
// UUID string `mapstructure:"uuid"`
Name string `mapstructure:"name,omitempty"`
Node BroadcastDomainNode `mapstructure:"node,omitempty"`
UUID string `mapstructure:"uuid,omitempty"`
}

// BroadcastDomainNode describes a node specifically for ethernet ports.
type BroadcastDomainNode struct {
Name string `mapstructure:"name,omitempty"`
UUID string `mapstructure:"uuid,omitempty"`
}

// BroadcastDomainDataSourceFilterModel describes filter model.
Expand Down

0 comments on commit e203de8

Please sign in to comment.