Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes in generated code #39

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
5,154 changes: 2,574 additions & 2,580 deletions pkg/github/.kiota.log

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/github/kiota-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"descriptionHash": "227AA9495DA3105FF81582DD86965B767B1026AC103961C834D82B7C09FC012448B70C448DF745E5AAC9F194124DDC5D2B5AEA49E0734E7CF8DA37FFB4E5A523",
"descriptionHash": "CAA046B031EE84873B02436E386C9F0CBD0963ADB4C6BB76C5FE2BB72A960808843E4822C39B6379BFCD7FC729A00B7DECD3AEB36B40CA647C5F402585D6B6DE",
"descriptionLocation": "../../../../../schemas/ghec.json",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.19.0",
Expand Down
29 changes: 29 additions & 0 deletions pkg/github/models/base_gist.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ type BaseGist struct {
additionalData map[string]any
// The comments property
comments *int32
// The comments_enabled property
comments_enabled *bool
// The comments_url property
comments_url *string
// The commits_url property
Expand Down Expand Up @@ -72,6 +74,11 @@ func (m *BaseGist) GetAdditionalData()(map[string]any) {
func (m *BaseGist) GetComments()(*int32) {
return m.comments
}
// GetCommentsEnabled gets the comments_enabled property value. The comments_enabled property
// returns a *bool when successful
func (m *BaseGist) GetCommentsEnabled()(*bool) {
return m.comments_enabled
}
// GetCommentsUrl gets the comments_url property value. The comments_url property
// returns a *string when successful
func (m *BaseGist) GetCommentsUrl()(*string) {
Expand Down Expand Up @@ -106,6 +113,16 @@ func (m *BaseGist) GetFieldDeserializers()(map[string]func(i878a80d2330e89d26896
}
return nil
}
res["comments_enabled"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetCommentsEnabled(val)
}
return nil
}
res["comments_url"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
Expand Down Expand Up @@ -381,6 +398,12 @@ func (m *BaseGist) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c01
return err
}
}
{
err := writer.WriteBoolValue("comments_enabled", m.GetCommentsEnabled())
if err != nil {
return err
}
}
{
err := writer.WriteStringValue("comments_url", m.GetCommentsUrl())
if err != nil {
Expand Down Expand Up @@ -511,6 +534,10 @@ func (m *BaseGist) SetAdditionalData(value map[string]any)() {
func (m *BaseGist) SetComments(value *int32)() {
m.comments = value
}
// SetCommentsEnabled sets the comments_enabled property value. The comments_enabled property
func (m *BaseGist) SetCommentsEnabled(value *bool)() {
m.comments_enabled = value
}
// SetCommentsUrl sets the comments_url property value. The comments_url property
func (m *BaseGist) SetCommentsUrl(value *string)() {
m.comments_url = value
Expand Down Expand Up @@ -591,6 +618,7 @@ type BaseGistable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetComments()(*int32)
GetCommentsEnabled()(*bool)
GetCommentsUrl()(*string)
GetCommitsUrl()(*string)
GetCreatedAt()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
Expand All @@ -611,6 +639,7 @@ type BaseGistable interface {
GetUrl()(*string)
GetUser()(NullableSimpleUserable)
SetComments(value *int32)()
SetCommentsEnabled(value *bool)()
SetCommentsUrl(value *string)()
SetCommitsUrl(value *string)()
SetCreatedAt(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
Expand Down
59 changes: 59 additions & 0 deletions pkg/github/models/code_scanning_default_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ type CodeScanningDefaultSetup struct {
languages []CodeScanningDefaultSetup_languages
// CodeQL query suite to be used.
query_suite *CodeScanningDefaultSetup_query_suite
// Runner label to be used if the runner type is labeled.
runner_label *string
// Runner type to be used.
runner_type *CodeScanningDefaultSetup_runner_type
// The frequency of the periodic analysis.
schedule *CodeScanningDefaultSetup_schedule
// Code scanning default setup has been configured or not.
Expand Down Expand Up @@ -67,6 +71,26 @@ func (m *CodeScanningDefaultSetup) GetFieldDeserializers()(map[string]func(i878a
}
return nil
}
res["runner_label"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
return err
}
if val != nil {
m.SetRunnerLabel(val)
}
return nil
}
res["runner_type"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseCodeScanningDefaultSetup_runner_type)
if err != nil {
return err
}
if val != nil {
m.SetRunnerType(val.(*CodeScanningDefaultSetup_runner_type))
}
return nil
}
res["schedule"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetEnumValue(ParseCodeScanningDefaultSetup_schedule)
if err != nil {
Expand Down Expand Up @@ -109,6 +133,16 @@ func (m *CodeScanningDefaultSetup) GetLanguages()([]CodeScanningDefaultSetup_lan
func (m *CodeScanningDefaultSetup) GetQuerySuite()(*CodeScanningDefaultSetup_query_suite) {
return m.query_suite
}
// GetRunnerLabel gets the runner_label property value. Runner label to be used if the runner type is labeled.
// returns a *string when successful
func (m *CodeScanningDefaultSetup) GetRunnerLabel()(*string) {
return m.runner_label
}
// GetRunnerType gets the runner_type property value. Runner type to be used.
// returns a *CodeScanningDefaultSetup_runner_type when successful
func (m *CodeScanningDefaultSetup) GetRunnerType()(*CodeScanningDefaultSetup_runner_type) {
return m.runner_type
}
// GetSchedule gets the schedule property value. The frequency of the periodic analysis.
// returns a *CodeScanningDefaultSetup_schedule when successful
func (m *CodeScanningDefaultSetup) GetSchedule()(*CodeScanningDefaultSetup_schedule) {
Expand Down Expand Up @@ -139,6 +173,19 @@ func (m *CodeScanningDefaultSetup) Serialize(writer i878a80d2330e89d26896388a3f4
return err
}
}
{
err := writer.WriteStringValue("runner_label", m.GetRunnerLabel())
if err != nil {
return err
}
}
if m.GetRunnerType() != nil {
cast := (*m.GetRunnerType()).String()
err := writer.WriteStringValue("runner_type", &cast)
if err != nil {
return err
}
}
if m.GetSchedule() != nil {
cast := (*m.GetSchedule()).String()
err := writer.WriteStringValue("schedule", &cast)
Expand Down Expand Up @@ -179,6 +226,14 @@ func (m *CodeScanningDefaultSetup) SetLanguages(value []CodeScanningDefaultSetup
func (m *CodeScanningDefaultSetup) SetQuerySuite(value *CodeScanningDefaultSetup_query_suite)() {
m.query_suite = value
}
// SetRunnerLabel sets the runner_label property value. Runner label to be used if the runner type is labeled.
func (m *CodeScanningDefaultSetup) SetRunnerLabel(value *string)() {
m.runner_label = value
}
// SetRunnerType sets the runner_type property value. Runner type to be used.
func (m *CodeScanningDefaultSetup) SetRunnerType(value *CodeScanningDefaultSetup_runner_type)() {
m.runner_type = value
}
// SetSchedule sets the schedule property value. The frequency of the periodic analysis.
func (m *CodeScanningDefaultSetup) SetSchedule(value *CodeScanningDefaultSetup_schedule)() {
m.schedule = value
Expand All @@ -196,11 +251,15 @@ type CodeScanningDefaultSetupable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetLanguages()([]CodeScanningDefaultSetup_languages)
GetQuerySuite()(*CodeScanningDefaultSetup_query_suite)
GetRunnerLabel()(*string)
GetRunnerType()(*CodeScanningDefaultSetup_runner_type)
GetSchedule()(*CodeScanningDefaultSetup_schedule)
GetState()(*CodeScanningDefaultSetup_state)
GetUpdatedAt()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
SetLanguages(value []CodeScanningDefaultSetup_languages)()
SetQuerySuite(value *CodeScanningDefaultSetup_query_suite)()
SetRunnerLabel(value *string)()
SetRunnerType(value *CodeScanningDefaultSetup_runner_type)()
SetSchedule(value *CodeScanningDefaultSetup_schedule)()
SetState(value *CodeScanningDefaultSetup_state)()
SetUpdatedAt(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package models
// Runner type to be used.
type CodeScanningDefaultSetup_runner_type int

const (
STANDARD_CODESCANNINGDEFAULTSETUP_RUNNER_TYPE CodeScanningDefaultSetup_runner_type = iota
LABELED_CODESCANNINGDEFAULTSETUP_RUNNER_TYPE
)

func (i CodeScanningDefaultSetup_runner_type) String() string {
return []string{"standard", "labeled"}[i]
}
func ParseCodeScanningDefaultSetup_runner_type(v string) (any, error) {
result := STANDARD_CODESCANNINGDEFAULTSETUP_RUNNER_TYPE
switch v {
case "standard":
result = STANDARD_CODESCANNINGDEFAULTSETUP_RUNNER_TYPE
case "labeled":
result = LABELED_CODESCANNINGDEFAULTSETUP_RUNNER_TYPE
default:
return nil, nil
}
return &result, nil
}
func SerializeCodeScanningDefaultSetup_runner_type(values []CodeScanningDefaultSetup_runner_type) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i CodeScanningDefaultSetup_runner_type) isMultiValue() bool {
return false
}
29 changes: 29 additions & 0 deletions pkg/github/models/gist_simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ type GistSimple struct {
additionalData map[string]any
// The comments property
comments *int32
// The comments_enabled property
comments_enabled *bool
// The comments_url property
comments_url *string
// The commits_url property
Expand Down Expand Up @@ -75,6 +77,11 @@ func (m *GistSimple) GetAdditionalData()(map[string]any) {
func (m *GistSimple) GetComments()(*int32) {
return m.comments
}
// GetCommentsEnabled gets the comments_enabled property value. The comments_enabled property
// returns a *bool when successful
func (m *GistSimple) GetCommentsEnabled()(*bool) {
return m.comments_enabled
}
// GetCommentsUrl gets the comments_url property value. The comments_url property
// returns a *string when successful
func (m *GistSimple) GetCommentsUrl()(*string) {
Expand Down Expand Up @@ -109,6 +116,16 @@ func (m *GistSimple) GetFieldDeserializers()(map[string]func(i878a80d2330e89d268
}
return nil
}
res["comments_enabled"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetCommentsEnabled(val)
}
return nil
}
res["comments_url"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
Expand Down Expand Up @@ -413,6 +430,12 @@ func (m *GistSimple) Serialize(writer i878a80d2330e89d26896388a3f487eef27b0a0e6c
return err
}
}
{
err := writer.WriteBoolValue("comments_enabled", m.GetCommentsEnabled())
if err != nil {
return err
}
}
{
err := writer.WriteStringValue("comments_url", m.GetCommentsUrl())
if err != nil {
Expand Down Expand Up @@ -561,6 +584,10 @@ func (m *GistSimple) SetAdditionalData(value map[string]any)() {
func (m *GistSimple) SetComments(value *int32)() {
m.comments = value
}
// SetCommentsEnabled sets the comments_enabled property value. The comments_enabled property
func (m *GistSimple) SetCommentsEnabled(value *bool)() {
m.comments_enabled = value
}
// SetCommentsUrl sets the comments_url property value. The comments_url property
func (m *GistSimple) SetCommentsUrl(value *string)() {
m.comments_url = value
Expand Down Expand Up @@ -647,6 +674,7 @@ type GistSimpleable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetComments()(*int32)
GetCommentsEnabled()(*bool)
GetCommentsUrl()(*string)
GetCommitsUrl()(*string)
GetCreatedAt()(*string)
Expand All @@ -668,6 +696,7 @@ type GistSimpleable interface {
GetUrl()(*string)
GetUser()(*string)
SetComments(value *int32)()
SetCommentsEnabled(value *bool)()
SetCommentsUrl(value *string)()
SetCommitsUrl(value *string)()
SetCreatedAt(value *string)()
Expand Down
29 changes: 29 additions & 0 deletions pkg/github/models/gist_simple_escaped_fork_escaped_of.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ type GistSimple_fork_of struct {
additionalData map[string]any
// The comments property
comments *int32
// The comments_enabled property
comments_enabled *bool
// The comments_url property
comments_url *string
// The commits_url property
Expand Down Expand Up @@ -72,6 +74,11 @@ func (m *GistSimple_fork_of) GetAdditionalData()(map[string]any) {
func (m *GistSimple_fork_of) GetComments()(*int32) {
return m.comments
}
// GetCommentsEnabled gets the comments_enabled property value. The comments_enabled property
// returns a *bool when successful
func (m *GistSimple_fork_of) GetCommentsEnabled()(*bool) {
return m.comments_enabled
}
// GetCommentsUrl gets the comments_url property value. The comments_url property
// returns a *string when successful
func (m *GistSimple_fork_of) GetCommentsUrl()(*string) {
Expand Down Expand Up @@ -106,6 +113,16 @@ func (m *GistSimple_fork_of) GetFieldDeserializers()(map[string]func(i878a80d233
}
return nil
}
res["comments_enabled"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetBoolValue()
if err != nil {
return err
}
if val != nil {
m.SetCommentsEnabled(val)
}
return nil
}
res["comments_url"] = func (n i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.ParseNode) error {
val, err := n.GetStringValue()
if err != nil {
Expand Down Expand Up @@ -381,6 +398,12 @@ func (m *GistSimple_fork_of) Serialize(writer i878a80d2330e89d26896388a3f487eef2
return err
}
}
{
err := writer.WriteBoolValue("comments_enabled", m.GetCommentsEnabled())
if err != nil {
return err
}
}
{
err := writer.WriteStringValue("comments_url", m.GetCommentsUrl())
if err != nil {
Expand Down Expand Up @@ -511,6 +534,10 @@ func (m *GistSimple_fork_of) SetAdditionalData(value map[string]any)() {
func (m *GistSimple_fork_of) SetComments(value *int32)() {
m.comments = value
}
// SetCommentsEnabled sets the comments_enabled property value. The comments_enabled property
func (m *GistSimple_fork_of) SetCommentsEnabled(value *bool)() {
m.comments_enabled = value
}
// SetCommentsUrl sets the comments_url property value. The comments_url property
func (m *GistSimple_fork_of) SetCommentsUrl(value *string)() {
m.comments_url = value
Expand Down Expand Up @@ -591,6 +618,7 @@ type GistSimple_fork_ofable interface {
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.AdditionalDataHolder
i878a80d2330e89d26896388a3f487eef27b0a0e6c010c493bf80be1452208f91.Parsable
GetComments()(*int32)
GetCommentsEnabled()(*bool)
GetCommentsUrl()(*string)
GetCommitsUrl()(*string)
GetCreatedAt()(*i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)
Expand All @@ -611,6 +639,7 @@ type GistSimple_fork_ofable interface {
GetUrl()(*string)
GetUser()(NullableSimpleUserable)
SetComments(value *int32)()
SetCommentsEnabled(value *bool)()
SetCommentsUrl(value *string)()
SetCommitsUrl(value *string)()
SetCreatedAt(value *i336074805fc853987abe6f7fe3ad97a6a6f3077a16391fec744f671a015fbd7e.Time)()
Expand Down
Loading
Loading