Fix code/doc generators and deepgen code (#2353)

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
This commit is contained in:
Sanket Sudake
2022-02-12 12:04:08 +05:30
committed by GitHub
parent 4f8a60b498
commit 8110f9ac13
5 changed files with 51 additions and 7 deletions
+32
View File
@@ -47,6 +47,22 @@ func (in *Archive) DeepCopy() *Archive {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *AuthLogin) DeepCopyInto(out *AuthLogin) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthLogin.
func (in *AuthLogin) DeepCopy() *AuthLogin {
if in == nil {
return nil
}
out := new(AuthLogin)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Builder) DeepCopyInto(out *Builder) {
*out = *in
@@ -883,6 +899,22 @@ func (in *PackageStatus) DeepCopy() *PackageStatus {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *RouterAuthToken) DeepCopyInto(out *RouterAuthToken) {
*out = *in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterAuthToken.
func (in *RouterAuthToken) DeepCopy() *RouterAuthToken {
if in == nil {
return nil
}
out := new(RouterAuthToken)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *Runtime) DeepCopyInto(out *Runtime) {
*out = *in
@@ -22,6 +22,14 @@ func (Archive) SwaggerDoc() map[string]string {
return map_Archive
}
var map_AuthLogin = map[string]string{
"": "AuthLogin defines the body for router login",
}
func (AuthLogin) SwaggerDoc() map[string]string {
return map_AuthLogin
}
var map_Builder = map[string]string{
"": "Builder is the setting for environment builder.",
"image": "Image for containing the language compilation environment.",
@@ -370,6 +378,14 @@ func (PackageStatus) SwaggerDoc() map[string]string {
return map_PackageStatus
}
var map_RouterAuthToken = map[string]string{
"": "RouterAuthToken defines the authorization token for accessing router",
}
func (RouterAuthToken) SwaggerDoc() map[string]string {
return map_RouterAuthToken
}
var map_Runtime = map[string]string{
"": "Runtime is the setting for environment runtime.",
"image": "Image for containing the language runtime.",