github.com/diafour/helm@v3.0.0-beta.3+incompatible/internal/experimental/registry/client_opts.go (about) 1 /* 2 Copyright The Helm Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package registry // import "helm.sh/helm/internal/experimental/registry" 18 19 import ( 20 "io" 21 ) 22 23 type ( 24 // ClientOption allows specifying various settings configurable by the user for overriding the defaults 25 // used when creating a new default client 26 ClientOption func(*Client) 27 ) 28 29 // ClientOptDebug returns a function that sets the debug setting on client options set 30 func ClientOptDebug(debug bool) ClientOption { 31 return func(client *Client) { 32 client.debug = debug 33 } 34 } 35 36 // ClientOptWriter returns a function that sets the writer setting on client options set 37 func ClientOptWriter(out io.Writer) ClientOption { 38 return func(client *Client) { 39 client.out = out 40 } 41 } 42 43 // ClientOptResolver returns a function that sets the resolver setting on client options set 44 func ClientOptResolver(resolver *Resolver) ClientOption { 45 return func(client *Client) { 46 client.resolver = resolver 47 } 48 } 49 50 // ClientOptAuthorizer returns a function that sets the authorizer setting on client options set 51 func ClientOptAuthorizer(authorizer *Authorizer) ClientOption { 52 return func(client *Client) { 53 client.authorizer = authorizer 54 } 55 } 56 57 // ClientOptCache returns a function that sets the cache setting on a client options set 58 func ClientOptCache(cache *Cache) ClientOption { 59 return func(client *Client) { 60 client.cache = cache 61 } 62 }