mirror of
https://github.com/rancher/types.git
synced 2025-08-01 21:07:41 +00:00
Generated changes - saml/ping
This commit is contained in:
parent
aa93cb066d
commit
75cb49e5ed
File diff suppressed because it is too large
Load Diff
@ -291,3 +291,71 @@ func (in *OpenLdapProvider) DeepCopyObject() runtime.Object {
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *PingProvider) DeepCopyInto(out *PingProvider) {
|
||||
*out = *in
|
||||
in.SamlProvider.DeepCopyInto(&out.SamlProvider)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PingProvider.
|
||||
func (in *PingProvider) DeepCopy() *PingProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(PingProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *PingProvider) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *SamlLogin) DeepCopyInto(out *SamlLogin) {
|
||||
*out = *in
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlLogin.
|
||||
func (in *SamlLogin) DeepCopy() *SamlLogin {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(SamlLogin)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *SamlProvider) DeepCopyInto(out *SamlProvider) {
|
||||
*out = *in
|
||||
out.TypeMeta = in.TypeMeta
|
||||
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
||||
in.AuthProvider.DeepCopyInto(&out.AuthProvider)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SamlProvider.
|
||||
func (in *SamlProvider) DeepCopy() *SamlProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(SamlProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *SamlProvider) DeepCopyObject() runtime.Object {
|
||||
if c := in.DeepCopy(); c != nil {
|
||||
return c
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -1,56 +1,48 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
PingConfigType = "pingConfig"
|
||||
PingConfigFieldAccessMode = "accessMode"
|
||||
PingConfigFieldAllowedPrincipalIDs = "allowedPrincipalIds"
|
||||
PingConfigFieldAnnotations = "annotations"
|
||||
PingConfigFieldCreated = "created"
|
||||
PingConfigFieldCreatorID = "creatorId"
|
||||
PingConfigFieldDisplayNameField = "displayNameField"
|
||||
PingConfigFieldEnabled = "enabled"
|
||||
PingConfigFieldGroupsField = "groupsField"
|
||||
PingConfigFieldIDPMetadataContent = "idpMetadataContent"
|
||||
PingConfigFieldIDPMetadataFilePath = "idpMetadataFilePath"
|
||||
PingConfigFieldIDPMetadataURL = "idpMetadataUrl"
|
||||
PingConfigFieldLabels = "labels"
|
||||
PingConfigFieldName = "name"
|
||||
PingConfigFieldOwnerReferences = "ownerReferences"
|
||||
PingConfigFieldRancherAPIHost = "rancherApiHost"
|
||||
PingConfigFieldRemoved = "removed"
|
||||
PingConfigFieldSPSelfSignedCert = "spCert"
|
||||
PingConfigFieldSPSelfSignedCertFilePath = "spSelfSignedCertFilePath"
|
||||
PingConfigFieldSPSelfSignedKey = "spKey"
|
||||
PingConfigFieldSPSelfSignedKeyFilePath = "spSelfSignedKeyFilePath"
|
||||
PingConfigFieldType = "type"
|
||||
PingConfigFieldUIDField = "uidField"
|
||||
PingConfigFieldUserNameField = "userNameField"
|
||||
PingConfigFieldUuid = "uuid"
|
||||
PingConfigType = "pingConfig"
|
||||
PingConfigFieldAccessMode = "accessMode"
|
||||
PingConfigFieldAllowedPrincipalIDs = "allowedPrincipalIds"
|
||||
PingConfigFieldAnnotations = "annotations"
|
||||
PingConfigFieldCreated = "created"
|
||||
PingConfigFieldCreatorID = "creatorId"
|
||||
PingConfigFieldDisplayNameField = "displayNameField"
|
||||
PingConfigFieldEnabled = "enabled"
|
||||
PingConfigFieldGroupsField = "groupsField"
|
||||
PingConfigFieldIDPMetadataContent = "idpMetadataContent"
|
||||
PingConfigFieldLabels = "labels"
|
||||
PingConfigFieldName = "name"
|
||||
PingConfigFieldOwnerReferences = "ownerReferences"
|
||||
PingConfigFieldRancherAPIHost = "rancherApiHost"
|
||||
PingConfigFieldRemoved = "removed"
|
||||
PingConfigFieldSPSelfSignedCert = "spCert"
|
||||
PingConfigFieldSPSelfSignedKey = "spKey"
|
||||
PingConfigFieldType = "type"
|
||||
PingConfigFieldUIDField = "uidField"
|
||||
PingConfigFieldUserNameField = "userNameField"
|
||||
PingConfigFieldUuid = "uuid"
|
||||
)
|
||||
|
||||
type PingConfig struct {
|
||||
AccessMode string `json:"accessMode,omitempty" yaml:"accessMode,omitempty"`
|
||||
AllowedPrincipalIDs []string `json:"allowedPrincipalIds,omitempty" yaml:"allowedPrincipalIds,omitempty"`
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
DisplayNameField string `json:"displayNameField,omitempty" yaml:"displayNameField,omitempty"`
|
||||
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
|
||||
GroupsField string `json:"groupsField,omitempty" yaml:"groupsField,omitempty"`
|
||||
IDPMetadataContent string `json:"idpMetadataContent,omitempty" yaml:"idpMetadataContent,omitempty"`
|
||||
IDPMetadataFilePath string `json:"idpMetadataFilePath,omitempty" yaml:"idpMetadataFilePath,omitempty"`
|
||||
IDPMetadataURL string `json:"idpMetadataUrl,omitempty" yaml:"idpMetadataUrl,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
RancherAPIHost string `json:"rancherApiHost,omitempty" yaml:"rancherApiHost,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
SPSelfSignedCert string `json:"spCert,omitempty" yaml:"spCert,omitempty"`
|
||||
SPSelfSignedCertFilePath string `json:"spSelfSignedCertFilePath,omitempty" yaml:"spSelfSignedCertFilePath,omitempty"`
|
||||
SPSelfSignedKey string `json:"spKey,omitempty" yaml:"spKey,omitempty"`
|
||||
SPSelfSignedKeyFilePath string `json:"spSelfSignedKeyFilePath,omitempty" yaml:"spSelfSignedKeyFilePath,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UIDField string `json:"uidField,omitempty" yaml:"uidField,omitempty"`
|
||||
UserNameField string `json:"userNameField,omitempty" yaml:"userNameField,omitempty"`
|
||||
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
AccessMode string `json:"accessMode,omitempty" yaml:"accessMode,omitempty"`
|
||||
AllowedPrincipalIDs []string `json:"allowedPrincipalIds,omitempty" yaml:"allowedPrincipalIds,omitempty"`
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
DisplayNameField string `json:"displayNameField,omitempty" yaml:"displayNameField,omitempty"`
|
||||
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
|
||||
GroupsField string `json:"groupsField,omitempty" yaml:"groupsField,omitempty"`
|
||||
IDPMetadataContent string `json:"idpMetadataContent,omitempty" yaml:"idpMetadataContent,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
RancherAPIHost string `json:"rancherApiHost,omitempty" yaml:"rancherApiHost,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
SPSelfSignedCert string `json:"spCert,omitempty" yaml:"spCert,omitempty"`
|
||||
SPSelfSignedKey string `json:"spKey,omitempty" yaml:"spKey,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
UIDField string `json:"uidField,omitempty" yaml:"uidField,omitempty"`
|
||||
UserNameField string `json:"userNameField,omitempty" yaml:"userNameField,omitempty"`
|
||||
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
||||
|
10
client/management/v3/zz_generated_saml_config_test_input.go
Normal file
10
client/management/v3/zz_generated_saml_config_test_input.go
Normal file
@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlConfigTestInputType = "samlConfigTestInput"
|
||||
SamlConfigTestInputFieldFinalRedirectURL = "finalRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlConfigTestInput struct {
|
||||
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
|
||||
}
|
28
client/management/v3public/zz_generated_ping_provider.go
Normal file
28
client/management/v3public/zz_generated_ping_provider.go
Normal file
@ -0,0 +1,28 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
PingProviderType = "pingProvider"
|
||||
PingProviderFieldAnnotations = "annotations"
|
||||
PingProviderFieldCreated = "created"
|
||||
PingProviderFieldCreatorID = "creatorId"
|
||||
PingProviderFieldLabels = "labels"
|
||||
PingProviderFieldName = "name"
|
||||
PingProviderFieldOwnerReferences = "ownerReferences"
|
||||
PingProviderFieldRedirectURL = "redirectUrl"
|
||||
PingProviderFieldRemoved = "removed"
|
||||
PingProviderFieldType = "type"
|
||||
PingProviderFieldUuid = "uuid"
|
||||
)
|
||||
|
||||
type PingProvider struct {
|
||||
Annotations map[string]string `json:"annotations,omitempty" yaml:"annotations,omitempty"`
|
||||
Created string `json:"created,omitempty" yaml:"created,omitempty"`
|
||||
CreatorID string `json:"creatorId,omitempty" yaml:"creatorId,omitempty"`
|
||||
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
|
||||
Name string `json:"name,omitempty" yaml:"name,omitempty"`
|
||||
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
|
||||
RedirectURL string `json:"redirectUrl,omitempty" yaml:"redirectUrl,omitempty"`
|
||||
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
|
||||
Type string `json:"type,omitempty" yaml:"type,omitempty"`
|
||||
Uuid string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
}
|
10
client/management/v3public/zz_generated_saml_login.go
Normal file
10
client/management/v3public/zz_generated_saml_login.go
Normal file
@ -0,0 +1,10 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
SamlLoginType = "samlLogin"
|
||||
SamlLoginFieldFinalRedirectURL = "finalRedirectUrl"
|
||||
)
|
||||
|
||||
type SamlLogin struct {
|
||||
FinalRedirectURL string `json:"finalRedirectUrl,omitempty" yaml:"finalRedirectUrl,omitempty"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user