2020-08-13 19:19:16 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package apihelper
|
|
|
|
|
|
|
|
import (
|
2021-02-10 10:49:23 +00:00
|
|
|
"path"
|
2020-08-13 19:19:16 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// JsonPatch is a json marshaling helper used for patching API objects
|
|
|
|
type JsonPatch struct {
|
|
|
|
Op string `json:"op"`
|
|
|
|
Path string `json:"path"`
|
|
|
|
Value string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewJsonPatch returns a new JsonPatch object
|
2021-02-10 10:49:23 +00:00
|
|
|
func NewJsonPatch(verb string, jsonpath string, key string, value string) JsonPatch {
|
|
|
|
return JsonPatch{verb, path.Join(jsonpath, strings.ReplaceAll(key, "/", "~1")), value}
|
2020-08-13 19:19:16 +00:00
|
|
|
}
|