Add new internal upload target for Google Cloud Platform and osbuild-upload-gcp CLI tool which uses the API. Supported features are: - Authenticate with GCP using explicitly provided JSON credentials file or let the authentication be handled automatically by the Google cloud client library. The later is useful e.g. when the worker is running in GCP VM instance, which has associated permissions with it. - Upload an existing image file into existing Storage bucket. - Verify MD5 checksum of the uploaded image file against the local file's checksum. - Import the uploaded image file into Compute Node as an Image. - Delete the uploaded image file after a successful image import. - Delete all cache files from storage created as part of the image import build job. - Share the imported image with a list of specified accounts. GCP-specific image type is not yet added, since GCP supports importing VMDK and VHD images, which the osbuild-composer already supports. Update go.mod, vendor/ content and SPEC file with new dependencies. Signed-off-by: Tomas Hozza <thozza@redhat.com>
43 lines
1,018 B
Go
43 lines
1,018 B
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proto
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// Reset clears every field in the message.
|
|
// The resulting message shares no observable memory with its previous state
|
|
// other than the memory for the message itself.
|
|
func Reset(m Message) {
|
|
if mr, ok := m.(interface{ Reset() }); ok && hasProtoMethods {
|
|
mr.Reset()
|
|
return
|
|
}
|
|
resetMessage(m.ProtoReflect())
|
|
}
|
|
|
|
func resetMessage(m protoreflect.Message) {
|
|
if !m.IsValid() {
|
|
panic(fmt.Sprintf("cannot reset invalid %v message", m.Descriptor().FullName()))
|
|
}
|
|
|
|
// Clear all known fields.
|
|
fds := m.Descriptor().Fields()
|
|
for i := 0; i < fds.Len(); i++ {
|
|
m.Clear(fds.Get(i))
|
|
}
|
|
|
|
// Clear extension fields.
|
|
m.Range(func(fd protoreflect.FieldDescriptor, _ protoreflect.Value) bool {
|
|
m.Clear(fd)
|
|
return true
|
|
})
|
|
|
|
// Clear unknown fields.
|
|
m.SetUnknown(nil)
|
|
}
|