Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rkodev committed Sep 19, 2023
1 parent 951284c commit 9659a5d
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 75 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [0.80.0]- 2023-09-20

### Added

- Weekly generation.

## [0.79.0]- 2023-08-30

### Added
Expand Down
70 changes: 70 additions & 0 deletions models/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -468,3 +468,73 @@ type Adminable interface {
SetTodo(value AdminTodoable)()
SetWindows(value AdminWindowsable)()
}

// AdminWindows
type AdminWindows struct {
Entity
}
// NewAdminWindows instantiates a new adminWindows and sets the default values.
func NewAdminWindows()(*AdminWindows) {
m := &AdminWindows{
Entity: *NewEntity(),
}
return m
}
// CreateAdminWindowsFromDiscriminatorValue creates a new instance of the appropriate class based on discriminator value
func CreateAdminWindowsFromDiscriminatorValue(parseNode i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable, error) {
return NewAdminWindows(), nil
}
// GetFieldDeserializers the deserialization information for the current model
func (m *AdminWindows) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode)(error)) {
res := m.Entity.GetFieldDeserializers()
res["updates"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetObjectValue(CreateAdminWindowsUpdatesFromDiscriminatorValue)
if err != nil {
return err
}
if val != nil {
m.SetUpdates(val.(AdminWindowsUpdatesable))
}
return nil
}
return res
}
// GetUpdates gets the updates property value. Entity that acts as a container for all Windows Update for Business deployment service functionalities. Read-only.
func (m *AdminWindows) GetUpdates()(AdminWindowsUpdatesable) {
val, err := m.GetBackingStore().Get("updates")
if err != nil {
panic(err)
}
if val != nil {
return val.(AdminWindowsUpdatesable)
}
return nil
}
// Serialize serializes information the current object
func (m *AdminWindows) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.SerializationWriter)(error) {
err := m.Entity.Serialize(writer)
if err != nil {
return err
}
{
err = writer.WriteObjectValue("updates", m.GetUpdates())
if err != nil {
return err
}
}
return nil
}
// SetUpdates sets the updates property value. Entity that acts as a container for all Windows Update for Business deployment service functionalities. Read-only.
func (m *AdminWindows) SetUpdates(value AdminWindowsUpdatesable)() {
err := m.GetBackingStore().Set("updates", value)
if err != nil {
panic(err)
}
}
// AdminWindowsable
type AdminWindowsable interface {
Entityable
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetUpdates()(AdminWindowsUpdatesable)
SetUpdates(value AdminWindowsUpdatesable)()
}
75 changes: 0 additions & 75 deletions models/admin_windows.go

This file was deleted.

0 comments on commit 9659a5d

Please sign in to comment.