package awsutil

import "k8s.io/kubernetes/Godeps/_workspace/src/github.com/aws/aws-sdk-go/aws/awsutil"

Index

Functions

func Copy

func Copy(dst, src interface{})

Copy deeply copies a src structure to dst. Useful for copying request and response structures.

Can copy between structs of different type, but will only copy fields which are assignable, and exist in both structs. Fields which are not assignable, or do not exist in both structs are ignored.

func CopyOf

func CopyOf(src interface{}) (dst interface{})

CopyOf returns a copy of src while also allocating the memory for dst. src must be a pointer type or this operation will fail.

func Prettify

func Prettify(i interface{}) string

Prettify returns the string representation of a value.

func SetValueAtAnyPath

func SetValueAtAnyPath(i interface{}, path string, v interface{})

SetValueAtAnyPath sets an object at the case insensitive lexical path inside of a structure

func SetValueAtPath

func SetValueAtPath(i interface{}, path string, v interface{})

SetValueAtPath sets an object at the lexical path inside of a structure

func ValuesAtAnyPath

func ValuesAtAnyPath(i interface{}, path string) []interface{}

ValuesAtAnyPath returns a list of objects at the case-insensitive lexical path inside of a structure

func ValuesAtPath

func ValuesAtPath(i interface{}, path string) []interface{}

ValuesAtPath returns a list of objects at the lexical path inside of a structure

Source Files

copy.go path_value.go prettify.go

Version
v1.1.4-beta.0
Published
Dec 7, 2015
Platform
js/wasm
Imports
7 packages
Last checked
3 seconds ago

Tools for package owners.