Remove unused file

This commit is contained in:
Eliise S 2020-02-14 15:24:39 +00:00
parent 1e2d9428c4
commit c4ff38ed31
2 changed files with 0 additions and 28 deletions

View File

@ -195,23 +195,6 @@ func (in *GroupsCreateResponse) DeepCopy() *GroupsCreateResponse {
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InstancePoolsAPI) DeepCopyInto(out *InstancePoolsAPI) {
*out = *in
in.Client.DeepCopyInto(&out.Client)
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InstancePoolsAPI.
func (in *InstancePoolsAPI) DeepCopy() *InstancePoolsAPI {
if in == nil {
return nil
}
out := new(InstancePoolsAPI)
in.DeepCopyInto(out)
return out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (in *InstanceProfilesAPI) DeepCopyInto(out *InstanceProfilesAPI) {
*out = *in

View File

@ -1,11 +0,0 @@
package aws
// InstancePoolsAPI exposes the InstancePools API
type InstancePoolsAPI struct {
Client DBClient
}
func (a InstancePoolsAPI) init(client DBClient) InstancePoolsAPI {
a.Client = client
return a
}