You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/storage/storagebucketcredential/options.go

46 lines
885 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package storagebucketcredential
import "google.golang.org/protobuf/types/known/structpb"
// GetOpts - iterate the inbound Options and return a struct
func GetOpts(opt ...Option) options {
opts := getDefaultOptions()
for _, o := range opt {
o(&opts)
}
return opts
}
// Option - how Options are passed as arguments
type Option func(*options)
// options = how options are represented
type options struct {
WithSecret *structpb.Struct
WithKeyId string
}
func getDefaultOptions() options {
return options{
WithSecret: nil,
WithKeyId: "",
}
}
// WithSecret provides an optional secret
func WithSecret(s *structpb.Struct) Option {
return func(o *options) {
o.WithSecret = s
}
}
// WithKeyId provides an key id
func WithKeyId(s string) Option {
return func(o *options) {
o.WithKeyId = s
}
}