mirror of
https://github.com/rancher/types.git
synced 2025-08-30 01:22:42 +00:00
Generated changes - ADFS
This commit is contained in:
parent
a4d5b65545
commit
9898f6e9aa
@ -7,6 +7,31 @@ import (
|
||||
version "k8s.io/apimachinery/pkg/version"
|
||||
)
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ADFSConfig) DeepCopyInto(out *ADFSConfig) {
|
||||
*out = *in
|
||||
in.SamlConfig.DeepCopyInto(&out.SamlConfig)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ADFSConfig.
|
||||
func (in *ADFSConfig) DeepCopy() *ADFSConfig {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ADFSConfig)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *ADFSConfig) 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 *AWSCloudProvider) DeepCopyInto(out *AWSCloudProvider) {
|
||||
*out = *in
|
||||
|
@ -4,6 +4,31 @@ import (
|
||||
runtime "k8s.io/apimachinery/pkg/runtime"
|
||||
)
|
||||
|
||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||
func (in *ADFSProvider) DeepCopyInto(out *ADFSProvider) {
|
||||
*out = *in
|
||||
in.SamlProvider.DeepCopyInto(&out.SamlProvider)
|
||||
return
|
||||
}
|
||||
|
||||
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ADFSProvider.
|
||||
func (in *ADFSProvider) DeepCopy() *ADFSProvider {
|
||||
if in == nil {
|
||||
return nil
|
||||
}
|
||||
out := new(ADFSProvider)
|
||||
in.DeepCopyInto(out)
|
||||
return out
|
||||
}
|
||||
|
||||
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
||||
func (in *ADFSProvider) 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 *ActiveDirectoryProvider) DeepCopyInto(out *ActiveDirectoryProvider) {
|
||||
*out = *in
|
||||
|
48
client/management/v3/zz_generated_adfs_config.go
Normal file
48
client/management/v3/zz_generated_adfs_config.go
Normal file
@ -0,0 +1,48 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
ADFSConfigType = "adfsConfig"
|
||||
ADFSConfigFieldAccessMode = "accessMode"
|
||||
ADFSConfigFieldAllowedPrincipalIDs = "allowedPrincipalIds"
|
||||
ADFSConfigFieldAnnotations = "annotations"
|
||||
ADFSConfigFieldCreated = "created"
|
||||
ADFSConfigFieldCreatorID = "creatorId"
|
||||
ADFSConfigFieldDisplayNameField = "displayNameField"
|
||||
ADFSConfigFieldEnabled = "enabled"
|
||||
ADFSConfigFieldGroupsField = "groupsField"
|
||||
ADFSConfigFieldIDPMetadataContent = "idpMetadataContent"
|
||||
ADFSConfigFieldLabels = "labels"
|
||||
ADFSConfigFieldName = "name"
|
||||
ADFSConfigFieldOwnerReferences = "ownerReferences"
|
||||
ADFSConfigFieldRancherAPIHost = "rancherApiHost"
|
||||
ADFSConfigFieldRemoved = "removed"
|
||||
ADFSConfigFieldSPSelfSignedCert = "spCert"
|
||||
ADFSConfigFieldSPSelfSignedKey = "spKey"
|
||||
ADFSConfigFieldType = "type"
|
||||
ADFSConfigFieldUIDField = "uidField"
|
||||
ADFSConfigFieldUUID = "uuid"
|
||||
ADFSConfigFieldUserNameField = "userNameField"
|
||||
)
|
||||
|
||||
type ADFSConfig 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"`
|
||||
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"`
|
||||
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
|
||||
UserNameField string `json:"userNameField,omitempty" yaml:"userNameField,omitempty"`
|
||||
}
|
28
client/management/v3public/zz_generated_adfs_provider.go
Normal file
28
client/management/v3public/zz_generated_adfs_provider.go
Normal file
@ -0,0 +1,28 @@
|
||||
package client
|
||||
|
||||
const (
|
||||
ADFSProviderType = "adfsProvider"
|
||||
ADFSProviderFieldAnnotations = "annotations"
|
||||
ADFSProviderFieldCreated = "created"
|
||||
ADFSProviderFieldCreatorID = "creatorId"
|
||||
ADFSProviderFieldLabels = "labels"
|
||||
ADFSProviderFieldName = "name"
|
||||
ADFSProviderFieldOwnerReferences = "ownerReferences"
|
||||
ADFSProviderFieldRedirectURL = "redirectUrl"
|
||||
ADFSProviderFieldRemoved = "removed"
|
||||
ADFSProviderFieldType = "type"
|
||||
ADFSProviderFieldUUID = "uuid"
|
||||
)
|
||||
|
||||
type ADFSProvider 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"`
|
||||
}
|
Loading…
Reference in New Issue
Block a user