Skip to content

Commit

Permalink
add enum DeviceProfileTypes for parsing/enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismarget-j committed Nov 2, 2023
1 parent df077e1 commit e05a951
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apstra/api_device_profiles_modular.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ type DeviceProfileType enum.Member[string]
var (
DeviceProfileTypeModular = DeviceProfileType{Value: "modular"}
DeviceProfileTypeMonolithic = DeviceProfileType{Value: "monolithic"}
DeviceProfileTypes = enum.New(DeviceProfileTypeModular, DeviceProfileTypeMonolithic)
)

type rawModularDeviceSlotConfiguration struct {
Expand Down

0 comments on commit e05a951

Please sign in to comment.