mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
83559144b1
updated kubernetes packages to latest release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
13 lines
290 B
Go
13 lines
290 B
Go
package aws
|
|
|
|
// JSONValue is a representation of a grab bag type that will be marshaled
|
|
// into a json string. This type can be used just like any other map.
|
|
//
|
|
// Example:
|
|
//
|
|
// values := aws.JSONValue{
|
|
// "Foo": "Bar",
|
|
// }
|
|
// values["Baz"] = "Qux"
|
|
type JSONValue map[string]interface{}
|