mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 18:06:55 +00:00
84 lines
3.5 KiB
Go
84 lines
3.5 KiB
Go
/*
|
|
Copyright 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.
|
|
*/
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
v1 "github.com/kyverno/kyverno/api/kyverno/v1"
|
|
)
|
|
|
|
// APICallApplyConfiguration represents an declarative configuration of the APICall type for use
|
|
// with apply.
|
|
type APICallApplyConfiguration struct {
|
|
URLPath *string `json:"urlPath,omitempty"`
|
|
Method *v1.Method `json:"method,omitempty"`
|
|
Data []RequestDataApplyConfiguration `json:"data,omitempty"`
|
|
Service *ServiceCallApplyConfiguration `json:"service,omitempty"`
|
|
JMESPath *string `json:"jmesPath,omitempty"`
|
|
}
|
|
|
|
// APICallApplyConfiguration constructs an declarative configuration of the APICall type for use with
|
|
// apply.
|
|
func APICall() *APICallApplyConfiguration {
|
|
return &APICallApplyConfiguration{}
|
|
}
|
|
|
|
// WithURLPath sets the URLPath field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the URLPath field is set to the value of the last call.
|
|
func (b *APICallApplyConfiguration) WithURLPath(value string) *APICallApplyConfiguration {
|
|
b.URLPath = &value
|
|
return b
|
|
}
|
|
|
|
// WithMethod sets the Method field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Method field is set to the value of the last call.
|
|
func (b *APICallApplyConfiguration) WithMethod(value v1.Method) *APICallApplyConfiguration {
|
|
b.Method = &value
|
|
return b
|
|
}
|
|
|
|
// WithData adds the given value to the Data field in the declarative configuration
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
// If called multiple times, values provided by each call will be appended to the Data field.
|
|
func (b *APICallApplyConfiguration) WithData(values ...*RequestDataApplyConfiguration) *APICallApplyConfiguration {
|
|
for i := range values {
|
|
if values[i] == nil {
|
|
panic("nil value passed to WithData")
|
|
}
|
|
b.Data = append(b.Data, *values[i])
|
|
}
|
|
return b
|
|
}
|
|
|
|
// WithService sets the Service field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Service field is set to the value of the last call.
|
|
func (b *APICallApplyConfiguration) WithService(value *ServiceCallApplyConfiguration) *APICallApplyConfiguration {
|
|
b.Service = value
|
|
return b
|
|
}
|
|
|
|
// WithJMESPath sets the JMESPath field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the JMESPath field is set to the value of the last call.
|
|
func (b *APICallApplyConfiguration) WithJMESPath(value string) *APICallApplyConfiguration {
|
|
b.JMESPath = &value
|
|
return b
|
|
}
|