1
0
mirror of https://github.com/rancher/types.git synced 2025-06-27 05:56:50 +00:00

Generated changes - Ping-saml test and login output

This commit is contained in:
rajashree 2018-07-20 12:17:06 -07:00 committed by Alena Prokharchyk
parent 5eb3931b41
commit a3a682e811
6 changed files with 66 additions and 14 deletions

View File

@ -5713,6 +5713,22 @@ func (in *SamlConfigTestInput) DeepCopy() *SamlConfigTestInput {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SamlConfigTestOutput) DeepCopyInto(out *SamlConfigTestOutput) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlConfigTestOutput.
func (in *SamlConfigTestOutput) DeepCopy() *SamlConfigTestOutput {
if in == nil {
return nil
}
out := new(SamlConfigTestOutput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SchedulerService) DeepCopyInto(out *SchedulerService) {
*out = *in

View File

@ -318,17 +318,33 @@ func (in *PingProvider) DeepCopyObject() runtime.Object {
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SamlLogin) DeepCopyInto(out *SamlLogin) {
func (in *SamlLoginInput) DeepCopyInto(out *SamlLoginInput) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlLogin.
func (in *SamlLogin) DeepCopy() *SamlLogin {
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlLoginInput.
func (in *SamlLoginInput) DeepCopy() *SamlLoginInput {
if in == nil {
return nil
}
out := new(SamlLogin)
out := new(SamlLoginInput)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *SamlLoginOutput) DeepCopyInto(out *SamlLoginOutput) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlLoginOutput.
func (in *SamlLoginOutput) DeepCopy() *SamlLoginOutput {
if in == nil {
return nil
}
out := new(SamlLoginOutput)
in.DeepCopyInto(out)
return out
}

View File

@ -0,0 +1,10 @@
package client
const (
SamlConfigTestOutputType = "samlConfigTestOutput"
SamlConfigTestOutputFieldIdpRedirectURL = "idpRedirectUrl"
)
type SamlConfigTestOutput struct {
IdpRedirectURL string `json:"idpRedirectUrl,omitempty" yaml:"idpRedirectUrl,omitempty"`
}

View File

@ -1,10 +0,0 @@
package client
const (
SamlLoginType = "samlLogin"
SamlLoginFieldFinalRedirectURL = "finalRedirectUrl"
)
type SamlLogin struct {
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
}

View File

@ -0,0 +1,10 @@
package client
const (
SamlLoginInputType = "samlLoginInput"
SamlLoginInputFieldFinalRedirectURL = "finalRedirectUrl"
)
type SamlLoginInput struct {
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
}

View File

@ -0,0 +1,10 @@
package client
const (
SamlLoginOutputType = "samlLoginOutput"
SamlLoginOutputFieldIdpRedirectURL = "idpRedirectUrl"
)
type SamlLoginOutput struct {
IdpRedirectURL string `json:"idpRedirectUrl,omitempty" yaml:"idpRedirectUrl,omitempty"`
}