mirror of https://github.com/kubernetes/kops.git
SecurityGroupRule boilerplate is not automatically generated
This commit is contained in:
parent
63cb1a16ab
commit
b9b9bce43d
|
|
@ -26,7 +26,6 @@ go_library(
|
||||||
"securitygroup.go",
|
"securitygroup.go",
|
||||||
"securitygroup_fitask.go",
|
"securitygroup_fitask.go",
|
||||||
"securitygrouprule.go",
|
"securitygrouprule.go",
|
||||||
"securitygrouprule_fitask.go",
|
|
||||||
"servergroup.go",
|
"servergroup.go",
|
||||||
"servergroup_fitask.go",
|
"servergroup_fitask.go",
|
||||||
"sshkey.go",
|
"sshkey.go",
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,7 @@ limitations under the License.
|
||||||
package openstacktasks
|
package openstacktasks
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
sgr "github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/rules"
|
sgr "github.com/gophercloud/gophercloud/openstack/networking/v2/extensions/security/rules"
|
||||||
|
|
@ -175,3 +176,52 @@ func (_ *SecurityGroupRule) RenderOpenstack(t *openstack.OpenstackAPITarget, a,
|
||||||
klog.V(2).Infof("Openstack task SecurityGroupRule::RenderOpenstack did nothing")
|
klog.V(2).Infof("Openstack task SecurityGroupRule::RenderOpenstack did nothing")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JSON marshalling boilerplate
|
||||||
|
type realSecurityGroupRule SecurityGroupRule
|
||||||
|
|
||||||
|
// UnmarshalJSON implements conversion to JSON, supporting an alternate specification of the object as a string
|
||||||
|
func (o *SecurityGroupRule) UnmarshalJSON(data []byte) error {
|
||||||
|
var jsonName string
|
||||||
|
if err := json.Unmarshal(data, &jsonName); err == nil {
|
||||||
|
o.ID = &jsonName
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var r realSecurityGroupRule
|
||||||
|
if err := json.Unmarshal(data, &r); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
*o = SecurityGroupRule(r)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ fi.HasLifecycle = &SecurityGroupRule{}
|
||||||
|
|
||||||
|
// GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
|
||||||
|
func (o *SecurityGroupRule) GetLifecycle() *fi.Lifecycle {
|
||||||
|
return o.Lifecycle
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
|
||||||
|
func (o *SecurityGroupRule) SetLifecycle(lifecycle fi.Lifecycle) {
|
||||||
|
o.Lifecycle = &lifecycle
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ fi.HasLifecycle = &SecurityGroupRule{}
|
||||||
|
|
||||||
|
// GetName returns the Name of the object, implementing fi.HasName
|
||||||
|
func (o *SecurityGroupRule) GetName() *string {
|
||||||
|
name := o.String()
|
||||||
|
return &name
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetName sets the Name of the object, implementing fi.SetName
|
||||||
|
func (o *SecurityGroupRule) SetName(name string) {
|
||||||
|
// o.ID = &name
|
||||||
|
}
|
||||||
|
|
||||||
|
// String is the stringer function for the task, producing readable output using fi.TaskAsString
|
||||||
|
func (o *SecurityGroupRule) String() string {
|
||||||
|
return fi.TaskAsString(o)
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,76 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright 2019 The Kubernetes Authors.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Code generated by ""fitask" -type=SecurityGroup"; DO NOT EDIT
|
|
||||||
|
|
||||||
package openstacktasks
|
|
||||||
|
|
||||||
import (
|
|
||||||
"encoding/json"
|
|
||||||
|
|
||||||
"k8s.io/kops/upup/pkg/fi"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SecurityGroup
|
|
||||||
|
|
||||||
// JSON marshalling boilerplate
|
|
||||||
type realSecurityGroupRule SecurityGroupRule
|
|
||||||
|
|
||||||
// UnmarshalJSON implements conversion to JSON, supporting an alternate specification of the object as a string
|
|
||||||
func (o *SecurityGroupRule) UnmarshalJSON(data []byte) error {
|
|
||||||
var jsonName string
|
|
||||||
if err := json.Unmarshal(data, &jsonName); err == nil {
|
|
||||||
o.ID = &jsonName
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var r realSecurityGroupRule
|
|
||||||
if err := json.Unmarshal(data, &r); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
*o = SecurityGroupRule(r)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ fi.HasLifecycle = &SecurityGroup{}
|
|
||||||
|
|
||||||
// GetLifecycle returns the Lifecycle of the object, implementing fi.HasLifecycle
|
|
||||||
func (o *SecurityGroupRule) GetLifecycle() *fi.Lifecycle {
|
|
||||||
return o.Lifecycle
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetLifecycle sets the Lifecycle of the object, implementing fi.SetLifecycle
|
|
||||||
func (o *SecurityGroupRule) SetLifecycle(lifecycle fi.Lifecycle) {
|
|
||||||
o.Lifecycle = &lifecycle
|
|
||||||
}
|
|
||||||
|
|
||||||
var _ fi.HasLifecycle = &SecurityGroupRule{}
|
|
||||||
|
|
||||||
// GetName returns the Name of the object, implementing fi.HasName
|
|
||||||
func (o *SecurityGroupRule) GetName() *string {
|
|
||||||
name := o.String()
|
|
||||||
return &name
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetName sets the Name of the object, implementing fi.SetName
|
|
||||||
func (o *SecurityGroupRule) SetName(name string) {
|
|
||||||
// o.ID = &name
|
|
||||||
}
|
|
||||||
|
|
||||||
// String is the stringer function for the task, producing readable output using fi.TaskAsString
|
|
||||||
func (o *SecurityGroupRule) String() string {
|
|
||||||
return fi.TaskAsString(o)
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue