mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-01 07:47:56 +00:00
Bumping version to include changes that better handle TLS errors. Bump nescessary to prepare for when the version of Go is bumped to 1.20 Signed-off-by: Madhav Jivrajani <madhav.jiv@gmail.com>
92 lines
2.2 KiB
Go
92 lines
2.2 KiB
Go
/*
|
|
Copyright (c) 2015 VMware, Inc. All Rights Reserved.
|
|
|
|
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.
|
|
*/
|
|
|
|
package history
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/vmware/govmomi/property"
|
|
"github.com/vmware/govmomi/vim25"
|
|
"github.com/vmware/govmomi/vim25/methods"
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
)
|
|
|
|
type Collector struct {
|
|
r types.ManagedObjectReference
|
|
c *vim25.Client
|
|
}
|
|
|
|
func NewCollector(c *vim25.Client, ref types.ManagedObjectReference) *Collector {
|
|
return &Collector{
|
|
r: ref,
|
|
c: c,
|
|
}
|
|
}
|
|
|
|
// Reference returns the managed object reference of this collector
|
|
func (c Collector) Reference() types.ManagedObjectReference {
|
|
return c.r
|
|
}
|
|
|
|
// Client returns the vim25 client used by this collector
|
|
func (c Collector) Client() *vim25.Client {
|
|
return c.c
|
|
}
|
|
|
|
// Properties wraps property.DefaultCollector().RetrieveOne() and returns
|
|
// properties for the specified managed object reference
|
|
func (c Collector) Properties(ctx context.Context, r types.ManagedObjectReference, ps []string, dst interface{}) error {
|
|
return property.DefaultCollector(c.c).RetrieveOne(ctx, r, ps, dst)
|
|
}
|
|
|
|
func (c Collector) Destroy(ctx context.Context) error {
|
|
req := types.DestroyCollector{
|
|
This: c.r,
|
|
}
|
|
|
|
_, err := methods.DestroyCollector(ctx, c.c, &req)
|
|
return err
|
|
}
|
|
|
|
func (c Collector) Reset(ctx context.Context) error {
|
|
req := types.ResetCollector{
|
|
This: c.r,
|
|
}
|
|
|
|
_, err := methods.ResetCollector(ctx, c.c, &req)
|
|
return err
|
|
}
|
|
|
|
func (c Collector) Rewind(ctx context.Context) error {
|
|
req := types.RewindCollector{
|
|
This: c.r,
|
|
}
|
|
|
|
_, err := methods.RewindCollector(ctx, c.c, &req)
|
|
return err
|
|
}
|
|
|
|
func (c Collector) SetPageSize(ctx context.Context, maxCount int32) error {
|
|
req := types.SetCollectorPageSize{
|
|
This: c.r,
|
|
MaxCount: maxCount,
|
|
}
|
|
|
|
_, err := methods.SetCollectorPageSize(ctx, c.c, &req)
|
|
return err
|
|
}
|