本文整理匯總了Golang中github.com/openshift/origin/pkg/oauth/api.ScopeRestriction類的典型用法代碼示例。如果您正苦於以下問題:Golang ScopeRestriction類的具體用法?Golang ScopeRestriction怎麽用?Golang ScopeRestriction使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ScopeRestriction類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction
func autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction(in *ScopeRestriction, out *oauth_api.ScopeRestriction, s conversion.Scope) error {
if in.ExactValues != nil {
in, out := &in.ExactValues, &out.ExactValues
*out = make([]string, len(*in))
copy(*out, *in)
} else {
out.ExactValues = nil
}
if in.ClusterRole != nil {
in, out := &in.ClusterRole, &out.ClusterRole
*out = new(oauth_api.ClusterRoleScopeRestriction)
if err := Convert_v1_ClusterRoleScopeRestriction_To_api_ClusterRoleScopeRestriction(*in, *out, s); err != nil {
return err
}
} else {
out.ClusterRole = nil
}
return nil
}
示例2: autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction
func autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction(in *ScopeRestriction, out *oauth_api.ScopeRestriction, s conversion.Scope) error {
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found {
defaulting.(func(*ScopeRestriction))(in)
}
if in.ExactValues != nil {
in, out := &in.ExactValues, &out.ExactValues
*out = make([]string, len(*in))
copy(*out, *in)
} else {
out.ExactValues = nil
}
if in.ClusterRole != nil {
in, out := &in.ClusterRole, &out.ClusterRole
*out = new(oauth_api.ClusterRoleScopeRestriction)
if err := Convert_v1_ClusterRoleScopeRestriction_To_api_ClusterRoleScopeRestriction(*in, *out, s); err != nil {
return err
}
} else {
out.ClusterRole = nil
}
return nil
}
示例3: autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction
func autoConvert_v1_ScopeRestriction_To_api_ScopeRestriction(in *ScopeRestriction, out *api.ScopeRestriction, s conversion.Scope) error {
out.ExactValues = *(*[]string)(unsafe.Pointer(&in.ExactValues))
out.ClusterRole = (*api.ClusterRoleScopeRestriction)(unsafe.Pointer(in.ClusterRole))
return nil
}