diff --git a/apis/management.cattle.io/v3/zz_generated_deepcopy.go b/apis/management.cattle.io/v3/zz_generated_deepcopy.go index dbc865a1..05230186 100644 --- a/apis/management.cattle.io/v3/zz_generated_deepcopy.go +++ b/apis/management.cattle.io/v3/zz_generated_deepcopy.go @@ -208,9 +208,9 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error { return nil }, InType: reflect.TypeOf(&GithubConfigApplyInput{})}, conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { - in.(*GithubConfigTestInput).DeepCopyInto(out.(*GithubConfigTestInput)) + in.(*GithubConfigTestOutput).DeepCopyInto(out.(*GithubConfigTestOutput)) return nil - }, InType: reflect.TypeOf(&GithubConfigTestInput{})}, + }, InType: reflect.TypeOf(&GithubConfigTestOutput{})}, conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error { in.(*GlobalRole).DeepCopyInto(out.(*GlobalRole)) return nil @@ -1859,18 +1859,17 @@ func (in *GithubConfigApplyInput) DeepCopy() *GithubConfigApplyInput { } // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. -func (in *GithubConfigTestInput) DeepCopyInto(out *GithubConfigTestInput) { +func (in *GithubConfigTestOutput) DeepCopyInto(out *GithubConfigTestOutput) { *out = *in - in.GithubConfig.DeepCopyInto(&out.GithubConfig) return } -// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubConfigTestInput. -func (in *GithubConfigTestInput) DeepCopy() *GithubConfigTestInput { +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubConfigTestOutput. +func (in *GithubConfigTestOutput) DeepCopy() *GithubConfigTestOutput { if in == nil { return nil } - out := new(GithubConfigTestInput) + out := new(GithubConfigTestOutput) in.DeepCopyInto(out) return out } @@ -2439,6 +2438,7 @@ func (in *LocalConfig) DeepCopyInto(out *LocalConfig) { *out = *in out.TypeMeta = in.TypeMeta in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) + in.AuthConfig.DeepCopyInto(&out.AuthConfig) return } diff --git a/client/management/v3/zz_generated_auth_config.go b/client/management/v3/zz_generated_auth_config.go index 212609ea..3189388d 100644 --- a/client/management/v3/zz_generated_auth_config.go +++ b/client/management/v3/zz_generated_auth_config.go @@ -9,6 +9,7 @@ const ( AuthConfigFieldAnnotations = "annotations" AuthConfigFieldCreated = "created" AuthConfigFieldCreatorID = "creatorId" + AuthConfigFieldEnabled = "enabled" AuthConfigFieldLabels = "labels" AuthConfigFieldName = "name" AuthConfigFieldOwnerReferences = "ownerReferences" @@ -22,6 +23,7 @@ type AuthConfig struct { Annotations map[string]string `json:"annotations,omitempty"` Created string `json:"created,omitempty"` CreatorID string `json:"creatorId,omitempty"` + Enabled *bool `json:"enabled,omitempty"` Labels map[string]string `json:"labels,omitempty"` Name string `json:"name,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"` diff --git a/client/management/v3/zz_generated_github_config.go b/client/management/v3/zz_generated_github_config.go index edee6212..224795d6 100644 --- a/client/management/v3/zz_generated_github_config.go +++ b/client/management/v3/zz_generated_github_config.go @@ -13,7 +13,7 @@ const ( GithubConfigFieldName = "name" GithubConfigFieldOwnerReferences = "ownerReferences" GithubConfigFieldRemoved = "removed" - GithubConfigFieldScheme = "scheme" + GithubConfigFieldTLS = "tls" GithubConfigFieldType = "type" GithubConfigFieldUuid = "uuid" ) @@ -30,7 +30,7 @@ type GithubConfig struct { Name string `json:"name,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"` Removed string `json:"removed,omitempty"` - Scheme string `json:"scheme,omitempty"` + TLS bool `json:"tls,omitempty"` Type string `json:"type,omitempty"` Uuid string `json:"uuid,omitempty"` } diff --git a/client/management/v3/zz_generated_github_config_test_input.go b/client/management/v3/zz_generated_github_config_test_input.go deleted file mode 100644 index 802c3b14..00000000 --- a/client/management/v3/zz_generated_github_config_test_input.go +++ /dev/null @@ -1,12 +0,0 @@ -package client - -const ( - GithubConfigTestInputType = "githubConfigTestInput" - GithubConfigTestInputFieldEnabled = "enabled" - GithubConfigTestInputFieldGithubConfig = "githubConfig" -) - -type GithubConfigTestInput struct { - Enabled *bool `json:"enabled,omitempty"` - GithubConfig *GithubConfig `json:"githubConfig,omitempty"` -} diff --git a/client/management/v3/zz_generated_github_config_test_output.go b/client/management/v3/zz_generated_github_config_test_output.go new file mode 100644 index 00000000..5e78ede6 --- /dev/null +++ b/client/management/v3/zz_generated_github_config_test_output.go @@ -0,0 +1,10 @@ +package client + +const ( + GithubConfigTestOutputType = "githubConfigTestOutput" + GithubConfigTestOutputFieldRedirectURL = "redirectUrl" +) + +type GithubConfigTestOutput struct { + RedirectURL string `json:"redirectUrl,omitempty"` +} diff --git a/client/management/v3/zz_generated_local_config.go b/client/management/v3/zz_generated_local_config.go index b4379731..fb9faea5 100644 --- a/client/management/v3/zz_generated_local_config.go +++ b/client/management/v3/zz_generated_local_config.go @@ -5,10 +5,12 @@ const ( LocalConfigFieldAnnotations = "annotations" LocalConfigFieldCreated = "created" LocalConfigFieldCreatorID = "creatorId" + LocalConfigFieldEnabled = "enabled" LocalConfigFieldLabels = "labels" LocalConfigFieldName = "name" LocalConfigFieldOwnerReferences = "ownerReferences" LocalConfigFieldRemoved = "removed" + LocalConfigFieldType = "type" LocalConfigFieldUuid = "uuid" ) @@ -16,9 +18,11 @@ type LocalConfig struct { Annotations map[string]string `json:"annotations,omitempty"` Created string `json:"created,omitempty"` CreatorID string `json:"creatorId,omitempty"` + Enabled *bool `json:"enabled,omitempty"` Labels map[string]string `json:"labels,omitempty"` Name string `json:"name,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"` Removed string `json:"removed,omitempty"` + Type string `json:"type,omitempty"` Uuid string `json:"uuid,omitempty"` } diff --git a/client/management/v3/zz_generated_principal.go b/client/management/v3/zz_generated_principal.go index 49434826..8c3566e1 100644 --- a/client/management/v3/zz_generated_principal.go +++ b/client/management/v3/zz_generated_principal.go @@ -19,6 +19,7 @@ const ( PrincipalFieldOwnerReferences = "ownerReferences" PrincipalFieldProfilePicture = "profilePicture" PrincipalFieldProfileURL = "profileURL" + PrincipalFieldProvider = "provider" PrincipalFieldRemoved = "removed" PrincipalFieldUuid = "uuid" ) @@ -38,6 +39,7 @@ type Principal struct { OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"` ProfilePicture string `json:"profilePicture,omitempty"` ProfileURL string `json:"profileURL,omitempty"` + Provider string `json:"provider,omitempty"` Removed string `json:"removed,omitempty"` Uuid string `json:"uuid,omitempty"` } diff --git a/client/management/v3public/zz_generated_github_provider.go b/client/management/v3public/zz_generated_github_provider.go index dc5ab885..edbb65c7 100644 --- a/client/management/v3public/zz_generated_github_provider.go +++ b/client/management/v3public/zz_generated_github_provider.go @@ -8,6 +8,7 @@ const ( GithubProviderFieldLabels = "labels" GithubProviderFieldName = "name" GithubProviderFieldOwnerReferences = "ownerReferences" + GithubProviderFieldRedirectURL = "redirectUrl" GithubProviderFieldRemoved = "removed" GithubProviderFieldType = "type" GithubProviderFieldUuid = "uuid" @@ -20,6 +21,7 @@ type GithubProvider struct { Labels map[string]string `json:"labels,omitempty"` Name string `json:"name,omitempty"` OwnerReferences []OwnerReference `json:"ownerReferences,omitempty"` + RedirectURL string `json:"redirectUrl,omitempty"` Removed string `json:"removed,omitempty"` Type string `json:"type,omitempty"` Uuid string `json:"uuid,omitempty"`