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:
parent
5eb3931b41
commit
a3a682e811
@ -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
|
||||
|
@ -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
|
||||
}
|
||||
|
10
client/management/v3/zz_generated_saml_config_test_output.go
Normal file
10
client/management/v3/zz_generated_saml_config_test_output.go
Normal file
@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlConfigTestOutputType = "samlConfigTestOutput"
|
||||
SamlConfigTestOutputFieldIdpRedirectURL = "idpRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlConfigTestOutput struct {
|
||||
IdpRedirectURL string `json:"idpRedirectUrl,omitempty" yaml:"idpRedirectUrl,omitempty"`
|
||||
}
|
@ -1,10 +0,0 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlLoginType = "samlLogin"
|
||||
SamlLoginFieldFinalRedirectURL = "finalRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlLogin struct {
|
||||
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
|
||||
}
|
10
client/management/v3public/zz_generated_saml_login_input.go
Normal file
10
client/management/v3public/zz_generated_saml_login_input.go
Normal file
@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlLoginInputType = "samlLoginInput"
|
||||
SamlLoginInputFieldFinalRedirectURL = "finalRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlLoginInput struct {
|
||||
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
|
||||
}
|
10
client/management/v3public/zz_generated_saml_login_output.go
Normal file
10
client/management/v3public/zz_generated_saml_login_output.go
Normal file
@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlLoginOutputType = "samlLoginOutput"
|
||||
SamlLoginOutputFieldIdpRedirectURL = "idpRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlLoginOutput struct {
|
||||
IdpRedirectURL string `json:"idpRedirectUrl,omitempty" yaml:"idpRedirectUrl,omitempty"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user